1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 /* for raw pointers */
989 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
990 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
991 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
992 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
993 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
994 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
995 #define swig_owntype int
997 /* for raw packed data */
998 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
999 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1001 /* for class or struct pointers */
1002 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1003 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1005 /* for C or C++ function pointers */
1006 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1007 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1009 /* for C++ member pointers, ie, member methods */
1010 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1011 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1016 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1017 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1018 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1020 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1021 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1022 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1023 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1024 #define SWIG_fail goto fail
1027 /* Runtime API implementation */
1029 /* Error manipulation */
1032 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1033 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1034 PyErr_SetObject(errtype
, obj
);
1036 SWIG_PYTHON_THREAD_END_BLOCK
;
1040 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1041 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1042 PyErr_SetString(errtype
, (char *) msg
);
1043 SWIG_PYTHON_THREAD_END_BLOCK
;
1046 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1048 /* Set a constant value */
1051 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1052 PyDict_SetItemString(d
, (char*) name
, obj
);
1056 /* Append a value to the result obj */
1058 SWIGINTERN PyObject
*
1059 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1060 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1063 } else if (result
== Py_None
) {
1067 if (!PyList_Check(result
)) {
1068 PyObject
*o2
= result
;
1069 result
= PyList_New(1);
1070 PyList_SetItem(result
, 0, o2
);
1072 PyList_Append(result
,obj
);
1081 } else if (result
== Py_None
) {
1085 if (!PyTuple_Check(result
)) {
1087 result
= PyTuple_New(1);
1088 PyTuple_SET_ITEM(result
, 0, o2
);
1090 o3
= PyTuple_New(1);
1091 PyTuple_SET_ITEM(o3
, 0, obj
);
1093 result
= PySequence_Concat(o2
, o3
);
1101 /* Unpack the argument tuple */
1104 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1110 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1111 name
, (min
== max
? "" : "at least "), min
);
1115 if (!PyTuple_Check(args
)) {
1116 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1119 register int l
= PyTuple_GET_SIZE(args
);
1121 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1122 name
, (min
== max
? "" : "at least "), min
, l
);
1124 } else if (l
> max
) {
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at most "), max
, l
);
1130 for (i
= 0; i
< l
; ++i
) {
1131 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1133 for (; l
< max
; ++l
) {
1141 /* A functor is a function object with one single object argument */
1142 #if PY_VERSION_HEX >= 0x02020000
1143 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1145 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1149 Helper for static pointer initialization for both C and C++ code, for example
1150 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1153 #define SWIG_STATIC_POINTER(var) var
1155 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1158 /* -----------------------------------------------------------------------------
1159 * Pointer declarations
1160 * ----------------------------------------------------------------------------- */
1162 /* Flags for new pointer objects */
1163 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1164 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1166 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1175 /* How to access Py_None */
1176 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1177 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1178 # ifndef SWIG_PYTHON_BUILD_NONE
1179 # define SWIG_PYTHON_BUILD_NONE
1184 #ifdef SWIG_PYTHON_BUILD_NONE
1187 # define Py_None SWIG_Py_None()
1189 SWIGRUNTIMEINLINE PyObject
*
1192 PyObject
*none
= Py_BuildValue("");
1196 SWIGRUNTIME PyObject
*
1199 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1204 /* The python void return value */
1206 SWIGRUNTIMEINLINE PyObject
*
1209 PyObject
*none
= Py_None
;
1214 /* PySwigClientData */
1225 SWIGRUNTIMEINLINE
int
1226 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1228 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1229 return data
? data
->implicitconv
: 0;
1232 SWIGRUNTIMEINLINE PyObject
*
1233 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1234 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1235 PyObject
*klass
= data
? data
->klass
: 0;
1236 return (klass
? klass
: PyExc_RuntimeError
);
1240 SWIGRUNTIME PySwigClientData
*
1241 PySwigClientData_New(PyObject
* obj
)
1246 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1247 /* the klass element */
1249 Py_INCREF(data
->klass
);
1250 /* the newraw method and newargs arguments used to create a new raw instance */
1251 if (PyClass_Check(obj
)) {
1253 data
->newargs
= obj
;
1256 #if (PY_VERSION_HEX < 0x02020000)
1259 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1262 Py_INCREF(data
->newraw
);
1263 data
->newargs
= PyTuple_New(1);
1264 PyTuple_SetItem(data
->newargs
, 0, obj
);
1266 data
->newargs
= obj
;
1268 Py_INCREF(data
->newargs
);
1270 /* the destroy method, aka as the C++ delete method */
1271 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1272 if (PyErr_Occurred()) {
1276 if (data
->destroy
) {
1278 Py_INCREF(data
->destroy
);
1279 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1281 data
->delargs
= !(flags
& (METH_O
));
1288 data
->implicitconv
= 0;
1294 PySwigClientData_Del(PySwigClientData
* data
)
1296 Py_XDECREF(data
->newraw
);
1297 Py_XDECREF(data
->newargs
);
1298 Py_XDECREF(data
->destroy
);
1301 /* =============== PySwigObject =====================*/
1311 SWIGRUNTIME PyObject
*
1312 PySwigObject_long(PySwigObject
*v
)
1314 return PyLong_FromVoidPtr(v
->ptr
);
1317 SWIGRUNTIME PyObject
*
1318 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1320 PyObject
*res
= NULL
;
1321 PyObject
*args
= PyTuple_New(1);
1323 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1324 PyObject
*ofmt
= PyString_FromString(fmt
);
1326 res
= PyString_Format(ofmt
,args
);
1335 SWIGRUNTIME PyObject
*
1336 PySwigObject_oct(PySwigObject
*v
)
1338 return PySwigObject_format("%o",v
);
1341 SWIGRUNTIME PyObject
*
1342 PySwigObject_hex(PySwigObject
*v
)
1344 return PySwigObject_format("%x",v
);
1347 SWIGRUNTIME PyObject
*
1349 PySwigObject_repr(PySwigObject
*v
)
1351 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1354 const char *name
= SWIG_TypePrettyName(v
->ty
);
1355 PyObject
*hex
= PySwigObject_hex(v
);
1356 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1360 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1362 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1364 PyString_ConcatAndDel(&repr
,nrep
);
1370 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1373 PyObject
*repr
= PySwigObject_repr(v
);
1375 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1378 fputs(PyString_AsString(repr
), fp
);
1386 SWIGRUNTIME PyObject
*
1387 PySwigObject_str(PySwigObject
*v
)
1389 char result
[SWIG_BUFFER_SIZE
];
1390 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1391 PyString_FromString(result
) : 0;
1395 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1399 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1402 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1404 SWIGRUNTIME PyTypeObject
*
1405 PySwigObject_type(void) {
1406 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1410 SWIGRUNTIMEINLINE
int
1411 PySwigObject_Check(PyObject
*op
) {
1412 return ((op
)->ob_type
== PySwigObject_type())
1413 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1416 SWIGRUNTIME PyObject
*
1417 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1420 PySwigObject_dealloc(PyObject
*v
)
1422 PySwigObject
*sobj
= (PySwigObject
*) v
;
1423 PyObject
*next
= sobj
->next
;
1425 swig_type_info
*ty
= sobj
->ty
;
1426 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1427 PyObject
*destroy
= data
? data
->destroy
: 0;
1429 /* destroy is always a VARARGS method */
1431 if (data
->delargs
) {
1432 /* we need to create a temporal object to carry the destroy operation */
1433 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1434 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1437 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1438 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1439 res
= ((*meth
)(mself
, v
));
1443 const char *name
= SWIG_TypePrettyName(ty
);
1444 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1445 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1453 SWIGRUNTIME PyObject
*
1454 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1456 PySwigObject
*sobj
= (PySwigObject
*) v
;
1459 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1462 if (!PySwigObject_Check(next
)) {
1467 return SWIG_Py_Void();
1470 SWIGRUNTIME PyObject
*
1472 PySwigObject_next(PyObject
* v
)
1474 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1477 PySwigObject
*sobj
= (PySwigObject
*) v
;
1479 Py_INCREF(sobj
->next
);
1482 return SWIG_Py_Void();
1486 SWIGINTERN PyObject
*
1488 PySwigObject_disown(PyObject
*v
)
1490 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1493 PySwigObject
*sobj
= (PySwigObject
*)v
;
1495 return SWIG_Py_Void();
1498 SWIGINTERN PyObject
*
1500 PySwigObject_acquire(PyObject
*v
)
1502 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1505 PySwigObject
*sobj
= (PySwigObject
*)v
;
1506 sobj
->own
= SWIG_POINTER_OWN
;
1507 return SWIG_Py_Void();
1510 SWIGINTERN PyObject
*
1511 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1514 #if (PY_VERSION_HEX < 0x02020000)
1515 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1517 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1524 PySwigObject
*sobj
= (PySwigObject
*)v
;
1525 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1528 if (PyObject_IsTrue(val
)) {
1529 PySwigObject_acquire(v
);
1531 PySwigObject_disown(v
);
1534 if (PyObject_IsTrue(val
)) {
1535 PySwigObject_acquire(v
,args
);
1537 PySwigObject_disown(v
,args
);
1547 swigobject_methods
[] = {
1548 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1549 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1550 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1551 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1552 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1553 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1558 swigobject_methods
[] = {
1559 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1560 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1561 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1562 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1563 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1564 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1569 #if PY_VERSION_HEX < 0x02020000
1570 SWIGINTERN PyObject
*
1571 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1573 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1577 SWIGRUNTIME PyTypeObject
*
1578 _PySwigObject_type(void) {
1579 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1581 static PyNumberMethods PySwigObject_as_number
= {
1582 (binaryfunc
)0, /*nb_add*/
1583 (binaryfunc
)0, /*nb_subtract*/
1584 (binaryfunc
)0, /*nb_multiply*/
1585 (binaryfunc
)0, /*nb_divide*/
1586 (binaryfunc
)0, /*nb_remainder*/
1587 (binaryfunc
)0, /*nb_divmod*/
1588 (ternaryfunc
)0,/*nb_power*/
1589 (unaryfunc
)0, /*nb_negative*/
1590 (unaryfunc
)0, /*nb_positive*/
1591 (unaryfunc
)0, /*nb_absolute*/
1592 (inquiry
)0, /*nb_nonzero*/
1599 (coercion
)0, /*nb_coerce*/
1600 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1601 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1602 (unaryfunc
)0, /*nb_float*/
1603 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1604 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1605 #if PY_VERSION_HEX >= 0x02020000
1606 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1607 #elif PY_VERSION_HEX >= 0x02000000
1608 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1612 static PyTypeObject pyswigobject_type
;
1613 static int type_init
= 0;
1615 const PyTypeObject tmp
1617 PyObject_HEAD_INIT(NULL
)
1619 (char *)"PySwigObject", /* tp_name */
1620 sizeof(PySwigObject
), /* tp_basicsize */
1621 0, /* tp_itemsize */
1622 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1623 (printfunc
)PySwigObject_print
, /* tp_print */
1624 #if PY_VERSION_HEX < 0x02020000
1625 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1627 (getattrfunc
)0, /* tp_getattr */
1629 (setattrfunc
)0, /* tp_setattr */
1630 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1631 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1632 &PySwigObject_as_number
, /* tp_as_number */
1633 0, /* tp_as_sequence */
1634 0, /* tp_as_mapping */
1635 (hashfunc
)0, /* tp_hash */
1636 (ternaryfunc
)0, /* tp_call */
1637 (reprfunc
)PySwigObject_str
, /* tp_str */
1638 PyObject_GenericGetAttr
, /* tp_getattro */
1639 0, /* tp_setattro */
1640 0, /* tp_as_buffer */
1641 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1642 swigobject_doc
, /* tp_doc */
1643 0, /* tp_traverse */
1645 0, /* tp_richcompare */
1646 0, /* tp_weaklistoffset */
1647 #if PY_VERSION_HEX >= 0x02020000
1649 0, /* tp_iternext */
1650 swigobject_methods
, /* tp_methods */
1655 0, /* tp_descr_get */
1656 0, /* tp_descr_set */
1657 0, /* tp_dictoffset */
1666 0, /* tp_subclasses */
1667 0, /* tp_weaklist */
1669 #if PY_VERSION_HEX >= 0x02030000
1673 0,0,0,0 /* tp_alloc -> tp_next */
1676 pyswigobject_type
= tmp
;
1677 pyswigobject_type
.ob_type
= &PyType_Type
;
1680 return &pyswigobject_type
;
1683 SWIGRUNTIME PyObject
*
1684 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1686 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1693 return (PyObject
*)sobj
;
1696 /* -----------------------------------------------------------------------------
1697 * Implements a simple Swig Packed type, and use it instead of string
1698 * ----------------------------------------------------------------------------- */
1708 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1710 char result
[SWIG_BUFFER_SIZE
];
1711 fputs("<Swig Packed ", fp
);
1712 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1716 fputs(v
->ty
->name
,fp
);
1721 SWIGRUNTIME PyObject
*
1722 PySwigPacked_repr(PySwigPacked
*v
)
1724 char result
[SWIG_BUFFER_SIZE
];
1725 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1726 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1728 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1732 SWIGRUNTIME PyObject
*
1733 PySwigPacked_str(PySwigPacked
*v
)
1735 char result
[SWIG_BUFFER_SIZE
];
1736 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1737 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1739 return PyString_FromString(v
->ty
->name
);
1744 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1748 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1749 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1752 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1754 SWIGRUNTIME PyTypeObject
*
1755 PySwigPacked_type(void) {
1756 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1760 SWIGRUNTIMEINLINE
int
1761 PySwigPacked_Check(PyObject
*op
) {
1762 return ((op
)->ob_type
== _PySwigPacked_type())
1763 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1767 PySwigPacked_dealloc(PyObject
*v
)
1769 if (PySwigPacked_Check(v
)) {
1770 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1776 SWIGRUNTIME PyTypeObject
*
1777 _PySwigPacked_type(void) {
1778 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1779 static PyTypeObject pyswigpacked_type
;
1780 static int type_init
= 0;
1782 const PyTypeObject tmp
1784 PyObject_HEAD_INIT(NULL
)
1786 (char *)"PySwigPacked", /* tp_name */
1787 sizeof(PySwigPacked
), /* tp_basicsize */
1788 0, /* tp_itemsize */
1789 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1790 (printfunc
)PySwigPacked_print
, /* tp_print */
1791 (getattrfunc
)0, /* tp_getattr */
1792 (setattrfunc
)0, /* tp_setattr */
1793 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1794 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1795 0, /* tp_as_number */
1796 0, /* tp_as_sequence */
1797 0, /* tp_as_mapping */
1798 (hashfunc
)0, /* tp_hash */
1799 (ternaryfunc
)0, /* tp_call */
1800 (reprfunc
)PySwigPacked_str
, /* tp_str */
1801 PyObject_GenericGetAttr
, /* tp_getattro */
1802 0, /* tp_setattro */
1803 0, /* tp_as_buffer */
1804 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1805 swigpacked_doc
, /* tp_doc */
1806 0, /* tp_traverse */
1808 0, /* tp_richcompare */
1809 0, /* tp_weaklistoffset */
1810 #if PY_VERSION_HEX >= 0x02020000
1812 0, /* tp_iternext */
1818 0, /* tp_descr_get */
1819 0, /* tp_descr_set */
1820 0, /* tp_dictoffset */
1829 0, /* tp_subclasses */
1830 0, /* tp_weaklist */
1832 #if PY_VERSION_HEX >= 0x02030000
1836 0,0,0,0 /* tp_alloc -> tp_next */
1839 pyswigpacked_type
= tmp
;
1840 pyswigpacked_type
.ob_type
= &PyType_Type
;
1843 return &pyswigpacked_type
;
1846 SWIGRUNTIME PyObject
*
1847 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1849 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1851 void *pack
= malloc(size
);
1853 memcpy(pack
, ptr
, size
);
1858 PyObject_DEL((PyObject
*) sobj
);
1862 return (PyObject
*) sobj
;
1865 SWIGRUNTIME swig_type_info
*
1866 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1868 if (PySwigPacked_Check(obj
)) {
1869 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1870 if (sobj
->size
!= size
) return 0;
1871 memcpy(ptr
, sobj
->pack
, size
);
1878 /* -----------------------------------------------------------------------------
1879 * pointers/data manipulation
1880 * ----------------------------------------------------------------------------- */
1882 SWIGRUNTIMEINLINE PyObject
*
1885 return PyString_FromString("this");
1888 SWIGRUNTIME PyObject
*
1891 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1895 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1897 SWIGRUNTIME PySwigObject
*
1898 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1900 if (PySwigObject_Check(pyobj
)) {
1901 return (PySwigObject
*) pyobj
;
1904 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1905 if (PyInstance_Check(pyobj
)) {
1906 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1908 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1909 if (dictptr
!= NULL
) {
1910 PyObject
*dict
= *dictptr
;
1911 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1913 #ifdef PyWeakref_CheckProxy
1914 if (PyWeakref_CheckProxy(pyobj
)) {
1915 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1916 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1919 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1923 if (PyErr_Occurred()) PyErr_Clear();
1929 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1933 if (PyErr_Occurred()) PyErr_Clear();
1937 if (obj
&& !PySwigObject_Check(obj
)) {
1938 /* a PyObject is called 'this', try to get the 'real this'
1939 PySwigObject from it */
1940 return SWIG_Python_GetSwigThis(obj
);
1942 return (PySwigObject
*)obj
;
1946 /* Acquire a pointer value */
1949 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1951 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1953 int oldown
= sobj
->own
;
1961 /* Convert a pointer value */
1964 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1965 if (!obj
) return SWIG_ERROR
;
1966 if (obj
== Py_None
) {
1970 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1972 void *vptr
= sobj
->ptr
;
1974 swig_type_info
*to
= sobj
->ty
;
1976 /* no type cast needed */
1977 if (ptr
) *ptr
= vptr
;
1980 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1982 sobj
= (PySwigObject
*)sobj
->next
;
1984 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1989 if (ptr
) *ptr
= vptr
;
1994 if (own
) *own
= sobj
->own
;
1995 if (flags
& SWIG_POINTER_DISOWN
) {
2000 int res
= SWIG_ERROR
;
2001 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2002 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2003 if (data
&& !data
->implicitconv
) {
2004 PyObject
*klass
= data
->klass
;
2007 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2008 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2009 data
->implicitconv
= 0;
2010 if (PyErr_Occurred()) {
2015 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2018 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2019 if (SWIG_IsOK(res
)) {
2022 /* transfer the ownership to 'ptr' */
2024 res
= SWIG_AddCast(res
);
2025 res
= SWIG_AddNewMask(res
);
2027 res
= SWIG_AddCast(res
);
2041 /* Convert a function ptr value */
2044 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2045 if (!PyCFunction_Check(obj
)) {
2046 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2050 /* here we get the method pointer for callbacks */
2051 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2052 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2054 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2055 if (!desc
) return SWIG_ERROR
;
2058 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2059 if (!tc
) return SWIG_ERROR
;
2060 *ptr
= SWIG_TypeCast(tc
,vptr
);
2068 /* Convert a packed value value */
2071 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2072 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2073 if (!to
) return SWIG_ERROR
;
2076 /* check type cast? */
2077 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2078 if (!tc
) return SWIG_ERROR
;
2084 /* -----------------------------------------------------------------------------
2085 * Create a new pointer object
2086 * ----------------------------------------------------------------------------- */
2089 Create a new instance object, whitout calling __init__, and set the
2093 SWIGRUNTIME PyObject
*
2094 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2096 #if (PY_VERSION_HEX >= 0x02020000)
2098 PyObject
*newraw
= data
->newraw
;
2100 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2102 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2103 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2104 if (dictptr
!= NULL
) {
2105 PyObject
*dict
= *dictptr
;
2107 dict
= PyDict_New();
2109 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2113 PyObject
*key
= SWIG_This();
2114 PyObject_SetAttr(inst
, key
, swig_this
);
2118 PyObject
*dict
= PyDict_New();
2119 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2120 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2125 #if (PY_VERSION_HEX >= 0x02010000)
2127 PyObject
*dict
= PyDict_New();
2128 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2129 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2131 return (PyObject
*) inst
;
2133 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2137 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2138 Py_INCREF(inst
->in_class
);
2139 inst
->in_dict
= PyDict_New();
2140 if (inst
->in_dict
== NULL
) {
2144 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2145 inst
->in_weakreflist
= NULL
;
2147 #ifdef Py_TPFLAGS_GC
2148 PyObject_GC_Init(inst
);
2150 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2151 return (PyObject
*) inst
;
2157 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2160 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2161 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2162 if (dictptr
!= NULL
) {
2165 dict
= PyDict_New();
2168 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2172 dict
= PyObject_GetAttrString(inst
, "__dict__");
2173 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2178 SWIGINTERN PyObject
*
2179 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2181 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2184 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2186 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2188 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2190 return SWIG_Py_Void();
2194 /* Create a new pointer object */
2196 SWIGRUNTIME PyObject
*
2197 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2199 return SWIG_Py_Void();
2201 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2202 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2203 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2204 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2205 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2215 /* Create a new packed object */
2217 SWIGRUNTIMEINLINE PyObject
*
2218 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2219 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2222 /* -----------------------------------------------------------------------------*
2224 * -----------------------------------------------------------------------------*/
2226 #ifdef SWIG_LINK_RUNTIME
2227 void *SWIG_ReturnGlobalTypeList(void *);
2230 SWIGRUNTIME swig_module_info
*
2231 SWIG_Python_GetModule(void) {
2232 static void *type_pointer
= (void *)0;
2233 /* first check if module already created */
2234 if (!type_pointer
) {
2235 #ifdef SWIG_LINK_RUNTIME
2236 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2238 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2239 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2240 if (PyErr_Occurred()) {
2242 type_pointer
= (void *)0;
2246 return (swig_module_info
*) type_pointer
;
2249 #if PY_MAJOR_VERSION < 2
2250 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2251 is copied out of Python/modsupport.c in python version 2.3.4 */
2253 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2256 if (!PyModule_Check(m
)) {
2257 PyErr_SetString(PyExc_TypeError
,
2258 "PyModule_AddObject() needs module as first arg");
2262 PyErr_SetString(PyExc_TypeError
,
2263 "PyModule_AddObject() needs non-NULL value");
2267 dict
= PyModule_GetDict(m
);
2269 /* Internal error -- modules must have a dict! */
2270 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2271 PyModule_GetName(m
));
2274 if (PyDict_SetItemString(dict
, name
, o
))
2282 SWIG_Python_DestroyModule(void *vptr
)
2284 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2285 swig_type_info
**types
= swig_module
->types
;
2287 for (i
=0; i
< swig_module
->size
; ++i
) {
2288 swig_type_info
*ty
= types
[i
];
2290 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2291 if (data
) PySwigClientData_Del(data
);
2294 Py_DECREF(SWIG_This());
2298 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2299 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2301 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2302 swig_empty_runtime_method_table
);
2303 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2304 if (pointer
&& module) {
2305 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2307 Py_XDECREF(pointer
);
2311 /* The python cached type query */
2312 SWIGRUNTIME PyObject
*
2313 SWIG_Python_TypeCache() {
2314 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2318 SWIGRUNTIME swig_type_info
*
2319 SWIG_Python_TypeQuery(const char *type
)
2321 PyObject
*cache
= SWIG_Python_TypeCache();
2322 PyObject
*key
= PyString_FromString(type
);
2323 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2324 swig_type_info
*descriptor
;
2326 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2328 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2329 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2331 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2332 PyDict_SetItem(cache
, key
, obj
);
2341 For backward compatibility only
2343 #define SWIG_POINTER_EXCEPTION 0
2344 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2345 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2348 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2350 if (PyErr_Occurred()) {
2352 PyObject
*value
= 0;
2353 PyObject
*traceback
= 0;
2354 PyErr_Fetch(&type
, &value
, &traceback
);
2356 PyObject
*old_str
= PyObject_Str(value
);
2360 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2362 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2373 SWIG_Python_ArgFail(int argnum
)
2375 if (PyErr_Occurred()) {
2376 /* add information about failing argument */
2378 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2379 return SWIG_Python_AddErrMesg(mesg
, 1);
2385 SWIGRUNTIMEINLINE
const char *
2386 PySwigObject_GetDesc(PyObject
*self
)
2388 PySwigObject
*v
= (PySwigObject
*)self
;
2389 swig_type_info
*ty
= v
? v
->ty
: 0;
2390 return ty
? ty
->str
: (char*)"";
2394 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2397 #if defined(SWIG_COBJECT_TYPES)
2398 if (obj
&& PySwigObject_Check(obj
)) {
2399 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2401 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2408 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2410 PyObject
*str
= PyObject_Str(obj
);
2411 const char *cstr
= str
? PyString_AsString(str
) : 0;
2413 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2416 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2423 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2425 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2430 /* Convert a pointer value, signal an exception on a type mismatch */
2432 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2434 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2436 if (flags
& SWIG_POINTER_EXCEPTION
) {
2437 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2438 SWIG_Python_ArgFail(argnum
);
2454 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2456 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2460 /* -------- TYPES TABLE (BEGIN) -------- */
2462 #define SWIGTYPE_p_char swig_types[0]
2463 #define SWIGTYPE_p_form_ops_t swig_types[1]
2464 #define SWIGTYPE_p_int swig_types[2]
2465 #define SWIGTYPE_p_unsigned_char swig_types[3]
2466 #define SWIGTYPE_p_unsigned_int swig_types[4]
2467 #define SWIGTYPE_p_unsigned_long swig_types[5]
2468 #define SWIGTYPE_p_void swig_types[6]
2469 #define SWIGTYPE_p_wxANIHandler swig_types[7]
2470 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8]
2471 #define SWIGTYPE_p_wxActivateEvent swig_types[9]
2472 #define SWIGTYPE_p_wxBMPHandler swig_types[10]
2473 #define SWIGTYPE_p_wxBitmap swig_types[11]
2474 #define SWIGTYPE_p_wxBoxSizer swig_types[12]
2475 #define SWIGTYPE_p_wxBusyInfo swig_types[13]
2476 #define SWIGTYPE_p_wxCURHandler swig_types[14]
2477 #define SWIGTYPE_p_wxChildFocusEvent swig_types[15]
2478 #define SWIGTYPE_p_wxClipboard swig_types[16]
2479 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[17]
2480 #define SWIGTYPE_p_wxCloseEvent swig_types[18]
2481 #define SWIGTYPE_p_wxColour swig_types[19]
2482 #define SWIGTYPE_p_wxCommandEvent swig_types[20]
2483 #define SWIGTYPE_p_wxContextMenuEvent swig_types[21]
2484 #define SWIGTYPE_p_wxControl swig_types[22]
2485 #define SWIGTYPE_p_wxControlWithItems swig_types[23]
2486 #define SWIGTYPE_p_wxDC swig_types[24]
2487 #define SWIGTYPE_p_wxDateEvent swig_types[25]
2488 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[26]
2489 #define SWIGTYPE_p_wxDropFilesEvent swig_types[27]
2490 #define SWIGTYPE_p_wxDuplexMode swig_types[28]
2491 #define SWIGTYPE_p_wxEraseEvent swig_types[29]
2492 #define SWIGTYPE_p_wxEvent swig_types[30]
2493 #define SWIGTYPE_p_wxEvtHandler swig_types[31]
2494 #define SWIGTYPE_p_wxFSFile swig_types[32]
2495 #define SWIGTYPE_p_wxFileHistory swig_types[33]
2496 #define SWIGTYPE_p_wxFileSystem swig_types[34]
2497 #define SWIGTYPE_p_wxFlexGridSizer swig_types[35]
2498 #define SWIGTYPE_p_wxFocusEvent swig_types[36]
2499 #define SWIGTYPE_p_wxFont swig_types[37]
2500 #define SWIGTYPE_p_wxGBSizerItem swig_types[38]
2501 #define SWIGTYPE_p_wxGIFHandler swig_types[39]
2502 #define SWIGTYPE_p_wxGridBagSizer swig_types[40]
2503 #define SWIGTYPE_p_wxGridSizer swig_types[41]
2504 #define SWIGTYPE_p_wxICOHandler swig_types[42]
2505 #define SWIGTYPE_p_wxIconizeEvent swig_types[43]
2506 #define SWIGTYPE_p_wxIdleEvent swig_types[44]
2507 #define SWIGTYPE_p_wxImage swig_types[45]
2508 #define SWIGTYPE_p_wxImageHandler swig_types[46]
2509 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[47]
2510 #define SWIGTYPE_p_wxInitDialogEvent swig_types[48]
2511 #define SWIGTYPE_p_wxJPEGHandler swig_types[49]
2512 #define SWIGTYPE_p_wxJoystickEvent swig_types[50]
2513 #define SWIGTYPE_p_wxKeyEvent swig_types[51]
2514 #define SWIGTYPE_p_wxLayoutConstraints swig_types[52]
2515 #define SWIGTYPE_p_wxMaximizeEvent swig_types[53]
2516 #define SWIGTYPE_p_wxMemoryBuffer swig_types[54]
2517 #define SWIGTYPE_p_wxMenu swig_types[55]
2518 #define SWIGTYPE_p_wxMenuBar swig_types[56]
2519 #define SWIGTYPE_p_wxMenuEvent swig_types[57]
2520 #define SWIGTYPE_p_wxMenuItem swig_types[58]
2521 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[59]
2522 #define SWIGTYPE_p_wxMouseEvent swig_types[60]
2523 #define SWIGTYPE_p_wxMoveEvent swig_types[61]
2524 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[62]
2525 #define SWIGTYPE_p_wxNcPaintEvent swig_types[63]
2526 #define SWIGTYPE_p_wxNotifyEvent swig_types[64]
2527 #define SWIGTYPE_p_wxObject swig_types[65]
2528 #define SWIGTYPE_p_wxPCXHandler swig_types[66]
2529 #define SWIGTYPE_p_wxPNGHandler swig_types[67]
2530 #define SWIGTYPE_p_wxPNMHandler swig_types[68]
2531 #define SWIGTYPE_p_wxPaintEvent swig_types[69]
2532 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[70]
2533 #define SWIGTYPE_p_wxPaperSize swig_types[71]
2534 #define SWIGTYPE_p_wxPoint swig_types[72]
2535 #define SWIGTYPE_p_wxPowerEvent swig_types[73]
2536 #define SWIGTYPE_p_wxProcessEvent swig_types[74]
2537 #define SWIGTYPE_p_wxPyApp swig_types[75]
2538 #define SWIGTYPE_p_wxPyCommandEvent swig_types[76]
2539 #define SWIGTYPE_p_wxPyEvent swig_types[77]
2540 #define SWIGTYPE_p_wxPyImageHandler swig_types[78]
2541 #define SWIGTYPE_p_wxPyProcess swig_types[79]
2542 #define SWIGTYPE_p_wxPySizer swig_types[80]
2543 #define SWIGTYPE_p_wxPyTimer swig_types[81]
2544 #define SWIGTYPE_p_wxPyValidator swig_types[82]
2545 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[83]
2546 #define SWIGTYPE_p_wxRect swig_types[84]
2547 #define SWIGTYPE_p_wxScrollBar swig_types[85]
2548 #define SWIGTYPE_p_wxScrollEvent swig_types[86]
2549 #define SWIGTYPE_p_wxScrollWinEvent swig_types[87]
2550 #define SWIGTYPE_p_wxSetCursorEvent swig_types[88]
2551 #define SWIGTYPE_p_wxShowEvent swig_types[89]
2552 #define SWIGTYPE_p_wxSizeEvent swig_types[90]
2553 #define SWIGTYPE_p_wxSizer swig_types[91]
2554 #define SWIGTYPE_p_wxSizerItem swig_types[92]
2555 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[93]
2556 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[94]
2557 #define SWIGTYPE_p_wxStyledTextCtrl swig_types[95]
2558 #define SWIGTYPE_p_wxStyledTextEvent swig_types[96]
2559 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[97]
2560 #define SWIGTYPE_p_wxSystemOptions swig_types[98]
2561 #define SWIGTYPE_p_wxTIFFHandler swig_types[99]
2562 #define SWIGTYPE_p_wxTimerEvent swig_types[100]
2563 #define SWIGTYPE_p_wxToolTip swig_types[101]
2564 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[102]
2565 #define SWIGTYPE_p_wxValidator swig_types[103]
2566 #define SWIGTYPE_p_wxWindow swig_types[104]
2567 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[105]
2568 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[106]
2569 #define SWIGTYPE_p_wxXPMHandler swig_types[107]
2570 static swig_type_info
*swig_types
[109];
2571 static swig_module_info swig_module
= {swig_types
, 108, 0, 0, 0, 0};
2572 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2573 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2575 /* -------- TYPES TABLE (END) -------- */
2577 #if (PY_VERSION_HEX <= 0x02000000)
2578 # if !defined(SWIG_PYTHON_CLASSIC)
2579 # error "This python version requires to use swig with the '-classic' option"
2582 #if (PY_VERSION_HEX <= 0x02020000)
2583 # error "This python version requires to use swig with the '-nomodern' option"
2585 #if (PY_VERSION_HEX <= 0x02020000)
2586 # error "This python version requires to use swig with the '-nomodernargs' option"
2589 # error "This python version requires to use swig with the '-nofastunpack' option"
2592 /*-----------------------------------------------
2594 ------------------------------------------------*/
2595 #define SWIG_init init_stc
2597 #define SWIG_name "_stc"
2599 #define SWIGVERSION 0x010329
2602 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2603 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2606 #include <stdexcept>
2610 class PyObject_ptr
{
2615 PyObject_ptr() :_obj(0)
2619 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2624 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2626 if (initial_ref
) Py_XINCREF(_obj
);
2629 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2631 Py_XINCREF(item
._obj
);
2642 operator PyObject
*() const
2647 PyObject
*operator->() const
2656 struct PyObject_var
: PyObject_ptr
{
2657 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2659 PyObject_var
& operator = (PyObject
* obj
)
2669 #include "wx/wxPython/wxPython.h"
2670 #include "wx/wxPython/pyclasses.h"
2671 #include <wx/stc/stc.h>
2674 static const wxString
wxPySTCNameStr(wxSTCNameStr
);
2676 #define SWIG_From_long PyInt_FromLong
2679 SWIGINTERNINLINE PyObject
*
2680 SWIG_From_int (int value
)
2682 return SWIG_From_long (value
);
2688 # define LLONG_MIN LONG_LONG_MIN
2691 # define LLONG_MAX LONG_LONG_MAX
2694 # define ULLONG_MAX ULONG_LONG_MAX
2699 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2701 if (PyNumber_Check(obj
)) {
2702 if (val
) *val
= PyInt_AsLong(obj
);
2705 return SWIG_TypeError
;
2710 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2713 int res
= SWIG_AsVal_long (obj
, &v
);
2714 if (SWIG_IsOK(res
)) {
2715 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2716 return SWIG_OverflowError
;
2718 if (val
) *val
= static_cast< int >(v
);
2726 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2728 if (obj
== Py_True
) {
2729 if (val
) *val
= true;
2731 } else if (obj
== Py_False
) {
2732 if (val
) *val
= false;
2736 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2737 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2743 SWIGINTERN swig_type_info
*
2744 SWIG_pchar_descriptor()
2746 static int init
= 0;
2747 static swig_type_info
* info
= 0;
2749 info
= SWIG_TypeQuery("_p_char");
2757 SWIG_AsCharPtrAndSize(PyObject
*obj
, char** cptr
, size_t* psize
, int *alloc
)
2759 if (PyString_Check(obj
)) {
2760 char *cstr
; int len
;
2761 PyString_AsStringAndSize(obj
, &cstr
, &len
);
2765 In python the user should not be able to modify the inner
2766 string representation. To warranty that, if you define
2767 SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
2768 buffer is always returned.
2770 The default behavior is just to return the pointer value,
2773 #if defined(SWIG_PYTHON_SAFE_CSTRINGS)
2774 if (*alloc
!= SWIG_OLDOBJ
)
2776 if (*alloc
== SWIG_NEWOBJ
)
2779 *cptr
= reinterpret_cast< char* >(memcpy((new char[len
+ 1]), cstr
, sizeof(char)*(len
+ 1)));
2780 *alloc
= SWIG_NEWOBJ
;
2784 *alloc
= SWIG_OLDOBJ
;
2787 *cptr
= PyString_AsString(obj
);
2790 if (psize
) *psize
= len
+ 1;
2793 swig_type_info
* pchar_descriptor
= SWIG_pchar_descriptor();
2794 if (pchar_descriptor
) {
2796 if (SWIG_ConvertPtr(obj
, &vptr
, pchar_descriptor
, 0) == SWIG_OK
) {
2797 if (cptr
) *cptr
= (char *) vptr
;
2798 if (psize
) *psize
= vptr
? (strlen((char *)vptr
) + 1) : 0;
2799 if (alloc
) *alloc
= SWIG_OLDOBJ
;
2804 return SWIG_TypeError
;
2813 SWIGINTERN
int STCNameStr_set(PyObject
*) {
2814 SWIG_Error(SWIG_AttributeError
,"Variable STCNameStr is read-only.");
2819 SWIGINTERN PyObject
*STCNameStr_get(void) {
2820 PyObject
*pyobj
= 0;
2824 pyobj
= PyUnicode_FromWideChar((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2826 pyobj
= PyString_FromStringAndSize((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2833 SWIGINTERN PyObject
*_wrap_new_StyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2834 PyObject
*resultobj
= 0;
2835 wxWindow
*arg1
= (wxWindow
*) 0 ;
2836 int arg2
= (int) wxID_ANY
;
2837 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
2838 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
2839 wxSize
const &arg4_defvalue
= wxDefaultSize
;
2840 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
2841 long arg5
= (long) 0 ;
2842 wxString
const &arg6_defvalue
= wxPySTCNameStr
;
2843 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
2844 wxStyledTextCtrl
*result
= 0 ;
2853 bool temp6
= false ;
2854 PyObject
* obj0
= 0 ;
2855 PyObject
* obj1
= 0 ;
2856 PyObject
* obj2
= 0 ;
2857 PyObject
* obj3
= 0 ;
2858 PyObject
* obj4
= 0 ;
2859 PyObject
* obj5
= 0 ;
2860 char * kwnames
[] = {
2861 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2864 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StyledTextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
2865 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2866 if (!SWIG_IsOK(res1
)) {
2867 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StyledTextCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
2869 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
2871 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
2872 if (!SWIG_IsOK(ecode2
)) {
2873 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextCtrl" "', expected argument " "2"" of type '" "int""'");
2875 arg2
= static_cast< int >(val2
);
2880 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
2886 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
2890 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
2891 if (!SWIG_IsOK(ecode5
)) {
2892 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_StyledTextCtrl" "', expected argument " "5"" of type '" "long""'");
2894 arg5
= static_cast< long >(val5
);
2898 arg6
= wxString_in_helper(obj5
);
2899 if (arg6
== NULL
) SWIG_fail
;
2904 if (!wxPyCheckForApp()) SWIG_fail
;
2905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2906 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
2907 wxPyEndAllowThreads(__tstate
);
2908 if (PyErr_Occurred()) SWIG_fail
;
2910 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_NEW
| 0 );
2925 SWIGINTERN PyObject
*_wrap_new_PreStyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
2926 PyObject
*resultobj
= 0;
2927 wxStyledTextCtrl
*result
= 0 ;
2929 if (!SWIG_Python_UnpackTuple(args
,"new_PreStyledTextCtrl",0,0,0)) SWIG_fail
;
2931 if (!wxPyCheckForApp()) SWIG_fail
;
2932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2933 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl();
2934 wxPyEndAllowThreads(__tstate
);
2935 if (PyErr_Occurred()) SWIG_fail
;
2937 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_OWN
| 0 );
2944 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2945 PyObject
*resultobj
= 0;
2946 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
2947 wxWindow
*arg2
= (wxWindow
*) 0 ;
2948 int arg3
= (int) wxID_ANY
;
2949 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2950 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2951 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2952 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2953 long arg6
= (long) 0 ;
2954 wxString
const &arg7_defvalue
= wxSTCNameStr
;
2955 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
2967 bool temp7
= false ;
2968 PyObject
* obj0
= 0 ;
2969 PyObject
* obj1
= 0 ;
2970 PyObject
* obj2
= 0 ;
2971 PyObject
* obj3
= 0 ;
2972 PyObject
* obj4
= 0 ;
2973 PyObject
* obj5
= 0 ;
2974 PyObject
* obj6
= 0 ;
2975 char * kwnames
[] = {
2976 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2979 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StyledTextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
2980 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
2981 if (!SWIG_IsOK(res1
)) {
2982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Create" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
2984 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
2985 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2986 if (!SWIG_IsOK(res2
)) {
2987 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
2989 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
2991 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
2992 if (!SWIG_IsOK(ecode3
)) {
2993 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Create" "', expected argument " "3"" of type '" "int""'");
2995 arg3
= static_cast< int >(val3
);
3000 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3006 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3010 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
3011 if (!SWIG_IsOK(ecode6
)) {
3012 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_Create" "', expected argument " "6"" of type '" "long""'");
3014 arg6
= static_cast< long >(val6
);
3018 arg7
= wxString_in_helper(obj6
);
3019 if (arg7
== NULL
) SWIG_fail
;
3024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3025 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3026 wxPyEndAllowThreads(__tstate
);
3027 if (PyErr_Occurred()) SWIG_fail
;
3030 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3046 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3047 PyObject
*resultobj
= 0;
3048 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3049 wxString
*arg2
= 0 ;
3052 bool temp2
= false ;
3053 PyObject
* obj0
= 0 ;
3054 PyObject
* obj1
= 0 ;
3055 char * kwnames
[] = {
3056 (char *) "self",(char *) "text", NULL
3059 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3060 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3061 if (!SWIG_IsOK(res1
)) {
3062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3064 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3066 arg2
= wxString_in_helper(obj1
);
3067 if (arg2
== NULL
) SWIG_fail
;
3071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3072 (arg1
)->AddText((wxString
const &)*arg2
);
3073 wxPyEndAllowThreads(__tstate
);
3074 if (PyErr_Occurred()) SWIG_fail
;
3076 resultobj
= SWIG_Py_Void();
3091 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3092 PyObject
*resultobj
= 0;
3093 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3094 wxMemoryBuffer
*arg2
= 0 ;
3097 bool temp2
= false ;
3098 PyObject
* obj0
= 0 ;
3099 PyObject
* obj1
= 0 ;
3100 char * kwnames
[] = {
3101 (char *) "self",(char *) "data", NULL
3104 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddStyledText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3105 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3106 if (!SWIG_IsOK(res1
)) {
3107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3109 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3111 if (!PyString_Check(obj1
)) {
3112 PyErr_SetString(PyExc_TypeError
, "String buffer expected");
3115 char* str
= PyString_AS_STRING(obj1
);
3116 int len
= PyString_GET_SIZE(obj1
);
3117 arg2
= new wxMemoryBuffer(len
);
3119 memcpy(arg2
->GetData(), str
, len
);
3120 arg2
->SetDataLen(len
);
3123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3124 (arg1
)->AddStyledText((wxMemoryBuffer
const &)*arg2
);
3125 wxPyEndAllowThreads(__tstate
);
3126 if (PyErr_Occurred()) SWIG_fail
;
3128 resultobj
= SWIG_Py_Void();
3130 if (temp2
) delete arg2
;
3135 if (temp2
) delete arg2
;
3141 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3142 PyObject
*resultobj
= 0;
3143 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3145 wxString
*arg3
= 0 ;
3150 bool temp3
= false ;
3151 PyObject
* obj0
= 0 ;
3152 PyObject
* obj1
= 0 ;
3153 PyObject
* obj2
= 0 ;
3154 char * kwnames
[] = {
3155 (char *) "self",(char *) "pos",(char *) "text", NULL
3158 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3159 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3160 if (!SWIG_IsOK(res1
)) {
3161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3163 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3164 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3165 if (!SWIG_IsOK(ecode2
)) {
3166 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "2"" of type '" "int""'");
3168 arg2
= static_cast< int >(val2
);
3170 arg3
= wxString_in_helper(obj2
);
3171 if (arg3
== NULL
) SWIG_fail
;
3175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3176 (arg1
)->InsertText(arg2
,(wxString
const &)*arg3
);
3177 wxPyEndAllowThreads(__tstate
);
3178 if (PyErr_Occurred()) SWIG_fail
;
3180 resultobj
= SWIG_Py_Void();
3195 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3196 PyObject
*resultobj
= 0;
3197 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3200 PyObject
*swig_obj
[1] ;
3202 if (!args
) SWIG_fail
;
3204 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3205 if (!SWIG_IsOK(res1
)) {
3206 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3208 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3212 wxPyEndAllowThreads(__tstate
);
3213 if (PyErr_Occurred()) SWIG_fail
;
3215 resultobj
= SWIG_Py_Void();
3222 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearDocumentStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3223 PyObject
*resultobj
= 0;
3224 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3227 PyObject
*swig_obj
[1] ;
3229 if (!args
) SWIG_fail
;
3231 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3232 if (!SWIG_IsOK(res1
)) {
3233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearDocumentStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3235 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3238 (arg1
)->ClearDocumentStyle();
3239 wxPyEndAllowThreads(__tstate
);
3240 if (PyErr_Occurred()) SWIG_fail
;
3242 resultobj
= SWIG_Py_Void();
3249 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3250 PyObject
*resultobj
= 0;
3251 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3255 PyObject
*swig_obj
[1] ;
3257 if (!args
) SWIG_fail
;
3259 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3260 if (!SWIG_IsOK(res1
)) {
3261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3263 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3266 result
= (int)(arg1
)->GetLength();
3267 wxPyEndAllowThreads(__tstate
);
3268 if (PyErr_Occurred()) SWIG_fail
;
3270 resultobj
= SWIG_From_int(static_cast< int >(result
));
3277 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCharAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3278 PyObject
*resultobj
= 0;
3279 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3286 PyObject
* obj0
= 0 ;
3287 PyObject
* obj1
= 0 ;
3288 char * kwnames
[] = {
3289 (char *) "self",(char *) "pos", NULL
3292 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetCharAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3293 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3294 if (!SWIG_IsOK(res1
)) {
3295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3297 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3298 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3299 if (!SWIG_IsOK(ecode2
)) {
3300 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "2"" of type '" "int""'");
3302 arg2
= static_cast< int >(val2
);
3304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3305 result
= (int)(arg1
)->GetCharAt(arg2
);
3306 wxPyEndAllowThreads(__tstate
);
3307 if (PyErr_Occurred()) SWIG_fail
;
3309 resultobj
= SWIG_From_int(static_cast< int >(result
));
3316 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3317 PyObject
*resultobj
= 0;
3318 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3322 PyObject
*swig_obj
[1] ;
3324 if (!args
) SWIG_fail
;
3326 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3327 if (!SWIG_IsOK(res1
)) {
3328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3330 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3332 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3333 result
= (int)(arg1
)->GetCurrentPos();
3334 wxPyEndAllowThreads(__tstate
);
3335 if (PyErr_Occurred()) SWIG_fail
;
3337 resultobj
= SWIG_From_int(static_cast< int >(result
));
3344 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3345 PyObject
*resultobj
= 0;
3346 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3350 PyObject
*swig_obj
[1] ;
3352 if (!args
) SWIG_fail
;
3354 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3355 if (!SWIG_IsOK(res1
)) {
3356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3358 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3361 result
= (int)(arg1
)->GetAnchor();
3362 wxPyEndAllowThreads(__tstate
);
3363 if (PyErr_Occurred()) SWIG_fail
;
3365 resultobj
= SWIG_From_int(static_cast< int >(result
));
3372 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3373 PyObject
*resultobj
= 0;
3374 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3381 PyObject
* obj0
= 0 ;
3382 PyObject
* obj1
= 0 ;
3383 char * kwnames
[] = {
3384 (char *) "self",(char *) "pos", NULL
3387 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetStyleAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3388 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3389 if (!SWIG_IsOK(res1
)) {
3390 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3392 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3393 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3394 if (!SWIG_IsOK(ecode2
)) {
3395 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "2"" of type '" "int""'");
3397 arg2
= static_cast< int >(val2
);
3399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3400 result
= (int)(arg1
)->GetStyleAt(arg2
);
3401 wxPyEndAllowThreads(__tstate
);
3402 if (PyErr_Occurred()) SWIG_fail
;
3404 resultobj
= SWIG_From_int(static_cast< int >(result
));
3411 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Redo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3412 PyObject
*resultobj
= 0;
3413 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3416 PyObject
*swig_obj
[1] ;
3418 if (!args
) SWIG_fail
;
3420 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3421 if (!SWIG_IsOK(res1
)) {
3422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Redo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3424 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3428 wxPyEndAllowThreads(__tstate
);
3429 if (PyErr_Occurred()) SWIG_fail
;
3431 resultobj
= SWIG_Py_Void();
3438 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3439 PyObject
*resultobj
= 0;
3440 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3446 PyObject
* obj0
= 0 ;
3447 PyObject
* obj1
= 0 ;
3448 char * kwnames
[] = {
3449 (char *) "self",(char *) "collectUndo", NULL
3452 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUndoCollection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3453 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3454 if (!SWIG_IsOK(res1
)) {
3455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3457 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3458 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
3459 if (!SWIG_IsOK(ecode2
)) {
3460 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "2"" of type '" "bool""'");
3462 arg2
= static_cast< bool >(val2
);
3464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3465 (arg1
)->SetUndoCollection(arg2
);
3466 wxPyEndAllowThreads(__tstate
);
3467 if (PyErr_Occurred()) SWIG_fail
;
3469 resultobj
= SWIG_Py_Void();
3476 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3477 PyObject
*resultobj
= 0;
3478 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3481 PyObject
*swig_obj
[1] ;
3483 if (!args
) SWIG_fail
;
3485 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3486 if (!SWIG_IsOK(res1
)) {
3487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3489 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3492 (arg1
)->SelectAll();
3493 wxPyEndAllowThreads(__tstate
);
3494 if (PyErr_Occurred()) SWIG_fail
;
3496 resultobj
= SWIG_Py_Void();
3503 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSavePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3504 PyObject
*resultobj
= 0;
3505 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3508 PyObject
*swig_obj
[1] ;
3510 if (!args
) SWIG_fail
;
3512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3513 if (!SWIG_IsOK(res1
)) {
3514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSavePoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3516 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3519 (arg1
)->SetSavePoint();
3520 wxPyEndAllowThreads(__tstate
);
3521 if (PyErr_Occurred()) SWIG_fail
;
3523 resultobj
= SWIG_Py_Void();
3530 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3531 PyObject
*resultobj
= 0;
3532 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3535 wxMemoryBuffer result
;
3542 PyObject
* obj0
= 0 ;
3543 PyObject
* obj1
= 0 ;
3544 PyObject
* obj2
= 0 ;
3545 char * kwnames
[] = {
3546 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
3549 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetStyledText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3550 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3551 if (!SWIG_IsOK(res1
)) {
3552 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3554 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3555 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3556 if (!SWIG_IsOK(ecode2
)) {
3557 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "2"" of type '" "int""'");
3559 arg2
= static_cast< int >(val2
);
3560 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3561 if (!SWIG_IsOK(ecode3
)) {
3562 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "3"" of type '" "int""'");
3564 arg3
= static_cast< int >(val3
);
3566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3567 result
= (arg1
)->GetStyledText(arg2
,arg3
);
3568 wxPyEndAllowThreads(__tstate
);
3569 if (PyErr_Occurred()) SWIG_fail
;
3572 resultobj
= PyString_FromStringAndSize((char*)(&result
)->GetData(), (&result
)->GetDataLen());
3580 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanRedo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3581 PyObject
*resultobj
= 0;
3582 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3586 PyObject
*swig_obj
[1] ;
3588 if (!args
) SWIG_fail
;
3590 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3591 if (!SWIG_IsOK(res1
)) {
3592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanRedo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3594 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3597 result
= (bool)(arg1
)->CanRedo();
3598 wxPyEndAllowThreads(__tstate
);
3599 if (PyErr_Occurred()) SWIG_fail
;
3602 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3610 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerLineFromHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3611 PyObject
*resultobj
= 0;
3612 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3619 PyObject
* obj0
= 0 ;
3620 PyObject
* obj1
= 0 ;
3621 char * kwnames
[] = {
3622 (char *) "self",(char *) "handle", NULL
3625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerLineFromHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3627 if (!SWIG_IsOK(res1
)) {
3628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3630 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3631 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3632 if (!SWIG_IsOK(ecode2
)) {
3633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "2"" of type '" "int""'");
3635 arg2
= static_cast< int >(val2
);
3637 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3638 result
= (int)(arg1
)->MarkerLineFromHandle(arg2
);
3639 wxPyEndAllowThreads(__tstate
);
3640 if (PyErr_Occurred()) SWIG_fail
;
3642 resultobj
= SWIG_From_int(static_cast< int >(result
));
3649 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3650 PyObject
*resultobj
= 0;
3651 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3657 PyObject
* obj0
= 0 ;
3658 PyObject
* obj1
= 0 ;
3659 char * kwnames
[] = {
3660 (char *) "self",(char *) "handle", NULL
3663 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3664 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3665 if (!SWIG_IsOK(res1
)) {
3666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3668 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3669 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3670 if (!SWIG_IsOK(ecode2
)) {
3671 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "2"" of type '" "int""'");
3673 arg2
= static_cast< int >(val2
);
3675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3676 (arg1
)->MarkerDeleteHandle(arg2
);
3677 wxPyEndAllowThreads(__tstate
);
3678 if (PyErr_Occurred()) SWIG_fail
;
3680 resultobj
= SWIG_Py_Void();
3687 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3688 PyObject
*resultobj
= 0;
3689 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3693 PyObject
*swig_obj
[1] ;
3695 if (!args
) SWIG_fail
;
3697 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3698 if (!SWIG_IsOK(res1
)) {
3699 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3701 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3704 result
= (bool)(arg1
)->GetUndoCollection();
3705 wxPyEndAllowThreads(__tstate
);
3706 if (PyErr_Occurred()) SWIG_fail
;
3709 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3717 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3718 PyObject
*resultobj
= 0;
3719 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3723 PyObject
*swig_obj
[1] ;
3725 if (!args
) SWIG_fail
;
3727 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3728 if (!SWIG_IsOK(res1
)) {
3729 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3731 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3733 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3734 result
= (int)(arg1
)->GetViewWhiteSpace();
3735 wxPyEndAllowThreads(__tstate
);
3736 if (PyErr_Occurred()) SWIG_fail
;
3738 resultobj
= SWIG_From_int(static_cast< int >(result
));
3745 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3746 PyObject
*resultobj
= 0;
3747 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3753 PyObject
* obj0
= 0 ;
3754 PyObject
* obj1
= 0 ;
3755 char * kwnames
[] = {
3756 (char *) "self",(char *) "viewWS", NULL
3759 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewWhiteSpace",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3760 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3761 if (!SWIG_IsOK(res1
)) {
3762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3764 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3765 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3766 if (!SWIG_IsOK(ecode2
)) {
3767 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "2"" of type '" "int""'");
3769 arg2
= static_cast< int >(val2
);
3771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3772 (arg1
)->SetViewWhiteSpace(arg2
);
3773 wxPyEndAllowThreads(__tstate
);
3774 if (PyErr_Occurred()) SWIG_fail
;
3776 resultobj
= SWIG_Py_Void();
3783 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3784 PyObject
*resultobj
= 0;
3785 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3792 PyObject
* obj0
= 0 ;
3793 PyObject
* obj1
= 0 ;
3794 char * kwnames
[] = {
3795 (char *) "self",(char *) "pt", NULL
3798 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3799 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3800 if (!SWIG_IsOK(res1
)) {
3801 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3803 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3805 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPoint
, 0 | 0);
3806 if (!SWIG_IsOK(res2
)) {
3807 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3810 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3812 wxPoint
* temp
= reinterpret_cast< wxPoint
* >(argp2
);
3814 if (SWIG_IsNewObj(res2
)) delete temp
;
3818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3819 result
= (int)(arg1
)->PositionFromPoint(arg2
);
3820 wxPyEndAllowThreads(__tstate
);
3821 if (PyErr_Occurred()) SWIG_fail
;
3823 resultobj
= SWIG_From_int(static_cast< int >(result
));
3830 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPointClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3831 PyObject
*resultobj
= 0;
3832 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3842 PyObject
* obj0
= 0 ;
3843 PyObject
* obj1
= 0 ;
3844 PyObject
* obj2
= 0 ;
3845 char * kwnames
[] = {
3846 (char *) "self",(char *) "x",(char *) "y", NULL
3849 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_PositionFromPointClose",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3850 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3851 if (!SWIG_IsOK(res1
)) {
3852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3854 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3855 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3856 if (!SWIG_IsOK(ecode2
)) {
3857 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "2"" of type '" "int""'");
3859 arg2
= static_cast< int >(val2
);
3860 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3861 if (!SWIG_IsOK(ecode3
)) {
3862 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "3"" of type '" "int""'");
3864 arg3
= static_cast< int >(val3
);
3866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3867 result
= (int)(arg1
)->PositionFromPointClose(arg2
,arg3
);
3868 wxPyEndAllowThreads(__tstate
);
3869 if (PyErr_Occurred()) SWIG_fail
;
3871 resultobj
= SWIG_From_int(static_cast< int >(result
));
3878 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3879 PyObject
*resultobj
= 0;
3880 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3886 PyObject
* obj0
= 0 ;
3887 PyObject
* obj1
= 0 ;
3888 char * kwnames
[] = {
3889 (char *) "self",(char *) "line", NULL
3892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3893 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3894 if (!SWIG_IsOK(res1
)) {
3895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3897 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3898 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3899 if (!SWIG_IsOK(ecode2
)) {
3900 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "2"" of type '" "int""'");
3902 arg2
= static_cast< int >(val2
);
3904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3905 (arg1
)->GotoLine(arg2
);
3906 wxPyEndAllowThreads(__tstate
);
3907 if (PyErr_Occurred()) SWIG_fail
;
3909 resultobj
= SWIG_Py_Void();
3916 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3917 PyObject
*resultobj
= 0;
3918 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3924 PyObject
* obj0
= 0 ;
3925 PyObject
* obj1
= 0 ;
3926 char * kwnames
[] = {
3927 (char *) "self",(char *) "pos", NULL
3930 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3931 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3932 if (!SWIG_IsOK(res1
)) {
3933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3935 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3936 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3937 if (!SWIG_IsOK(ecode2
)) {
3938 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "2"" of type '" "int""'");
3940 arg2
= static_cast< int >(val2
);
3942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3943 (arg1
)->GotoPos(arg2
);
3944 wxPyEndAllowThreads(__tstate
);
3945 if (PyErr_Occurred()) SWIG_fail
;
3947 resultobj
= SWIG_Py_Void();
3954 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3955 PyObject
*resultobj
= 0;
3956 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3962 PyObject
* obj0
= 0 ;
3963 PyObject
* obj1
= 0 ;
3964 char * kwnames
[] = {
3965 (char *) "self",(char *) "posAnchor", NULL
3968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetAnchor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3970 if (!SWIG_IsOK(res1
)) {
3971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3973 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3974 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3975 if (!SWIG_IsOK(ecode2
)) {
3976 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "2"" of type '" "int""'");
3978 arg2
= static_cast< int >(val2
);
3980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3981 (arg1
)->SetAnchor(arg2
);
3982 wxPyEndAllowThreads(__tstate
);
3983 if (PyErr_Occurred()) SWIG_fail
;
3985 resultobj
= SWIG_Py_Void();
3992 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3993 PyObject
*resultobj
= 0;
3994 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3995 int *arg2
= (int *) 0 ;
4000 int res2
= SWIG_TMPOBJ
;
4001 PyObject
*swig_obj
[1] ;
4004 if (!args
) SWIG_fail
;
4006 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4007 if (!SWIG_IsOK(res1
)) {
4008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4010 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4013 result
= (arg1
)->GetCurLine(arg2
);
4014 wxPyEndAllowThreads(__tstate
);
4015 if (PyErr_Occurred()) SWIG_fail
;
4019 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4021 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4024 if (SWIG_IsTmpObj(res2
)) {
4025 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4027 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4028 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4036 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndStyled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4037 PyObject
*resultobj
= 0;
4038 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4042 PyObject
*swig_obj
[1] ;
4044 if (!args
) SWIG_fail
;
4046 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4047 if (!SWIG_IsOK(res1
)) {
4048 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndStyled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4050 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4052 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4053 result
= (int)(arg1
)->GetEndStyled();
4054 wxPyEndAllowThreads(__tstate
);
4055 if (PyErr_Occurred()) SWIG_fail
;
4057 resultobj
= SWIG_From_int(static_cast< int >(result
));
4064 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ConvertEOLs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4065 PyObject
*resultobj
= 0;
4066 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4072 PyObject
* obj0
= 0 ;
4073 PyObject
* obj1
= 0 ;
4074 char * kwnames
[] = {
4075 (char *) "self",(char *) "eolMode", NULL
4078 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ConvertEOLs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4079 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4080 if (!SWIG_IsOK(res1
)) {
4081 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4083 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4084 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4085 if (!SWIG_IsOK(ecode2
)) {
4086 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "2"" of type '" "int""'");
4088 arg2
= static_cast< int >(val2
);
4090 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4091 (arg1
)->ConvertEOLs(arg2
);
4092 wxPyEndAllowThreads(__tstate
);
4093 if (PyErr_Occurred()) SWIG_fail
;
4095 resultobj
= SWIG_Py_Void();
4102 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4103 PyObject
*resultobj
= 0;
4104 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4108 PyObject
*swig_obj
[1] ;
4110 if (!args
) SWIG_fail
;
4112 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4113 if (!SWIG_IsOK(res1
)) {
4114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4116 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4119 result
= (int)(arg1
)->GetEOLMode();
4120 wxPyEndAllowThreads(__tstate
);
4121 if (PyErr_Occurred()) SWIG_fail
;
4123 resultobj
= SWIG_From_int(static_cast< int >(result
));
4130 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4131 PyObject
*resultobj
= 0;
4132 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4138 PyObject
* obj0
= 0 ;
4139 PyObject
* obj1
= 0 ;
4140 char * kwnames
[] = {
4141 (char *) "self",(char *) "eolMode", NULL
4144 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEOLMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4145 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4146 if (!SWIG_IsOK(res1
)) {
4147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4149 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4150 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4151 if (!SWIG_IsOK(ecode2
)) {
4152 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "2"" of type '" "int""'");
4154 arg2
= static_cast< int >(val2
);
4156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4157 (arg1
)->SetEOLMode(arg2
);
4158 wxPyEndAllowThreads(__tstate
);
4159 if (PyErr_Occurred()) SWIG_fail
;
4161 resultobj
= SWIG_Py_Void();
4168 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4169 PyObject
*resultobj
= 0;
4170 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4179 PyObject
* obj0
= 0 ;
4180 PyObject
* obj1
= 0 ;
4181 PyObject
* obj2
= 0 ;
4182 char * kwnames
[] = {
4183 (char *) "self",(char *) "pos",(char *) "mask", NULL
4186 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StartStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4187 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4188 if (!SWIG_IsOK(res1
)) {
4189 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4191 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4192 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4193 if (!SWIG_IsOK(ecode2
)) {
4194 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "2"" of type '" "int""'");
4196 arg2
= static_cast< int >(val2
);
4197 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4198 if (!SWIG_IsOK(ecode3
)) {
4199 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "3"" of type '" "int""'");
4201 arg3
= static_cast< int >(val3
);
4203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4204 (arg1
)->StartStyling(arg2
,arg3
);
4205 wxPyEndAllowThreads(__tstate
);
4206 if (PyErr_Occurred()) SWIG_fail
;
4208 resultobj
= SWIG_Py_Void();
4215 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4216 PyObject
*resultobj
= 0;
4217 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4226 PyObject
* obj0
= 0 ;
4227 PyObject
* obj1
= 0 ;
4228 PyObject
* obj2
= 0 ;
4229 char * kwnames
[] = {
4230 (char *) "self",(char *) "length",(char *) "style", NULL
4233 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4234 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4235 if (!SWIG_IsOK(res1
)) {
4236 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4238 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4239 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4240 if (!SWIG_IsOK(ecode2
)) {
4241 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "2"" of type '" "int""'");
4243 arg2
= static_cast< int >(val2
);
4244 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4245 if (!SWIG_IsOK(ecode3
)) {
4246 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "3"" of type '" "int""'");
4248 arg3
= static_cast< int >(val3
);
4250 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4251 (arg1
)->SetStyling(arg2
,arg3
);
4252 wxPyEndAllowThreads(__tstate
);
4253 if (PyErr_Occurred()) SWIG_fail
;
4255 resultobj
= SWIG_Py_Void();
4262 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4263 PyObject
*resultobj
= 0;
4264 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4268 PyObject
*swig_obj
[1] ;
4270 if (!args
) SWIG_fail
;
4272 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4273 if (!SWIG_IsOK(res1
)) {
4274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4276 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4278 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4279 result
= (bool)(arg1
)->GetBufferedDraw();
4280 wxPyEndAllowThreads(__tstate
);
4281 if (PyErr_Occurred()) SWIG_fail
;
4284 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4292 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4293 PyObject
*resultobj
= 0;
4294 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4300 PyObject
* obj0
= 0 ;
4301 PyObject
* obj1
= 0 ;
4302 char * kwnames
[] = {
4303 (char *) "self",(char *) "buffered", NULL
4306 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBufferedDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4307 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4308 if (!SWIG_IsOK(res1
)) {
4309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4311 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4312 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4313 if (!SWIG_IsOK(ecode2
)) {
4314 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "2"" of type '" "bool""'");
4316 arg2
= static_cast< bool >(val2
);
4318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4319 (arg1
)->SetBufferedDraw(arg2
);
4320 wxPyEndAllowThreads(__tstate
);
4321 if (PyErr_Occurred()) SWIG_fail
;
4323 resultobj
= SWIG_Py_Void();
4330 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4331 PyObject
*resultobj
= 0;
4332 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4338 PyObject
* obj0
= 0 ;
4339 PyObject
* obj1
= 0 ;
4340 char * kwnames
[] = {
4341 (char *) "self",(char *) "tabWidth", NULL
4344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4346 if (!SWIG_IsOK(res1
)) {
4347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4349 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4350 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4351 if (!SWIG_IsOK(ecode2
)) {
4352 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "2"" of type '" "int""'");
4354 arg2
= static_cast< int >(val2
);
4356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4357 (arg1
)->SetTabWidth(arg2
);
4358 wxPyEndAllowThreads(__tstate
);
4359 if (PyErr_Occurred()) SWIG_fail
;
4361 resultobj
= SWIG_Py_Void();
4368 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4369 PyObject
*resultobj
= 0;
4370 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4374 PyObject
*swig_obj
[1] ;
4376 if (!args
) SWIG_fail
;
4378 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4379 if (!SWIG_IsOK(res1
)) {
4380 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4382 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4385 result
= (int)(arg1
)->GetTabWidth();
4386 wxPyEndAllowThreads(__tstate
);
4387 if (PyErr_Occurred()) SWIG_fail
;
4389 resultobj
= SWIG_From_int(static_cast< int >(result
));
4396 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4397 PyObject
*resultobj
= 0;
4398 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4404 PyObject
* obj0
= 0 ;
4405 PyObject
* obj1
= 0 ;
4406 char * kwnames
[] = {
4407 (char *) "self",(char *) "codePage", NULL
4410 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCodePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4411 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4412 if (!SWIG_IsOK(res1
)) {
4413 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4415 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4416 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4417 if (!SWIG_IsOK(ecode2
)) {
4418 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "2"" of type '" "int""'");
4420 arg2
= static_cast< int >(val2
);
4422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4423 (arg1
)->SetCodePage(arg2
);
4424 wxPyEndAllowThreads(__tstate
);
4425 if (PyErr_Occurred()) SWIG_fail
;
4427 resultobj
= SWIG_Py_Void();
4434 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4435 PyObject
*resultobj
= 0;
4436 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4439 wxColour
const &arg4_defvalue
= wxNullColour
;
4440 wxColour
*arg4
= (wxColour
*) &arg4_defvalue
;
4441 wxColour
const &arg5_defvalue
= wxNullColour
;
4442 wxColour
*arg5
= (wxColour
*) &arg5_defvalue
;
4451 PyObject
* obj0
= 0 ;
4452 PyObject
* obj1
= 0 ;
4453 PyObject
* obj2
= 0 ;
4454 PyObject
* obj3
= 0 ;
4455 PyObject
* obj4
= 0 ;
4456 char * kwnames
[] = {
4457 (char *) "self",(char *) "markerNumber",(char *) "markerSymbol",(char *) "foreground",(char *) "background", NULL
4460 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:StyledTextCtrl_MarkerDefine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
4461 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4462 if (!SWIG_IsOK(res1
)) {
4463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4465 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4466 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4467 if (!SWIG_IsOK(ecode2
)) {
4468 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "2"" of type '" "int""'");
4470 arg2
= static_cast< int >(val2
);
4471 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4472 if (!SWIG_IsOK(ecode3
)) {
4473 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "3"" of type '" "int""'");
4475 arg3
= static_cast< int >(val3
);
4479 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
4485 if ( ! wxColour_helper(obj4
, &arg5
)) SWIG_fail
;
4489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4490 (arg1
)->MarkerDefine(arg2
,arg3
,(wxColour
const &)*arg4
,(wxColour
const &)*arg5
);
4491 wxPyEndAllowThreads(__tstate
);
4492 if (PyErr_Occurred()) SWIG_fail
;
4494 resultobj
= SWIG_Py_Void();
4501 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4502 PyObject
*resultobj
= 0;
4503 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4505 wxColour
*arg3
= 0 ;
4511 PyObject
* obj0
= 0 ;
4512 PyObject
* obj1
= 0 ;
4513 PyObject
* obj2
= 0 ;
4514 char * kwnames
[] = {
4515 (char *) "self",(char *) "markerNumber",(char *) "fore", NULL
4518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4520 if (!SWIG_IsOK(res1
)) {
4521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4523 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4524 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4525 if (!SWIG_IsOK(ecode2
)) {
4526 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "2"" of type '" "int""'");
4528 arg2
= static_cast< int >(val2
);
4531 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4534 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4535 (arg1
)->MarkerSetForeground(arg2
,(wxColour
const &)*arg3
);
4536 wxPyEndAllowThreads(__tstate
);
4537 if (PyErr_Occurred()) SWIG_fail
;
4539 resultobj
= SWIG_Py_Void();
4546 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4547 PyObject
*resultobj
= 0;
4548 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4550 wxColour
*arg3
= 0 ;
4556 PyObject
* obj0
= 0 ;
4557 PyObject
* obj1
= 0 ;
4558 PyObject
* obj2
= 0 ;
4559 char * kwnames
[] = {
4560 (char *) "self",(char *) "markerNumber",(char *) "back", NULL
4563 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4564 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4565 if (!SWIG_IsOK(res1
)) {
4566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4568 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4569 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4570 if (!SWIG_IsOK(ecode2
)) {
4571 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "2"" of type '" "int""'");
4573 arg2
= static_cast< int >(val2
);
4576 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4580 (arg1
)->MarkerSetBackground(arg2
,(wxColour
const &)*arg3
);
4581 wxPyEndAllowThreads(__tstate
);
4582 if (PyErr_Occurred()) SWIG_fail
;
4584 resultobj
= SWIG_Py_Void();
4591 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAdd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4592 PyObject
*resultobj
= 0;
4593 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4603 PyObject
* obj0
= 0 ;
4604 PyObject
* obj1
= 0 ;
4605 PyObject
* obj2
= 0 ;
4606 char * kwnames
[] = {
4607 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4610 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAdd",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4611 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4612 if (!SWIG_IsOK(res1
)) {
4613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4615 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4616 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4617 if (!SWIG_IsOK(ecode2
)) {
4618 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "2"" of type '" "int""'");
4620 arg2
= static_cast< int >(val2
);
4621 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4622 if (!SWIG_IsOK(ecode3
)) {
4623 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "3"" of type '" "int""'");
4625 arg3
= static_cast< int >(val3
);
4627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4628 result
= (int)(arg1
)->MarkerAdd(arg2
,arg3
);
4629 wxPyEndAllowThreads(__tstate
);
4630 if (PyErr_Occurred()) SWIG_fail
;
4632 resultobj
= SWIG_From_int(static_cast< int >(result
));
4639 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4640 PyObject
*resultobj
= 0;
4641 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4650 PyObject
* obj0
= 0 ;
4651 PyObject
* obj1
= 0 ;
4652 PyObject
* obj2
= 0 ;
4653 char * kwnames
[] = {
4654 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4657 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDelete",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4658 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4659 if (!SWIG_IsOK(res1
)) {
4660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4662 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4663 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4664 if (!SWIG_IsOK(ecode2
)) {
4665 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "2"" of type '" "int""'");
4667 arg2
= static_cast< int >(val2
);
4668 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4669 if (!SWIG_IsOK(ecode3
)) {
4670 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "3"" of type '" "int""'");
4672 arg3
= static_cast< int >(val3
);
4674 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4675 (arg1
)->MarkerDelete(arg2
,arg3
);
4676 wxPyEndAllowThreads(__tstate
);
4677 if (PyErr_Occurred()) SWIG_fail
;
4679 resultobj
= SWIG_Py_Void();
4686 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4687 PyObject
*resultobj
= 0;
4688 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4694 PyObject
* obj0
= 0 ;
4695 PyObject
* obj1
= 0 ;
4696 char * kwnames
[] = {
4697 (char *) "self",(char *) "markerNumber", NULL
4700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteAll",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4702 if (!SWIG_IsOK(res1
)) {
4703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4705 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4706 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4707 if (!SWIG_IsOK(ecode2
)) {
4708 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "2"" of type '" "int""'");
4710 arg2
= static_cast< int >(val2
);
4712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4713 (arg1
)->MarkerDeleteAll(arg2
);
4714 wxPyEndAllowThreads(__tstate
);
4715 if (PyErr_Occurred()) SWIG_fail
;
4717 resultobj
= SWIG_Py_Void();
4724 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerGet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4725 PyObject
*resultobj
= 0;
4726 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4733 PyObject
* obj0
= 0 ;
4734 PyObject
* obj1
= 0 ;
4735 char * kwnames
[] = {
4736 (char *) "self",(char *) "line", NULL
4739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerGet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4741 if (!SWIG_IsOK(res1
)) {
4742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4744 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4745 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4746 if (!SWIG_IsOK(ecode2
)) {
4747 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "2"" of type '" "int""'");
4749 arg2
= static_cast< int >(val2
);
4751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4752 result
= (int)(arg1
)->MarkerGet(arg2
);
4753 wxPyEndAllowThreads(__tstate
);
4754 if (PyErr_Occurred()) SWIG_fail
;
4756 resultobj
= SWIG_From_int(static_cast< int >(result
));
4763 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4764 PyObject
*resultobj
= 0;
4765 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4775 PyObject
* obj0
= 0 ;
4776 PyObject
* obj1
= 0 ;
4777 PyObject
* obj2
= 0 ;
4778 char * kwnames
[] = {
4779 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4782 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4783 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4784 if (!SWIG_IsOK(res1
)) {
4785 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4787 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4788 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4789 if (!SWIG_IsOK(ecode2
)) {
4790 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "2"" of type '" "int""'");
4792 arg2
= static_cast< int >(val2
);
4793 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4794 if (!SWIG_IsOK(ecode3
)) {
4795 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "3"" of type '" "int""'");
4797 arg3
= static_cast< int >(val3
);
4799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4800 result
= (int)(arg1
)->MarkerNext(arg2
,arg3
);
4801 wxPyEndAllowThreads(__tstate
);
4802 if (PyErr_Occurred()) SWIG_fail
;
4804 resultobj
= SWIG_From_int(static_cast< int >(result
));
4811 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerPrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4812 PyObject
*resultobj
= 0;
4813 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4823 PyObject
* obj0
= 0 ;
4824 PyObject
* obj1
= 0 ;
4825 PyObject
* obj2
= 0 ;
4826 char * kwnames
[] = {
4827 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4830 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerPrevious",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4831 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4832 if (!SWIG_IsOK(res1
)) {
4833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4835 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4836 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4837 if (!SWIG_IsOK(ecode2
)) {
4838 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "2"" of type '" "int""'");
4840 arg2
= static_cast< int >(val2
);
4841 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4842 if (!SWIG_IsOK(ecode3
)) {
4843 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "3"" of type '" "int""'");
4845 arg3
= static_cast< int >(val3
);
4847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4848 result
= (int)(arg1
)->MarkerPrevious(arg2
,arg3
);
4849 wxPyEndAllowThreads(__tstate
);
4850 if (PyErr_Occurred()) SWIG_fail
;
4852 resultobj
= SWIG_From_int(static_cast< int >(result
));
4859 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefineBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4860 PyObject
*resultobj
= 0;
4861 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4863 wxBitmap
*arg3
= 0 ;
4870 PyObject
* obj0
= 0 ;
4871 PyObject
* obj1
= 0 ;
4872 PyObject
* obj2
= 0 ;
4873 char * kwnames
[] = {
4874 (char *) "self",(char *) "markerNumber",(char *) "bmp", NULL
4877 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDefineBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4878 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4879 if (!SWIG_IsOK(res1
)) {
4880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4883 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4884 if (!SWIG_IsOK(ecode2
)) {
4885 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "2"" of type '" "int""'");
4887 arg2
= static_cast< int >(val2
);
4888 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
4889 if (!SWIG_IsOK(res3
)) {
4890 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4893 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4895 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
4897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4898 (arg1
)->MarkerDefineBitmap(arg2
,(wxBitmap
const &)*arg3
);
4899 wxPyEndAllowThreads(__tstate
);
4900 if (PyErr_Occurred()) SWIG_fail
;
4902 resultobj
= SWIG_Py_Void();
4909 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAddSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4910 PyObject
*resultobj
= 0;
4911 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4920 PyObject
* obj0
= 0 ;
4921 PyObject
* obj1
= 0 ;
4922 PyObject
* obj2
= 0 ;
4923 char * kwnames
[] = {
4924 (char *) "self",(char *) "line",(char *) "set", NULL
4927 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAddSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4928 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4929 if (!SWIG_IsOK(res1
)) {
4930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4932 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4933 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4934 if (!SWIG_IsOK(ecode2
)) {
4935 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "2"" of type '" "int""'");
4937 arg2
= static_cast< int >(val2
);
4938 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4939 if (!SWIG_IsOK(ecode3
)) {
4940 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "3"" of type '" "int""'");
4942 arg3
= static_cast< int >(val3
);
4944 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4945 (arg1
)->MarkerAddSet(arg2
,arg3
);
4946 wxPyEndAllowThreads(__tstate
);
4947 if (PyErr_Occurred()) SWIG_fail
;
4949 resultobj
= SWIG_Py_Void();
4956 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4957 PyObject
*resultobj
= 0;
4958 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4967 PyObject
* obj0
= 0 ;
4968 PyObject
* obj1
= 0 ;
4969 PyObject
* obj2
= 0 ;
4970 char * kwnames
[] = {
4971 (char *) "self",(char *) "margin",(char *) "marginType", NULL
4974 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginType",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4975 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4976 if (!SWIG_IsOK(res1
)) {
4977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4979 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4980 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4981 if (!SWIG_IsOK(ecode2
)) {
4982 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "2"" of type '" "int""'");
4984 arg2
= static_cast< int >(val2
);
4985 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4986 if (!SWIG_IsOK(ecode3
)) {
4987 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "3"" of type '" "int""'");
4989 arg3
= static_cast< int >(val3
);
4991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4992 (arg1
)->SetMarginType(arg2
,arg3
);
4993 wxPyEndAllowThreads(__tstate
);
4994 if (PyErr_Occurred()) SWIG_fail
;
4996 resultobj
= SWIG_Py_Void();
5003 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5004 PyObject
*resultobj
= 0;
5005 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5012 PyObject
* obj0
= 0 ;
5013 PyObject
* obj1
= 0 ;
5014 char * kwnames
[] = {
5015 (char *) "self",(char *) "margin", NULL
5018 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5019 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5020 if (!SWIG_IsOK(res1
)) {
5021 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5023 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5024 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5025 if (!SWIG_IsOK(ecode2
)) {
5026 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "2"" of type '" "int""'");
5028 arg2
= static_cast< int >(val2
);
5030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5031 result
= (int)(arg1
)->GetMarginType(arg2
);
5032 wxPyEndAllowThreads(__tstate
);
5033 if (PyErr_Occurred()) SWIG_fail
;
5035 resultobj
= SWIG_From_int(static_cast< int >(result
));
5042 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5043 PyObject
*resultobj
= 0;
5044 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5053 PyObject
* obj0
= 0 ;
5054 PyObject
* obj1
= 0 ;
5055 PyObject
* obj2
= 0 ;
5056 char * kwnames
[] = {
5057 (char *) "self",(char *) "margin",(char *) "pixelWidth", NULL
5060 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5061 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5062 if (!SWIG_IsOK(res1
)) {
5063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5066 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5067 if (!SWIG_IsOK(ecode2
)) {
5068 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5070 arg2
= static_cast< int >(val2
);
5071 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5072 if (!SWIG_IsOK(ecode3
)) {
5073 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "3"" of type '" "int""'");
5075 arg3
= static_cast< int >(val3
);
5077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5078 (arg1
)->SetMarginWidth(arg2
,arg3
);
5079 wxPyEndAllowThreads(__tstate
);
5080 if (PyErr_Occurred()) SWIG_fail
;
5082 resultobj
= SWIG_Py_Void();
5089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5090 PyObject
*resultobj
= 0;
5091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5098 PyObject
* obj0
= 0 ;
5099 PyObject
* obj1
= 0 ;
5100 char * kwnames
[] = {
5101 (char *) "self",(char *) "margin", NULL
5104 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5105 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5106 if (!SWIG_IsOK(res1
)) {
5107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5109 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5110 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5111 if (!SWIG_IsOK(ecode2
)) {
5112 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5114 arg2
= static_cast< int >(val2
);
5116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5117 result
= (int)(arg1
)->GetMarginWidth(arg2
);
5118 wxPyEndAllowThreads(__tstate
);
5119 if (PyErr_Occurred()) SWIG_fail
;
5121 resultobj
= SWIG_From_int(static_cast< int >(result
));
5128 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5129 PyObject
*resultobj
= 0;
5130 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5139 PyObject
* obj0
= 0 ;
5140 PyObject
* obj1
= 0 ;
5141 PyObject
* obj2
= 0 ;
5142 char * kwnames
[] = {
5143 (char *) "self",(char *) "margin",(char *) "mask", NULL
5146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginMask",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5148 if (!SWIG_IsOK(res1
)) {
5149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5151 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5152 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5153 if (!SWIG_IsOK(ecode2
)) {
5154 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "2"" of type '" "int""'");
5156 arg2
= static_cast< int >(val2
);
5157 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5158 if (!SWIG_IsOK(ecode3
)) {
5159 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "3"" of type '" "int""'");
5161 arg3
= static_cast< int >(val3
);
5163 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5164 (arg1
)->SetMarginMask(arg2
,arg3
);
5165 wxPyEndAllowThreads(__tstate
);
5166 if (PyErr_Occurred()) SWIG_fail
;
5168 resultobj
= SWIG_Py_Void();
5175 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5176 PyObject
*resultobj
= 0;
5177 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5184 PyObject
* obj0
= 0 ;
5185 PyObject
* obj1
= 0 ;
5186 char * kwnames
[] = {
5187 (char *) "self",(char *) "margin", NULL
5190 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5191 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5192 if (!SWIG_IsOK(res1
)) {
5193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5195 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5196 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5197 if (!SWIG_IsOK(ecode2
)) {
5198 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "2"" of type '" "int""'");
5200 arg2
= static_cast< int >(val2
);
5202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5203 result
= (int)(arg1
)->GetMarginMask(arg2
);
5204 wxPyEndAllowThreads(__tstate
);
5205 if (PyErr_Occurred()) SWIG_fail
;
5207 resultobj
= SWIG_From_int(static_cast< int >(result
));
5214 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5215 PyObject
*resultobj
= 0;
5216 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5225 PyObject
* obj0
= 0 ;
5226 PyObject
* obj1
= 0 ;
5227 PyObject
* obj2
= 0 ;
5228 char * kwnames
[] = {
5229 (char *) "self",(char *) "margin",(char *) "sensitive", NULL
5232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginSensitive",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5234 if (!SWIG_IsOK(res1
)) {
5235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5239 if (!SWIG_IsOK(ecode2
)) {
5240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5242 arg2
= static_cast< int >(val2
);
5243 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5244 if (!SWIG_IsOK(ecode3
)) {
5245 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "3"" of type '" "bool""'");
5247 arg3
= static_cast< bool >(val3
);
5249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5250 (arg1
)->SetMarginSensitive(arg2
,arg3
);
5251 wxPyEndAllowThreads(__tstate
);
5252 if (PyErr_Occurred()) SWIG_fail
;
5254 resultobj
= SWIG_Py_Void();
5261 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5262 PyObject
*resultobj
= 0;
5263 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5270 PyObject
* obj0
= 0 ;
5271 PyObject
* obj1
= 0 ;
5272 char * kwnames
[] = {
5273 (char *) "self",(char *) "margin", NULL
5276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginSensitive",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5278 if (!SWIG_IsOK(res1
)) {
5279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5281 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5282 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5283 if (!SWIG_IsOK(ecode2
)) {
5284 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5286 arg2
= static_cast< int >(val2
);
5288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5289 result
= (bool)(arg1
)->GetMarginSensitive(arg2
);
5290 wxPyEndAllowThreads(__tstate
);
5291 if (PyErr_Occurred()) SWIG_fail
;
5294 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5302 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5303 PyObject
*resultobj
= 0;
5304 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5307 PyObject
*swig_obj
[1] ;
5309 if (!args
) SWIG_fail
;
5311 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5312 if (!SWIG_IsOK(res1
)) {
5313 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5315 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5318 (arg1
)->StyleClearAll();
5319 wxPyEndAllowThreads(__tstate
);
5320 if (PyErr_Occurred()) SWIG_fail
;
5322 resultobj
= SWIG_Py_Void();
5329 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5330 PyObject
*resultobj
= 0;
5331 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5333 wxColour
*arg3
= 0 ;
5339 PyObject
* obj0
= 0 ;
5340 PyObject
* obj1
= 0 ;
5341 PyObject
* obj2
= 0 ;
5342 char * kwnames
[] = {
5343 (char *) "self",(char *) "style",(char *) "fore", NULL
5346 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5347 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5348 if (!SWIG_IsOK(res1
)) {
5349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5351 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5352 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5353 if (!SWIG_IsOK(ecode2
)) {
5354 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "2"" of type '" "int""'");
5356 arg2
= static_cast< int >(val2
);
5359 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5363 (arg1
)->StyleSetForeground(arg2
,(wxColour
const &)*arg3
);
5364 wxPyEndAllowThreads(__tstate
);
5365 if (PyErr_Occurred()) SWIG_fail
;
5367 resultobj
= SWIG_Py_Void();
5374 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5375 PyObject
*resultobj
= 0;
5376 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5378 wxColour
*arg3
= 0 ;
5384 PyObject
* obj0
= 0 ;
5385 PyObject
* obj1
= 0 ;
5386 PyObject
* obj2
= 0 ;
5387 char * kwnames
[] = {
5388 (char *) "self",(char *) "style",(char *) "back", NULL
5391 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5392 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5393 if (!SWIG_IsOK(res1
)) {
5394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5396 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5397 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5398 if (!SWIG_IsOK(ecode2
)) {
5399 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "2"" of type '" "int""'");
5401 arg2
= static_cast< int >(val2
);
5404 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5408 (arg1
)->StyleSetBackground(arg2
,(wxColour
const &)*arg3
);
5409 wxPyEndAllowThreads(__tstate
);
5410 if (PyErr_Occurred()) SWIG_fail
;
5412 resultobj
= SWIG_Py_Void();
5419 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5420 PyObject
*resultobj
= 0;
5421 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5430 PyObject
* obj0
= 0 ;
5431 PyObject
* obj1
= 0 ;
5432 PyObject
* obj2
= 0 ;
5433 char * kwnames
[] = {
5434 (char *) "self",(char *) "style",(char *) "bold", NULL
5437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBold",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5439 if (!SWIG_IsOK(res1
)) {
5440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5442 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5443 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5444 if (!SWIG_IsOK(ecode2
)) {
5445 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "2"" of type '" "int""'");
5447 arg2
= static_cast< int >(val2
);
5448 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5449 if (!SWIG_IsOK(ecode3
)) {
5450 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "3"" of type '" "bool""'");
5452 arg3
= static_cast< bool >(val3
);
5454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5455 (arg1
)->StyleSetBold(arg2
,arg3
);
5456 wxPyEndAllowThreads(__tstate
);
5457 if (PyErr_Occurred()) SWIG_fail
;
5459 resultobj
= SWIG_Py_Void();
5466 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetItalic(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5467 PyObject
*resultobj
= 0;
5468 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5477 PyObject
* obj0
= 0 ;
5478 PyObject
* obj1
= 0 ;
5479 PyObject
* obj2
= 0 ;
5480 char * kwnames
[] = {
5481 (char *) "self",(char *) "style",(char *) "italic", NULL
5484 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetItalic",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5485 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5486 if (!SWIG_IsOK(res1
)) {
5487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5489 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5490 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5491 if (!SWIG_IsOK(ecode2
)) {
5492 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "2"" of type '" "int""'");
5494 arg2
= static_cast< int >(val2
);
5495 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5496 if (!SWIG_IsOK(ecode3
)) {
5497 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "3"" of type '" "bool""'");
5499 arg3
= static_cast< bool >(val3
);
5501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5502 (arg1
)->StyleSetItalic(arg2
,arg3
);
5503 wxPyEndAllowThreads(__tstate
);
5504 if (PyErr_Occurred()) SWIG_fail
;
5506 resultobj
= SWIG_Py_Void();
5513 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5514 PyObject
*resultobj
= 0;
5515 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5524 PyObject
* obj0
= 0 ;
5525 PyObject
* obj1
= 0 ;
5526 PyObject
* obj2
= 0 ;
5527 char * kwnames
[] = {
5528 (char *) "self",(char *) "style",(char *) "sizePoints", NULL
5531 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5532 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5533 if (!SWIG_IsOK(res1
)) {
5534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5536 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5537 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5538 if (!SWIG_IsOK(ecode2
)) {
5539 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "2"" of type '" "int""'");
5541 arg2
= static_cast< int >(val2
);
5542 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5543 if (!SWIG_IsOK(ecode3
)) {
5544 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "3"" of type '" "int""'");
5546 arg3
= static_cast< int >(val3
);
5548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5549 (arg1
)->StyleSetSize(arg2
,arg3
);
5550 wxPyEndAllowThreads(__tstate
);
5551 if (PyErr_Occurred()) SWIG_fail
;
5553 resultobj
= SWIG_Py_Void();
5560 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5561 PyObject
*resultobj
= 0;
5562 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5564 wxString
*arg3
= 0 ;
5569 bool temp3
= false ;
5570 PyObject
* obj0
= 0 ;
5571 PyObject
* obj1
= 0 ;
5572 PyObject
* obj2
= 0 ;
5573 char * kwnames
[] = {
5574 (char *) "self",(char *) "style",(char *) "fontName", NULL
5577 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFaceName",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5578 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5579 if (!SWIG_IsOK(res1
)) {
5580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5582 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5583 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5584 if (!SWIG_IsOK(ecode2
)) {
5585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "2"" of type '" "int""'");
5587 arg2
= static_cast< int >(val2
);
5589 arg3
= wxString_in_helper(obj2
);
5590 if (arg3
== NULL
) SWIG_fail
;
5594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5595 (arg1
)->StyleSetFaceName(arg2
,(wxString
const &)*arg3
);
5596 wxPyEndAllowThreads(__tstate
);
5597 if (PyErr_Occurred()) SWIG_fail
;
5599 resultobj
= SWIG_Py_Void();
5614 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetEOLFilled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5615 PyObject
*resultobj
= 0;
5616 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5625 PyObject
* obj0
= 0 ;
5626 PyObject
* obj1
= 0 ;
5627 PyObject
* obj2
= 0 ;
5628 char * kwnames
[] = {
5629 (char *) "self",(char *) "style",(char *) "filled", NULL
5632 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetEOLFilled",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5633 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5634 if (!SWIG_IsOK(res1
)) {
5635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5637 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5638 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5639 if (!SWIG_IsOK(ecode2
)) {
5640 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "2"" of type '" "int""'");
5642 arg2
= static_cast< int >(val2
);
5643 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5644 if (!SWIG_IsOK(ecode3
)) {
5645 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "3"" of type '" "bool""'");
5647 arg3
= static_cast< bool >(val3
);
5649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5650 (arg1
)->StyleSetEOLFilled(arg2
,arg3
);
5651 wxPyEndAllowThreads(__tstate
);
5652 if (PyErr_Occurred()) SWIG_fail
;
5654 resultobj
= SWIG_Py_Void();
5661 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleResetDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5662 PyObject
*resultobj
= 0;
5663 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5666 PyObject
*swig_obj
[1] ;
5668 if (!args
) SWIG_fail
;
5670 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5671 if (!SWIG_IsOK(res1
)) {
5672 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleResetDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5674 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5677 (arg1
)->StyleResetDefault();
5678 wxPyEndAllowThreads(__tstate
);
5679 if (PyErr_Occurred()) SWIG_fail
;
5681 resultobj
= SWIG_Py_Void();
5688 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5689 PyObject
*resultobj
= 0;
5690 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5699 PyObject
* obj0
= 0 ;
5700 PyObject
* obj1
= 0 ;
5701 PyObject
* obj2
= 0 ;
5702 char * kwnames
[] = {
5703 (char *) "self",(char *) "style",(char *) "underline", NULL
5706 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetUnderline",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5707 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5708 if (!SWIG_IsOK(res1
)) {
5709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5711 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5712 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5713 if (!SWIG_IsOK(ecode2
)) {
5714 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "2"" of type '" "int""'");
5716 arg2
= static_cast< int >(val2
);
5717 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5718 if (!SWIG_IsOK(ecode3
)) {
5719 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "3"" of type '" "bool""'");
5721 arg3
= static_cast< bool >(val3
);
5723 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5724 (arg1
)->StyleSetUnderline(arg2
,arg3
);
5725 wxPyEndAllowThreads(__tstate
);
5726 if (PyErr_Occurred()) SWIG_fail
;
5728 resultobj
= SWIG_Py_Void();
5735 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5736 PyObject
*resultobj
= 0;
5737 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5746 PyObject
* obj0
= 0 ;
5747 PyObject
* obj1
= 0 ;
5748 PyObject
* obj2
= 0 ;
5749 char * kwnames
[] = {
5750 (char *) "self",(char *) "style",(char *) "caseForce", NULL
5753 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCase",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5754 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5755 if (!SWIG_IsOK(res1
)) {
5756 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5758 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5759 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5760 if (!SWIG_IsOK(ecode2
)) {
5761 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "2"" of type '" "int""'");
5763 arg2
= static_cast< int >(val2
);
5764 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5765 if (!SWIG_IsOK(ecode3
)) {
5766 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "3"" of type '" "int""'");
5768 arg3
= static_cast< int >(val3
);
5770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5771 (arg1
)->StyleSetCase(arg2
,arg3
);
5772 wxPyEndAllowThreads(__tstate
);
5773 if (PyErr_Occurred()) SWIG_fail
;
5775 resultobj
= SWIG_Py_Void();
5782 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetHotSpot(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5783 PyObject
*resultobj
= 0;
5784 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5793 PyObject
* obj0
= 0 ;
5794 PyObject
* obj1
= 0 ;
5795 PyObject
* obj2
= 0 ;
5796 char * kwnames
[] = {
5797 (char *) "self",(char *) "style",(char *) "hotspot", NULL
5800 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetHotSpot",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5801 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5802 if (!SWIG_IsOK(res1
)) {
5803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5805 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5806 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5807 if (!SWIG_IsOK(ecode2
)) {
5808 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "2"" of type '" "int""'");
5810 arg2
= static_cast< int >(val2
);
5811 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5812 if (!SWIG_IsOK(ecode3
)) {
5813 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "3"" of type '" "bool""'");
5815 arg3
= static_cast< bool >(val3
);
5817 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5818 (arg1
)->StyleSetHotSpot(arg2
,arg3
);
5819 wxPyEndAllowThreads(__tstate
);
5820 if (PyErr_Occurred()) SWIG_fail
;
5822 resultobj
= SWIG_Py_Void();
5829 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5830 PyObject
*resultobj
= 0;
5831 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5833 wxColour
*arg3
= 0 ;
5839 PyObject
* obj0
= 0 ;
5840 PyObject
* obj1
= 0 ;
5841 PyObject
* obj2
= 0 ;
5842 char * kwnames
[] = {
5843 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
5846 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5847 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5848 if (!SWIG_IsOK(res1
)) {
5849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5851 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5852 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5853 if (!SWIG_IsOK(ecode2
)) {
5854 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "2"" of type '" "bool""'");
5856 arg2
= static_cast< bool >(val2
);
5859 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5863 (arg1
)->SetSelForeground(arg2
,(wxColour
const &)*arg3
);
5864 wxPyEndAllowThreads(__tstate
);
5865 if (PyErr_Occurred()) SWIG_fail
;
5867 resultobj
= SWIG_Py_Void();
5874 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5875 PyObject
*resultobj
= 0;
5876 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5878 wxColour
*arg3
= 0 ;
5884 PyObject
* obj0
= 0 ;
5885 PyObject
* obj1
= 0 ;
5886 PyObject
* obj2
= 0 ;
5887 char * kwnames
[] = {
5888 (char *) "self",(char *) "useSetting",(char *) "back", NULL
5891 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5892 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5893 if (!SWIG_IsOK(res1
)) {
5894 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5896 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5897 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5898 if (!SWIG_IsOK(ecode2
)) {
5899 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "2"" of type '" "bool""'");
5901 arg2
= static_cast< bool >(val2
);
5904 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5908 (arg1
)->SetSelBackground(arg2
,(wxColour
const &)*arg3
);
5909 wxPyEndAllowThreads(__tstate
);
5910 if (PyErr_Occurred()) SWIG_fail
;
5912 resultobj
= SWIG_Py_Void();
5919 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5920 PyObject
*resultobj
= 0;
5921 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5922 wxColour
*arg2
= 0 ;
5926 PyObject
* obj0
= 0 ;
5927 PyObject
* obj1
= 0 ;
5928 char * kwnames
[] = {
5929 (char *) "self",(char *) "fore", NULL
5932 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5933 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5934 if (!SWIG_IsOK(res1
)) {
5935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5937 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5940 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
5943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5944 (arg1
)->SetCaretForeground((wxColour
const &)*arg2
);
5945 wxPyEndAllowThreads(__tstate
);
5946 if (PyErr_Occurred()) SWIG_fail
;
5948 resultobj
= SWIG_Py_Void();
5955 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyAssign(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5956 PyObject
*resultobj
= 0;
5957 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5969 PyObject
* obj0
= 0 ;
5970 PyObject
* obj1
= 0 ;
5971 PyObject
* obj2
= 0 ;
5972 PyObject
* obj3
= 0 ;
5973 char * kwnames
[] = {
5974 (char *) "self",(char *) "key",(char *) "modifiers",(char *) "cmd", NULL
5977 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_CmdKeyAssign",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
5978 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5979 if (!SWIG_IsOK(res1
)) {
5980 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5982 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5983 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5984 if (!SWIG_IsOK(ecode2
)) {
5985 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "2"" of type '" "int""'");
5987 arg2
= static_cast< int >(val2
);
5988 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5989 if (!SWIG_IsOK(ecode3
)) {
5990 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "3"" of type '" "int""'");
5992 arg3
= static_cast< int >(val3
);
5993 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
5994 if (!SWIG_IsOK(ecode4
)) {
5995 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "4"" of type '" "int""'");
5997 arg4
= static_cast< int >(val4
);
5999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6000 (arg1
)->CmdKeyAssign(arg2
,arg3
,arg4
);
6001 wxPyEndAllowThreads(__tstate
);
6002 if (PyErr_Occurred()) SWIG_fail
;
6004 resultobj
= SWIG_Py_Void();
6011 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6012 PyObject
*resultobj
= 0;
6013 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6022 PyObject
* obj0
= 0 ;
6023 PyObject
* obj1
= 0 ;
6024 PyObject
* obj2
= 0 ;
6025 char * kwnames
[] = {
6026 (char *) "self",(char *) "key",(char *) "modifiers", NULL
6029 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CmdKeyClear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6030 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6031 if (!SWIG_IsOK(res1
)) {
6032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6034 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6035 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6036 if (!SWIG_IsOK(ecode2
)) {
6037 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "2"" of type '" "int""'");
6039 arg2
= static_cast< int >(val2
);
6040 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6041 if (!SWIG_IsOK(ecode3
)) {
6042 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "3"" of type '" "int""'");
6044 arg3
= static_cast< int >(val3
);
6046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6047 (arg1
)->CmdKeyClear(arg2
,arg3
);
6048 wxPyEndAllowThreads(__tstate
);
6049 if (PyErr_Occurred()) SWIG_fail
;
6051 resultobj
= SWIG_Py_Void();
6058 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6059 PyObject
*resultobj
= 0;
6060 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6063 PyObject
*swig_obj
[1] ;
6065 if (!args
) SWIG_fail
;
6067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6068 if (!SWIG_IsOK(res1
)) {
6069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6071 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6073 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6074 (arg1
)->CmdKeyClearAll();
6075 wxPyEndAllowThreads(__tstate
);
6076 if (PyErr_Occurred()) SWIG_fail
;
6078 resultobj
= SWIG_Py_Void();
6085 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBytes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6086 PyObject
*resultobj
= 0;
6087 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6089 char *arg3
= (char *) 0 ;
6097 PyObject
* obj0
= 0 ;
6098 PyObject
* obj1
= 0 ;
6099 PyObject
* obj2
= 0 ;
6100 char * kwnames
[] = {
6101 (char *) "self",(char *) "length",(char *) "styleBytes", NULL
6104 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyleBytes",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6105 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6106 if (!SWIG_IsOK(res1
)) {
6107 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6109 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6110 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6111 if (!SWIG_IsOK(ecode2
)) {
6112 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "2"" of type '" "int""'");
6114 arg2
= static_cast< int >(val2
);
6115 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
6116 if (!SWIG_IsOK(res3
)) {
6117 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "3"" of type '" "char *""'");
6121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6122 (arg1
)->SetStyleBytes(arg2
,arg3
);
6123 wxPyEndAllowThreads(__tstate
);
6124 if (PyErr_Occurred()) SWIG_fail
;
6126 resultobj
= SWIG_Py_Void();
6127 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6130 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6135 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6136 PyObject
*resultobj
= 0;
6137 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6146 PyObject
* obj0
= 0 ;
6147 PyObject
* obj1
= 0 ;
6148 PyObject
* obj2
= 0 ;
6149 char * kwnames
[] = {
6150 (char *) "self",(char *) "style",(char *) "visible", NULL
6153 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6154 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6155 if (!SWIG_IsOK(res1
)) {
6156 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6158 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6159 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6160 if (!SWIG_IsOK(ecode2
)) {
6161 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "2"" of type '" "int""'");
6163 arg2
= static_cast< int >(val2
);
6164 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6165 if (!SWIG_IsOK(ecode3
)) {
6166 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "3"" of type '" "bool""'");
6168 arg3
= static_cast< bool >(val3
);
6170 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6171 (arg1
)->StyleSetVisible(arg2
,arg3
);
6172 wxPyEndAllowThreads(__tstate
);
6173 if (PyErr_Occurred()) SWIG_fail
;
6175 resultobj
= SWIG_Py_Void();
6182 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6183 PyObject
*resultobj
= 0;
6184 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6188 PyObject
*swig_obj
[1] ;
6190 if (!args
) SWIG_fail
;
6192 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6193 if (!SWIG_IsOK(res1
)) {
6194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6196 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6199 result
= (int)(arg1
)->GetCaretPeriod();
6200 wxPyEndAllowThreads(__tstate
);
6201 if (PyErr_Occurred()) SWIG_fail
;
6203 resultobj
= SWIG_From_int(static_cast< int >(result
));
6210 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6211 PyObject
*resultobj
= 0;
6212 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6218 PyObject
* obj0
= 0 ;
6219 PyObject
* obj1
= 0 ;
6220 char * kwnames
[] = {
6221 (char *) "self",(char *) "periodMilliseconds", NULL
6224 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretPeriod",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6225 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6226 if (!SWIG_IsOK(res1
)) {
6227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6229 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6230 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6231 if (!SWIG_IsOK(ecode2
)) {
6232 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "2"" of type '" "int""'");
6234 arg2
= static_cast< int >(val2
);
6236 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6237 (arg1
)->SetCaretPeriod(arg2
);
6238 wxPyEndAllowThreads(__tstate
);
6239 if (PyErr_Occurred()) SWIG_fail
;
6241 resultobj
= SWIG_Py_Void();
6248 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWordChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6249 PyObject
*resultobj
= 0;
6250 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6251 wxString
*arg2
= 0 ;
6254 bool temp2
= false ;
6255 PyObject
* obj0
= 0 ;
6256 PyObject
* obj1
= 0 ;
6257 char * kwnames
[] = {
6258 (char *) "self",(char *) "characters", NULL
6261 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWordChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6262 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6263 if (!SWIG_IsOK(res1
)) {
6264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWordChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6266 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6268 arg2
= wxString_in_helper(obj1
);
6269 if (arg2
== NULL
) SWIG_fail
;
6273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6274 (arg1
)->SetWordChars((wxString
const &)*arg2
);
6275 wxPyEndAllowThreads(__tstate
);
6276 if (PyErr_Occurred()) SWIG_fail
;
6278 resultobj
= SWIG_Py_Void();
6293 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BeginUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6294 PyObject
*resultobj
= 0;
6295 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6298 PyObject
*swig_obj
[1] ;
6300 if (!args
) SWIG_fail
;
6302 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6303 if (!SWIG_IsOK(res1
)) {
6304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BeginUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6306 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6309 (arg1
)->BeginUndoAction();
6310 wxPyEndAllowThreads(__tstate
);
6311 if (PyErr_Occurred()) SWIG_fail
;
6313 resultobj
= SWIG_Py_Void();
6320 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EndUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6321 PyObject
*resultobj
= 0;
6322 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6325 PyObject
*swig_obj
[1] ;
6327 if (!args
) SWIG_fail
;
6329 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6330 if (!SWIG_IsOK(res1
)) {
6331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EndUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6333 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6336 (arg1
)->EndUndoAction();
6337 wxPyEndAllowThreads(__tstate
);
6338 if (PyErr_Occurred()) SWIG_fail
;
6340 resultobj
= SWIG_Py_Void();
6347 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6348 PyObject
*resultobj
= 0;
6349 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6358 PyObject
* obj0
= 0 ;
6359 PyObject
* obj1
= 0 ;
6360 PyObject
* obj2
= 0 ;
6361 char * kwnames
[] = {
6362 (char *) "self",(char *) "indic",(char *) "style", NULL
6365 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6366 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6367 if (!SWIG_IsOK(res1
)) {
6368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6370 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6371 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6372 if (!SWIG_IsOK(ecode2
)) {
6373 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "2"" of type '" "int""'");
6375 arg2
= static_cast< int >(val2
);
6376 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6377 if (!SWIG_IsOK(ecode3
)) {
6378 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "3"" of type '" "int""'");
6380 arg3
= static_cast< int >(val3
);
6382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6383 (arg1
)->IndicatorSetStyle(arg2
,arg3
);
6384 wxPyEndAllowThreads(__tstate
);
6385 if (PyErr_Occurred()) SWIG_fail
;
6387 resultobj
= SWIG_Py_Void();
6394 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6395 PyObject
*resultobj
= 0;
6396 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6403 PyObject
* obj0
= 0 ;
6404 PyObject
* obj1
= 0 ;
6405 char * kwnames
[] = {
6406 (char *) "self",(char *) "indic", NULL
6409 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6410 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6411 if (!SWIG_IsOK(res1
)) {
6412 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6414 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6415 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6416 if (!SWIG_IsOK(ecode2
)) {
6417 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "2"" of type '" "int""'");
6419 arg2
= static_cast< int >(val2
);
6421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6422 result
= (int)(arg1
)->IndicatorGetStyle(arg2
);
6423 wxPyEndAllowThreads(__tstate
);
6424 if (PyErr_Occurred()) SWIG_fail
;
6426 resultobj
= SWIG_From_int(static_cast< int >(result
));
6433 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6434 PyObject
*resultobj
= 0;
6435 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6437 wxColour
*arg3
= 0 ;
6443 PyObject
* obj0
= 0 ;
6444 PyObject
* obj1
= 0 ;
6445 PyObject
* obj2
= 0 ;
6446 char * kwnames
[] = {
6447 (char *) "self",(char *) "indic",(char *) "fore", NULL
6450 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6451 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6452 if (!SWIG_IsOK(res1
)) {
6453 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6455 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6456 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6457 if (!SWIG_IsOK(ecode2
)) {
6458 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "2"" of type '" "int""'");
6460 arg2
= static_cast< int >(val2
);
6463 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6467 (arg1
)->IndicatorSetForeground(arg2
,(wxColour
const &)*arg3
);
6468 wxPyEndAllowThreads(__tstate
);
6469 if (PyErr_Occurred()) SWIG_fail
;
6471 resultobj
= SWIG_Py_Void();
6478 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6479 PyObject
*resultobj
= 0;
6480 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6487 PyObject
* obj0
= 0 ;
6488 PyObject
* obj1
= 0 ;
6489 char * kwnames
[] = {
6490 (char *) "self",(char *) "indic", NULL
6493 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6494 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6495 if (!SWIG_IsOK(res1
)) {
6496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6498 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6499 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6500 if (!SWIG_IsOK(ecode2
)) {
6501 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "2"" of type '" "int""'");
6503 arg2
= static_cast< int >(val2
);
6505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6506 result
= (arg1
)->IndicatorGetForeground(arg2
);
6507 wxPyEndAllowThreads(__tstate
);
6508 if (PyErr_Occurred()) SWIG_fail
;
6510 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6517 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6518 PyObject
*resultobj
= 0;
6519 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6521 wxColour
*arg3
= 0 ;
6527 PyObject
* obj0
= 0 ;
6528 PyObject
* obj1
= 0 ;
6529 PyObject
* obj2
= 0 ;
6530 char * kwnames
[] = {
6531 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
6534 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6535 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6536 if (!SWIG_IsOK(res1
)) {
6537 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6539 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6540 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6541 if (!SWIG_IsOK(ecode2
)) {
6542 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "2"" of type '" "bool""'");
6544 arg2
= static_cast< bool >(val2
);
6547 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6551 (arg1
)->SetWhitespaceForeground(arg2
,(wxColour
const &)*arg3
);
6552 wxPyEndAllowThreads(__tstate
);
6553 if (PyErr_Occurred()) SWIG_fail
;
6555 resultobj
= SWIG_Py_Void();
6562 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6563 PyObject
*resultobj
= 0;
6564 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6566 wxColour
*arg3
= 0 ;
6572 PyObject
* obj0
= 0 ;
6573 PyObject
* obj1
= 0 ;
6574 PyObject
* obj2
= 0 ;
6575 char * kwnames
[] = {
6576 (char *) "self",(char *) "useSetting",(char *) "back", NULL
6579 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6580 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6581 if (!SWIG_IsOK(res1
)) {
6582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6584 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6585 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6586 if (!SWIG_IsOK(ecode2
)) {
6587 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "2"" of type '" "bool""'");
6589 arg2
= static_cast< bool >(val2
);
6592 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6596 (arg1
)->SetWhitespaceBackground(arg2
,(wxColour
const &)*arg3
);
6597 wxPyEndAllowThreads(__tstate
);
6598 if (PyErr_Occurred()) SWIG_fail
;
6600 resultobj
= SWIG_Py_Void();
6607 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6608 PyObject
*resultobj
= 0;
6609 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6615 PyObject
* obj0
= 0 ;
6616 PyObject
* obj1
= 0 ;
6617 char * kwnames
[] = {
6618 (char *) "self",(char *) "bits", NULL
6621 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStyleBits",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6622 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6623 if (!SWIG_IsOK(res1
)) {
6624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6626 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6627 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6628 if (!SWIG_IsOK(ecode2
)) {
6629 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "2"" of type '" "int""'");
6631 arg2
= static_cast< int >(val2
);
6633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6634 (arg1
)->SetStyleBits(arg2
);
6635 wxPyEndAllowThreads(__tstate
);
6636 if (PyErr_Occurred()) SWIG_fail
;
6638 resultobj
= SWIG_Py_Void();
6645 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6646 PyObject
*resultobj
= 0;
6647 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6651 PyObject
*swig_obj
[1] ;
6653 if (!args
) SWIG_fail
;
6655 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6656 if (!SWIG_IsOK(res1
)) {
6657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6659 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6661 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6662 result
= (int)(arg1
)->GetStyleBits();
6663 wxPyEndAllowThreads(__tstate
);
6664 if (PyErr_Occurred()) SWIG_fail
;
6666 resultobj
= SWIG_From_int(static_cast< int >(result
));
6673 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6674 PyObject
*resultobj
= 0;
6675 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6684 PyObject
* obj0
= 0 ;
6685 PyObject
* obj1
= 0 ;
6686 PyObject
* obj2
= 0 ;
6687 char * kwnames
[] = {
6688 (char *) "self",(char *) "line",(char *) "state", NULL
6691 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineState",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6692 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6693 if (!SWIG_IsOK(res1
)) {
6694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6696 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6697 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6698 if (!SWIG_IsOK(ecode2
)) {
6699 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "2"" of type '" "int""'");
6701 arg2
= static_cast< int >(val2
);
6702 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6703 if (!SWIG_IsOK(ecode3
)) {
6704 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "3"" of type '" "int""'");
6706 arg3
= static_cast< int >(val3
);
6708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6709 (arg1
)->SetLineState(arg2
,arg3
);
6710 wxPyEndAllowThreads(__tstate
);
6711 if (PyErr_Occurred()) SWIG_fail
;
6713 resultobj
= SWIG_Py_Void();
6720 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6721 PyObject
*resultobj
= 0;
6722 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6729 PyObject
* obj0
= 0 ;
6730 PyObject
* obj1
= 0 ;
6731 char * kwnames
[] = {
6732 (char *) "self",(char *) "line", NULL
6735 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineState",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6736 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6737 if (!SWIG_IsOK(res1
)) {
6738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6740 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6741 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6742 if (!SWIG_IsOK(ecode2
)) {
6743 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "2"" of type '" "int""'");
6745 arg2
= static_cast< int >(val2
);
6747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6748 result
= (int)(arg1
)->GetLineState(arg2
);
6749 wxPyEndAllowThreads(__tstate
);
6750 if (PyErr_Occurred()) SWIG_fail
;
6752 resultobj
= SWIG_From_int(static_cast< int >(result
));
6759 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMaxLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6760 PyObject
*resultobj
= 0;
6761 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6765 PyObject
*swig_obj
[1] ;
6767 if (!args
) SWIG_fail
;
6769 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6770 if (!SWIG_IsOK(res1
)) {
6771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMaxLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6773 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6776 result
= (int)(arg1
)->GetMaxLineState();
6777 wxPyEndAllowThreads(__tstate
);
6778 if (PyErr_Occurred()) SWIG_fail
;
6780 resultobj
= SWIG_From_int(static_cast< int >(result
));
6787 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6788 PyObject
*resultobj
= 0;
6789 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6793 PyObject
*swig_obj
[1] ;
6795 if (!args
) SWIG_fail
;
6797 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6798 if (!SWIG_IsOK(res1
)) {
6799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6801 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6804 result
= (bool)(arg1
)->GetCaretLineVisible();
6805 wxPyEndAllowThreads(__tstate
);
6806 if (PyErr_Occurred()) SWIG_fail
;
6809 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6817 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6818 PyObject
*resultobj
= 0;
6819 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6825 PyObject
* obj0
= 0 ;
6826 PyObject
* obj1
= 0 ;
6827 char * kwnames
[] = {
6828 (char *) "self",(char *) "show", NULL
6831 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6832 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6833 if (!SWIG_IsOK(res1
)) {
6834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6836 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6837 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6838 if (!SWIG_IsOK(ecode2
)) {
6839 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "2"" of type '" "bool""'");
6841 arg2
= static_cast< bool >(val2
);
6843 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6844 (arg1
)->SetCaretLineVisible(arg2
);
6845 wxPyEndAllowThreads(__tstate
);
6846 if (PyErr_Occurred()) SWIG_fail
;
6848 resultobj
= SWIG_Py_Void();
6855 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6856 PyObject
*resultobj
= 0;
6857 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6861 PyObject
*swig_obj
[1] ;
6863 if (!args
) SWIG_fail
;
6865 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6866 if (!SWIG_IsOK(res1
)) {
6867 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6869 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6872 result
= (arg1
)->GetCaretLineBack();
6873 wxPyEndAllowThreads(__tstate
);
6874 if (PyErr_Occurred()) SWIG_fail
;
6876 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6883 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6884 PyObject
*resultobj
= 0;
6885 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6886 wxColour
*arg2
= 0 ;
6890 PyObject
* obj0
= 0 ;
6891 PyObject
* obj1
= 0 ;
6892 char * kwnames
[] = {
6893 (char *) "self",(char *) "back", NULL
6896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineBack",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6898 if (!SWIG_IsOK(res1
)) {
6899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6901 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6904 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
6907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6908 (arg1
)->SetCaretLineBack((wxColour
const &)*arg2
);
6909 wxPyEndAllowThreads(__tstate
);
6910 if (PyErr_Occurred()) SWIG_fail
;
6912 resultobj
= SWIG_Py_Void();
6919 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetChangeable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6920 PyObject
*resultobj
= 0;
6921 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6930 PyObject
* obj0
= 0 ;
6931 PyObject
* obj1
= 0 ;
6932 PyObject
* obj2
= 0 ;
6933 char * kwnames
[] = {
6934 (char *) "self",(char *) "style",(char *) "changeable", NULL
6937 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetChangeable",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6938 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6939 if (!SWIG_IsOK(res1
)) {
6940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6942 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6943 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6944 if (!SWIG_IsOK(ecode2
)) {
6945 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "2"" of type '" "int""'");
6947 arg2
= static_cast< int >(val2
);
6948 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6949 if (!SWIG_IsOK(ecode3
)) {
6950 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "3"" of type '" "bool""'");
6952 arg3
= static_cast< bool >(val3
);
6954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6955 (arg1
)->StyleSetChangeable(arg2
,arg3
);
6956 wxPyEndAllowThreads(__tstate
);
6957 if (PyErr_Occurred()) SWIG_fail
;
6959 resultobj
= SWIG_Py_Void();
6966 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6967 PyObject
*resultobj
= 0;
6968 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6970 wxString
*arg3
= 0 ;
6975 bool temp3
= false ;
6976 PyObject
* obj0
= 0 ;
6977 PyObject
* obj1
= 0 ;
6978 PyObject
* obj2
= 0 ;
6979 char * kwnames
[] = {
6980 (char *) "self",(char *) "lenEntered",(char *) "itemList", NULL
6983 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_AutoCompShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6984 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6985 if (!SWIG_IsOK(res1
)) {
6986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6988 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6989 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6990 if (!SWIG_IsOK(ecode2
)) {
6991 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "2"" of type '" "int""'");
6993 arg2
= static_cast< int >(val2
);
6995 arg3
= wxString_in_helper(obj2
);
6996 if (arg3
== NULL
) SWIG_fail
;
7000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7001 (arg1
)->AutoCompShow(arg2
,(wxString
const &)*arg3
);
7002 wxPyEndAllowThreads(__tstate
);
7003 if (PyErr_Occurred()) SWIG_fail
;
7005 resultobj
= SWIG_Py_Void();
7020 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7021 PyObject
*resultobj
= 0;
7022 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7025 PyObject
*swig_obj
[1] ;
7027 if (!args
) SWIG_fail
;
7029 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7030 if (!SWIG_IsOK(res1
)) {
7031 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7033 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7036 (arg1
)->AutoCompCancel();
7037 wxPyEndAllowThreads(__tstate
);
7038 if (PyErr_Occurred()) SWIG_fail
;
7040 resultobj
= SWIG_Py_Void();
7047 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7048 PyObject
*resultobj
= 0;
7049 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7053 PyObject
*swig_obj
[1] ;
7055 if (!args
) SWIG_fail
;
7057 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7058 if (!SWIG_IsOK(res1
)) {
7059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7061 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7064 result
= (bool)(arg1
)->AutoCompActive();
7065 wxPyEndAllowThreads(__tstate
);
7066 if (PyErr_Occurred()) SWIG_fail
;
7069 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7077 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompPosStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7078 PyObject
*resultobj
= 0;
7079 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7083 PyObject
*swig_obj
[1] ;
7085 if (!args
) SWIG_fail
;
7087 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7088 if (!SWIG_IsOK(res1
)) {
7089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompPosStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7091 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7094 result
= (int)(arg1
)->AutoCompPosStart();
7095 wxPyEndAllowThreads(__tstate
);
7096 if (PyErr_Occurred()) SWIG_fail
;
7098 resultobj
= SWIG_From_int(static_cast< int >(result
));
7105 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompComplete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7106 PyObject
*resultobj
= 0;
7107 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7110 PyObject
*swig_obj
[1] ;
7112 if (!args
) SWIG_fail
;
7114 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7115 if (!SWIG_IsOK(res1
)) {
7116 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompComplete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7118 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7121 (arg1
)->AutoCompComplete();
7122 wxPyEndAllowThreads(__tstate
);
7123 if (PyErr_Occurred()) SWIG_fail
;
7125 resultobj
= SWIG_Py_Void();
7132 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompStops(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7133 PyObject
*resultobj
= 0;
7134 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7135 wxString
*arg2
= 0 ;
7138 bool temp2
= false ;
7139 PyObject
* obj0
= 0 ;
7140 PyObject
* obj1
= 0 ;
7141 char * kwnames
[] = {
7142 (char *) "self",(char *) "characterSet", NULL
7145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompStops",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7146 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7147 if (!SWIG_IsOK(res1
)) {
7148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompStops" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7150 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7152 arg2
= wxString_in_helper(obj1
);
7153 if (arg2
== NULL
) SWIG_fail
;
7157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7158 (arg1
)->AutoCompStops((wxString
const &)*arg2
);
7159 wxPyEndAllowThreads(__tstate
);
7160 if (PyErr_Occurred()) SWIG_fail
;
7162 resultobj
= SWIG_Py_Void();
7177 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7178 PyObject
*resultobj
= 0;
7179 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7185 PyObject
* obj0
= 0 ;
7186 PyObject
* obj1
= 0 ;
7187 char * kwnames
[] = {
7188 (char *) "self",(char *) "separatorCharacter", NULL
7191 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7192 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7193 if (!SWIG_IsOK(res1
)) {
7194 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7196 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7197 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7198 if (!SWIG_IsOK(ecode2
)) {
7199 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "2"" of type '" "int""'");
7201 arg2
= static_cast< int >(val2
);
7203 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7204 (arg1
)->AutoCompSetSeparator(arg2
);
7205 wxPyEndAllowThreads(__tstate
);
7206 if (PyErr_Occurred()) SWIG_fail
;
7208 resultobj
= SWIG_Py_Void();
7215 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7216 PyObject
*resultobj
= 0;
7217 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7221 PyObject
*swig_obj
[1] ;
7223 if (!args
) SWIG_fail
;
7225 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7226 if (!SWIG_IsOK(res1
)) {
7227 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7229 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7231 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7232 result
= (int)(arg1
)->AutoCompGetSeparator();
7233 wxPyEndAllowThreads(__tstate
);
7234 if (PyErr_Occurred()) SWIG_fail
;
7236 resultobj
= SWIG_From_int(static_cast< int >(result
));
7243 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSelect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7244 PyObject
*resultobj
= 0;
7245 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7246 wxString
*arg2
= 0 ;
7249 bool temp2
= false ;
7250 PyObject
* obj0
= 0 ;
7251 PyObject
* obj1
= 0 ;
7252 char * kwnames
[] = {
7253 (char *) "self",(char *) "text", NULL
7256 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSelect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7257 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7258 if (!SWIG_IsOK(res1
)) {
7259 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSelect" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7261 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7263 arg2
= wxString_in_helper(obj1
);
7264 if (arg2
== NULL
) SWIG_fail
;
7268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7269 (arg1
)->AutoCompSelect((wxString
const &)*arg2
);
7270 wxPyEndAllowThreads(__tstate
);
7271 if (PyErr_Occurred()) SWIG_fail
;
7273 resultobj
= SWIG_Py_Void();
7288 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7289 PyObject
*resultobj
= 0;
7290 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7296 PyObject
* obj0
= 0 ;
7297 PyObject
* obj1
= 0 ;
7298 char * kwnames
[] = {
7299 (char *) "self",(char *) "cancel", NULL
7302 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetCancelAtStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7303 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7304 if (!SWIG_IsOK(res1
)) {
7305 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7307 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7308 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7309 if (!SWIG_IsOK(ecode2
)) {
7310 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "2"" of type '" "bool""'");
7312 arg2
= static_cast< bool >(val2
);
7314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7315 (arg1
)->AutoCompSetCancelAtStart(arg2
);
7316 wxPyEndAllowThreads(__tstate
);
7317 if (PyErr_Occurred()) SWIG_fail
;
7319 resultobj
= SWIG_Py_Void();
7326 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7327 PyObject
*resultobj
= 0;
7328 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7332 PyObject
*swig_obj
[1] ;
7334 if (!args
) SWIG_fail
;
7336 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7337 if (!SWIG_IsOK(res1
)) {
7338 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7340 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7343 result
= (bool)(arg1
)->AutoCompGetCancelAtStart();
7344 wxPyEndAllowThreads(__tstate
);
7345 if (PyErr_Occurred()) SWIG_fail
;
7348 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7356 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetFillUps(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7357 PyObject
*resultobj
= 0;
7358 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7359 wxString
*arg2
= 0 ;
7362 bool temp2
= false ;
7363 PyObject
* obj0
= 0 ;
7364 PyObject
* obj1
= 0 ;
7365 char * kwnames
[] = {
7366 (char *) "self",(char *) "characterSet", NULL
7369 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetFillUps",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7370 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7371 if (!SWIG_IsOK(res1
)) {
7372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetFillUps" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7374 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7376 arg2
= wxString_in_helper(obj1
);
7377 if (arg2
== NULL
) SWIG_fail
;
7381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7382 (arg1
)->AutoCompSetFillUps((wxString
const &)*arg2
);
7383 wxPyEndAllowThreads(__tstate
);
7384 if (PyErr_Occurred()) SWIG_fail
;
7386 resultobj
= SWIG_Py_Void();
7401 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7402 PyObject
*resultobj
= 0;
7403 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7409 PyObject
* obj0
= 0 ;
7410 PyObject
* obj1
= 0 ;
7411 char * kwnames
[] = {
7412 (char *) "self",(char *) "chooseSingle", NULL
7415 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetChooseSingle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7416 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7417 if (!SWIG_IsOK(res1
)) {
7418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7420 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7421 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7422 if (!SWIG_IsOK(ecode2
)) {
7423 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "2"" of type '" "bool""'");
7425 arg2
= static_cast< bool >(val2
);
7427 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7428 (arg1
)->AutoCompSetChooseSingle(arg2
);
7429 wxPyEndAllowThreads(__tstate
);
7430 if (PyErr_Occurred()) SWIG_fail
;
7432 resultobj
= SWIG_Py_Void();
7439 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7440 PyObject
*resultobj
= 0;
7441 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7445 PyObject
*swig_obj
[1] ;
7447 if (!args
) SWIG_fail
;
7449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7450 if (!SWIG_IsOK(res1
)) {
7451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7453 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7456 result
= (bool)(arg1
)->AutoCompGetChooseSingle();
7457 wxPyEndAllowThreads(__tstate
);
7458 if (PyErr_Occurred()) SWIG_fail
;
7461 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7469 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7470 PyObject
*resultobj
= 0;
7471 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7477 PyObject
* obj0
= 0 ;
7478 PyObject
* obj1
= 0 ;
7479 char * kwnames
[] = {
7480 (char *) "self",(char *) "ignoreCase", NULL
7483 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetIgnoreCase",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7484 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7485 if (!SWIG_IsOK(res1
)) {
7486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7488 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7489 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7490 if (!SWIG_IsOK(ecode2
)) {
7491 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "2"" of type '" "bool""'");
7493 arg2
= static_cast< bool >(val2
);
7495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7496 (arg1
)->AutoCompSetIgnoreCase(arg2
);
7497 wxPyEndAllowThreads(__tstate
);
7498 if (PyErr_Occurred()) SWIG_fail
;
7500 resultobj
= SWIG_Py_Void();
7507 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7508 PyObject
*resultobj
= 0;
7509 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7513 PyObject
*swig_obj
[1] ;
7515 if (!args
) SWIG_fail
;
7517 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7518 if (!SWIG_IsOK(res1
)) {
7519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7521 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7523 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7524 result
= (bool)(arg1
)->AutoCompGetIgnoreCase();
7525 wxPyEndAllowThreads(__tstate
);
7526 if (PyErr_Occurred()) SWIG_fail
;
7529 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7537 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UserListShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7538 PyObject
*resultobj
= 0;
7539 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7541 wxString
*arg3
= 0 ;
7546 bool temp3
= false ;
7547 PyObject
* obj0
= 0 ;
7548 PyObject
* obj1
= 0 ;
7549 PyObject
* obj2
= 0 ;
7550 char * kwnames
[] = {
7551 (char *) "self",(char *) "listType",(char *) "itemList", NULL
7554 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_UserListShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7555 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7556 if (!SWIG_IsOK(res1
)) {
7557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7559 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7560 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7561 if (!SWIG_IsOK(ecode2
)) {
7562 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "2"" of type '" "int""'");
7564 arg2
= static_cast< int >(val2
);
7566 arg3
= wxString_in_helper(obj2
);
7567 if (arg3
== NULL
) SWIG_fail
;
7571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7572 (arg1
)->UserListShow(arg2
,(wxString
const &)*arg3
);
7573 wxPyEndAllowThreads(__tstate
);
7574 if (PyErr_Occurred()) SWIG_fail
;
7576 resultobj
= SWIG_Py_Void();
7591 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7592 PyObject
*resultobj
= 0;
7593 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7599 PyObject
* obj0
= 0 ;
7600 PyObject
* obj1
= 0 ;
7601 char * kwnames
[] = {
7602 (char *) "self",(char *) "autoHide", NULL
7605 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetAutoHide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7606 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7607 if (!SWIG_IsOK(res1
)) {
7608 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7610 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7611 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7612 if (!SWIG_IsOK(ecode2
)) {
7613 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "2"" of type '" "bool""'");
7615 arg2
= static_cast< bool >(val2
);
7617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7618 (arg1
)->AutoCompSetAutoHide(arg2
);
7619 wxPyEndAllowThreads(__tstate
);
7620 if (PyErr_Occurred()) SWIG_fail
;
7622 resultobj
= SWIG_Py_Void();
7629 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7630 PyObject
*resultobj
= 0;
7631 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7635 PyObject
*swig_obj
[1] ;
7637 if (!args
) SWIG_fail
;
7639 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7640 if (!SWIG_IsOK(res1
)) {
7641 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7643 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7645 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7646 result
= (bool)(arg1
)->AutoCompGetAutoHide();
7647 wxPyEndAllowThreads(__tstate
);
7648 if (PyErr_Occurred()) SWIG_fail
;
7651 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7659 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7660 PyObject
*resultobj
= 0;
7661 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7667 PyObject
* obj0
= 0 ;
7668 PyObject
* obj1
= 0 ;
7669 char * kwnames
[] = {
7670 (char *) "self",(char *) "dropRestOfWord", NULL
7673 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetDropRestOfWord",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7674 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7675 if (!SWIG_IsOK(res1
)) {
7676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7678 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7679 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7680 if (!SWIG_IsOK(ecode2
)) {
7681 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "2"" of type '" "bool""'");
7683 arg2
= static_cast< bool >(val2
);
7685 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7686 (arg1
)->AutoCompSetDropRestOfWord(arg2
);
7687 wxPyEndAllowThreads(__tstate
);
7688 if (PyErr_Occurred()) SWIG_fail
;
7690 resultobj
= SWIG_Py_Void();
7697 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7698 PyObject
*resultobj
= 0;
7699 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7703 PyObject
*swig_obj
[1] ;
7705 if (!args
) SWIG_fail
;
7707 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7708 if (!SWIG_IsOK(res1
)) {
7709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7711 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7713 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7714 result
= (bool)(arg1
)->AutoCompGetDropRestOfWord();
7715 wxPyEndAllowThreads(__tstate
);
7716 if (PyErr_Occurred()) SWIG_fail
;
7719 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7727 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_RegisterImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7728 PyObject
*resultobj
= 0;
7729 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7731 wxBitmap
*arg3
= 0 ;
7738 PyObject
* obj0
= 0 ;
7739 PyObject
* obj1
= 0 ;
7740 PyObject
* obj2
= 0 ;
7741 char * kwnames
[] = {
7742 (char *) "self",(char *) "type",(char *) "bmp", NULL
7745 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_RegisterImage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7746 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7747 if (!SWIG_IsOK(res1
)) {
7748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7750 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7751 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7752 if (!SWIG_IsOK(ecode2
)) {
7753 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "2"" of type '" "int""'");
7755 arg2
= static_cast< int >(val2
);
7756 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
7757 if (!SWIG_IsOK(res3
)) {
7758 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7761 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7763 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
7765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7766 (arg1
)->RegisterImage(arg2
,(wxBitmap
const &)*arg3
);
7767 wxPyEndAllowThreads(__tstate
);
7768 if (PyErr_Occurred()) SWIG_fail
;
7770 resultobj
= SWIG_Py_Void();
7777 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearRegisteredImages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7778 PyObject
*resultobj
= 0;
7779 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7782 PyObject
*swig_obj
[1] ;
7784 if (!args
) SWIG_fail
;
7786 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7787 if (!SWIG_IsOK(res1
)) {
7788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearRegisteredImages" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7790 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7792 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7793 (arg1
)->ClearRegisteredImages();
7794 wxPyEndAllowThreads(__tstate
);
7795 if (PyErr_Occurred()) SWIG_fail
;
7797 resultobj
= SWIG_Py_Void();
7804 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7805 PyObject
*resultobj
= 0;
7806 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7810 PyObject
*swig_obj
[1] ;
7812 if (!args
) SWIG_fail
;
7814 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7815 if (!SWIG_IsOK(res1
)) {
7816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7818 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7820 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7821 result
= (int)(arg1
)->AutoCompGetTypeSeparator();
7822 wxPyEndAllowThreads(__tstate
);
7823 if (PyErr_Occurred()) SWIG_fail
;
7825 resultobj
= SWIG_From_int(static_cast< int >(result
));
7832 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7833 PyObject
*resultobj
= 0;
7834 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7840 PyObject
* obj0
= 0 ;
7841 PyObject
* obj1
= 0 ;
7842 char * kwnames
[] = {
7843 (char *) "self",(char *) "separatorCharacter", NULL
7846 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetTypeSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7847 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7848 if (!SWIG_IsOK(res1
)) {
7849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7851 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7852 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7853 if (!SWIG_IsOK(ecode2
)) {
7854 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "2"" of type '" "int""'");
7856 arg2
= static_cast< int >(val2
);
7858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7859 (arg1
)->AutoCompSetTypeSeparator(arg2
);
7860 wxPyEndAllowThreads(__tstate
);
7861 if (PyErr_Occurred()) SWIG_fail
;
7863 resultobj
= SWIG_Py_Void();
7870 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7871 PyObject
*resultobj
= 0;
7872 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7878 PyObject
* obj0
= 0 ;
7879 PyObject
* obj1
= 0 ;
7880 char * kwnames
[] = {
7881 (char *) "self",(char *) "characterCount", NULL
7884 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7885 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7886 if (!SWIG_IsOK(res1
)) {
7887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7889 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7890 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7891 if (!SWIG_IsOK(ecode2
)) {
7892 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "2"" of type '" "int""'");
7894 arg2
= static_cast< int >(val2
);
7896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7897 (arg1
)->AutoCompSetMaxWidth(arg2
);
7898 wxPyEndAllowThreads(__tstate
);
7899 if (PyErr_Occurred()) SWIG_fail
;
7901 resultobj
= SWIG_Py_Void();
7908 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7909 PyObject
*resultobj
= 0;
7910 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7914 PyObject
*swig_obj
[1] ;
7916 if (!args
) SWIG_fail
;
7918 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7919 if (!SWIG_IsOK(res1
)) {
7920 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7922 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7924 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7925 result
= (int)(arg1
)->AutoCompGetMaxWidth();
7926 wxPyEndAllowThreads(__tstate
);
7927 if (PyErr_Occurred()) SWIG_fail
;
7929 resultobj
= SWIG_From_int(static_cast< int >(result
));
7936 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7937 PyObject
*resultobj
= 0;
7938 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7944 PyObject
* obj0
= 0 ;
7945 PyObject
* obj1
= 0 ;
7946 char * kwnames
[] = {
7947 (char *) "self",(char *) "rowCount", NULL
7950 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7951 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7952 if (!SWIG_IsOK(res1
)) {
7953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7955 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7956 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7957 if (!SWIG_IsOK(ecode2
)) {
7958 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "2"" of type '" "int""'");
7960 arg2
= static_cast< int >(val2
);
7962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7963 (arg1
)->AutoCompSetMaxHeight(arg2
);
7964 wxPyEndAllowThreads(__tstate
);
7965 if (PyErr_Occurred()) SWIG_fail
;
7967 resultobj
= SWIG_Py_Void();
7974 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7975 PyObject
*resultobj
= 0;
7976 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7980 PyObject
*swig_obj
[1] ;
7982 if (!args
) SWIG_fail
;
7984 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7985 if (!SWIG_IsOK(res1
)) {
7986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7988 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7991 result
= (int)(arg1
)->AutoCompGetMaxHeight();
7992 wxPyEndAllowThreads(__tstate
);
7993 if (PyErr_Occurred()) SWIG_fail
;
7995 resultobj
= SWIG_From_int(static_cast< int >(result
));
8002 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8003 PyObject
*resultobj
= 0;
8004 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8010 PyObject
* obj0
= 0 ;
8011 PyObject
* obj1
= 0 ;
8012 char * kwnames
[] = {
8013 (char *) "self",(char *) "indentSize", NULL
8016 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8017 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8018 if (!SWIG_IsOK(res1
)) {
8019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8021 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8022 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8023 if (!SWIG_IsOK(ecode2
)) {
8024 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "2"" of type '" "int""'");
8026 arg2
= static_cast< int >(val2
);
8028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8029 (arg1
)->SetIndent(arg2
);
8030 wxPyEndAllowThreads(__tstate
);
8031 if (PyErr_Occurred()) SWIG_fail
;
8033 resultobj
= SWIG_Py_Void();
8040 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8041 PyObject
*resultobj
= 0;
8042 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8046 PyObject
*swig_obj
[1] ;
8048 if (!args
) SWIG_fail
;
8050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8051 if (!SWIG_IsOK(res1
)) {
8052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8054 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8057 result
= (int)(arg1
)->GetIndent();
8058 wxPyEndAllowThreads(__tstate
);
8059 if (PyErr_Occurred()) SWIG_fail
;
8061 resultobj
= SWIG_From_int(static_cast< int >(result
));
8068 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8069 PyObject
*resultobj
= 0;
8070 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8076 PyObject
* obj0
= 0 ;
8077 PyObject
* obj1
= 0 ;
8078 char * kwnames
[] = {
8079 (char *) "self",(char *) "useTabs", NULL
8082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseTabs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8084 if (!SWIG_IsOK(res1
)) {
8085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8087 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8088 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8089 if (!SWIG_IsOK(ecode2
)) {
8090 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "2"" of type '" "bool""'");
8092 arg2
= static_cast< bool >(val2
);
8094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8095 (arg1
)->SetUseTabs(arg2
);
8096 wxPyEndAllowThreads(__tstate
);
8097 if (PyErr_Occurred()) SWIG_fail
;
8099 resultobj
= SWIG_Py_Void();
8106 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8107 PyObject
*resultobj
= 0;
8108 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8112 PyObject
*swig_obj
[1] ;
8114 if (!args
) SWIG_fail
;
8116 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8117 if (!SWIG_IsOK(res1
)) {
8118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8120 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8123 result
= (bool)(arg1
)->GetUseTabs();
8124 wxPyEndAllowThreads(__tstate
);
8125 if (PyErr_Occurred()) SWIG_fail
;
8128 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8136 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8137 PyObject
*resultobj
= 0;
8138 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8147 PyObject
* obj0
= 0 ;
8148 PyObject
* obj1
= 0 ;
8149 PyObject
* obj2
= 0 ;
8150 char * kwnames
[] = {
8151 (char *) "self",(char *) "line",(char *) "indentSize", NULL
8154 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineIndentation",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8155 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8156 if (!SWIG_IsOK(res1
)) {
8157 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8159 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8160 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8161 if (!SWIG_IsOK(ecode2
)) {
8162 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8164 arg2
= static_cast< int >(val2
);
8165 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8166 if (!SWIG_IsOK(ecode3
)) {
8167 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "3"" of type '" "int""'");
8169 arg3
= static_cast< int >(val3
);
8171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8172 (arg1
)->SetLineIndentation(arg2
,arg3
);
8173 wxPyEndAllowThreads(__tstate
);
8174 if (PyErr_Occurred()) SWIG_fail
;
8176 resultobj
= SWIG_Py_Void();
8183 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8184 PyObject
*resultobj
= 0;
8185 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8192 PyObject
* obj0
= 0 ;
8193 PyObject
* obj1
= 0 ;
8194 char * kwnames
[] = {
8195 (char *) "self",(char *) "line", NULL
8198 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8199 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8200 if (!SWIG_IsOK(res1
)) {
8201 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8203 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8204 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8205 if (!SWIG_IsOK(ecode2
)) {
8206 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8208 arg2
= static_cast< int >(val2
);
8210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8211 result
= (int)(arg1
)->GetLineIndentation(arg2
);
8212 wxPyEndAllowThreads(__tstate
);
8213 if (PyErr_Occurred()) SWIG_fail
;
8215 resultobj
= SWIG_From_int(static_cast< int >(result
));
8222 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8223 PyObject
*resultobj
= 0;
8224 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8231 PyObject
* obj0
= 0 ;
8232 PyObject
* obj1
= 0 ;
8233 char * kwnames
[] = {
8234 (char *) "self",(char *) "line", NULL
8237 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8238 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8239 if (!SWIG_IsOK(res1
)) {
8240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8242 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8243 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8244 if (!SWIG_IsOK(ecode2
)) {
8245 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "2"" of type '" "int""'");
8247 arg2
= static_cast< int >(val2
);
8249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8250 result
= (int)(arg1
)->GetLineIndentPosition(arg2
);
8251 wxPyEndAllowThreads(__tstate
);
8252 if (PyErr_Occurred()) SWIG_fail
;
8254 resultobj
= SWIG_From_int(static_cast< int >(result
));
8261 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8262 PyObject
*resultobj
= 0;
8263 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8270 PyObject
* obj0
= 0 ;
8271 PyObject
* obj1
= 0 ;
8272 char * kwnames
[] = {
8273 (char *) "self",(char *) "pos", NULL
8276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8278 if (!SWIG_IsOK(res1
)) {
8279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8281 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8282 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8283 if (!SWIG_IsOK(ecode2
)) {
8284 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "2"" of type '" "int""'");
8286 arg2
= static_cast< int >(val2
);
8288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8289 result
= (int)(arg1
)->GetColumn(arg2
);
8290 wxPyEndAllowThreads(__tstate
);
8291 if (PyErr_Occurred()) SWIG_fail
;
8293 resultobj
= SWIG_From_int(static_cast< int >(result
));
8300 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8301 PyObject
*resultobj
= 0;
8302 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8308 PyObject
* obj0
= 0 ;
8309 PyObject
* obj1
= 0 ;
8310 char * kwnames
[] = {
8311 (char *) "self",(char *) "show", NULL
8314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseHorizontalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8315 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8316 if (!SWIG_IsOK(res1
)) {
8317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8319 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8320 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8321 if (!SWIG_IsOK(ecode2
)) {
8322 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "2"" of type '" "bool""'");
8324 arg2
= static_cast< bool >(val2
);
8326 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8327 (arg1
)->SetUseHorizontalScrollBar(arg2
);
8328 wxPyEndAllowThreads(__tstate
);
8329 if (PyErr_Occurred()) SWIG_fail
;
8331 resultobj
= SWIG_Py_Void();
8338 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8339 PyObject
*resultobj
= 0;
8340 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8344 PyObject
*swig_obj
[1] ;
8346 if (!args
) SWIG_fail
;
8348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8349 if (!SWIG_IsOK(res1
)) {
8350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8352 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8355 result
= (bool)(arg1
)->GetUseHorizontalScrollBar();
8356 wxPyEndAllowThreads(__tstate
);
8357 if (PyErr_Occurred()) SWIG_fail
;
8360 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8368 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8369 PyObject
*resultobj
= 0;
8370 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8376 PyObject
* obj0
= 0 ;
8377 PyObject
* obj1
= 0 ;
8378 char * kwnames
[] = {
8379 (char *) "self",(char *) "show", NULL
8382 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndentationGuides",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8383 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8384 if (!SWIG_IsOK(res1
)) {
8385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8387 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8388 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8389 if (!SWIG_IsOK(ecode2
)) {
8390 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "2"" of type '" "bool""'");
8392 arg2
= static_cast< bool >(val2
);
8394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8395 (arg1
)->SetIndentationGuides(arg2
);
8396 wxPyEndAllowThreads(__tstate
);
8397 if (PyErr_Occurred()) SWIG_fail
;
8399 resultobj
= SWIG_Py_Void();
8406 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8407 PyObject
*resultobj
= 0;
8408 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8412 PyObject
*swig_obj
[1] ;
8414 if (!args
) SWIG_fail
;
8416 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8417 if (!SWIG_IsOK(res1
)) {
8418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8420 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8423 result
= (bool)(arg1
)->GetIndentationGuides();
8424 wxPyEndAllowThreads(__tstate
);
8425 if (PyErr_Occurred()) SWIG_fail
;
8428 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8436 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8437 PyObject
*resultobj
= 0;
8438 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8444 PyObject
* obj0
= 0 ;
8445 PyObject
* obj1
= 0 ;
8446 char * kwnames
[] = {
8447 (char *) "self",(char *) "column", NULL
8450 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHighlightGuide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8451 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8452 if (!SWIG_IsOK(res1
)) {
8453 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8455 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8456 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8457 if (!SWIG_IsOK(ecode2
)) {
8458 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "2"" of type '" "int""'");
8460 arg2
= static_cast< int >(val2
);
8462 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8463 (arg1
)->SetHighlightGuide(arg2
);
8464 wxPyEndAllowThreads(__tstate
);
8465 if (PyErr_Occurred()) SWIG_fail
;
8467 resultobj
= SWIG_Py_Void();
8474 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8475 PyObject
*resultobj
= 0;
8476 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8480 PyObject
*swig_obj
[1] ;
8482 if (!args
) SWIG_fail
;
8484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8485 if (!SWIG_IsOK(res1
)) {
8486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8488 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8491 result
= (int)(arg1
)->GetHighlightGuide();
8492 wxPyEndAllowThreads(__tstate
);
8493 if (PyErr_Occurred()) SWIG_fail
;
8495 resultobj
= SWIG_From_int(static_cast< int >(result
));
8502 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8503 PyObject
*resultobj
= 0;
8504 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8511 PyObject
* obj0
= 0 ;
8512 PyObject
* obj1
= 0 ;
8513 char * kwnames
[] = {
8514 (char *) "self",(char *) "line", NULL
8517 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8518 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8519 if (!SWIG_IsOK(res1
)) {
8520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8522 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8523 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8524 if (!SWIG_IsOK(ecode2
)) {
8525 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "2"" of type '" "int""'");
8527 arg2
= static_cast< int >(val2
);
8529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8530 result
= (int)(arg1
)->GetLineEndPosition(arg2
);
8531 wxPyEndAllowThreads(__tstate
);
8532 if (PyErr_Occurred()) SWIG_fail
;
8534 resultobj
= SWIG_From_int(static_cast< int >(result
));
8541 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8542 PyObject
*resultobj
= 0;
8543 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8547 PyObject
*swig_obj
[1] ;
8549 if (!args
) SWIG_fail
;
8551 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8552 if (!SWIG_IsOK(res1
)) {
8553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8555 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8557 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8558 result
= (int)(arg1
)->GetCodePage();
8559 wxPyEndAllowThreads(__tstate
);
8560 if (PyErr_Occurred()) SWIG_fail
;
8562 resultobj
= SWIG_From_int(static_cast< int >(result
));
8569 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8570 PyObject
*resultobj
= 0;
8571 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8575 PyObject
*swig_obj
[1] ;
8577 if (!args
) SWIG_fail
;
8579 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8580 if (!SWIG_IsOK(res1
)) {
8581 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8583 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8585 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8586 result
= (arg1
)->GetCaretForeground();
8587 wxPyEndAllowThreads(__tstate
);
8588 if (PyErr_Occurred()) SWIG_fail
;
8590 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
8597 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8598 PyObject
*resultobj
= 0;
8599 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8603 PyObject
*swig_obj
[1] ;
8605 if (!args
) SWIG_fail
;
8607 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8608 if (!SWIG_IsOK(res1
)) {
8609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8611 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8613 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8614 result
= (bool)(arg1
)->GetReadOnly();
8615 wxPyEndAllowThreads(__tstate
);
8616 if (PyErr_Occurred()) SWIG_fail
;
8619 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8627 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8628 PyObject
*resultobj
= 0;
8629 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8635 PyObject
* obj0
= 0 ;
8636 PyObject
* obj1
= 0 ;
8637 char * kwnames
[] = {
8638 (char *) "self",(char *) "pos", NULL
8641 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCurrentPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8642 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8643 if (!SWIG_IsOK(res1
)) {
8644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8646 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8647 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8648 if (!SWIG_IsOK(ecode2
)) {
8649 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "2"" of type '" "int""'");
8651 arg2
= static_cast< int >(val2
);
8653 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8654 (arg1
)->SetCurrentPos(arg2
);
8655 wxPyEndAllowThreads(__tstate
);
8656 if (PyErr_Occurred()) SWIG_fail
;
8658 resultobj
= SWIG_Py_Void();
8665 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8666 PyObject
*resultobj
= 0;
8667 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8673 PyObject
* obj0
= 0 ;
8674 PyObject
* obj1
= 0 ;
8675 char * kwnames
[] = {
8676 (char *) "self",(char *) "pos", NULL
8679 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8680 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8681 if (!SWIG_IsOK(res1
)) {
8682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8684 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8685 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8686 if (!SWIG_IsOK(ecode2
)) {
8687 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "2"" of type '" "int""'");
8689 arg2
= static_cast< int >(val2
);
8691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8692 (arg1
)->SetSelectionStart(arg2
);
8693 wxPyEndAllowThreads(__tstate
);
8694 if (PyErr_Occurred()) SWIG_fail
;
8696 resultobj
= SWIG_Py_Void();
8703 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8704 PyObject
*resultobj
= 0;
8705 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8709 PyObject
*swig_obj
[1] ;
8711 if (!args
) SWIG_fail
;
8713 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8714 if (!SWIG_IsOK(res1
)) {
8715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8717 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8720 result
= (int)(arg1
)->GetSelectionStart();
8721 wxPyEndAllowThreads(__tstate
);
8722 if (PyErr_Occurred()) SWIG_fail
;
8724 resultobj
= SWIG_From_int(static_cast< int >(result
));
8731 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8732 PyObject
*resultobj
= 0;
8733 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8739 PyObject
* obj0
= 0 ;
8740 PyObject
* obj1
= 0 ;
8741 char * kwnames
[] = {
8742 (char *) "self",(char *) "pos", NULL
8745 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8746 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8747 if (!SWIG_IsOK(res1
)) {
8748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8750 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8751 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8752 if (!SWIG_IsOK(ecode2
)) {
8753 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "2"" of type '" "int""'");
8755 arg2
= static_cast< int >(val2
);
8757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8758 (arg1
)->SetSelectionEnd(arg2
);
8759 wxPyEndAllowThreads(__tstate
);
8760 if (PyErr_Occurred()) SWIG_fail
;
8762 resultobj
= SWIG_Py_Void();
8769 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8770 PyObject
*resultobj
= 0;
8771 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8775 PyObject
*swig_obj
[1] ;
8777 if (!args
) SWIG_fail
;
8779 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8780 if (!SWIG_IsOK(res1
)) {
8781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8783 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8786 result
= (int)(arg1
)->GetSelectionEnd();
8787 wxPyEndAllowThreads(__tstate
);
8788 if (PyErr_Occurred()) SWIG_fail
;
8790 resultobj
= SWIG_From_int(static_cast< int >(result
));
8797 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8798 PyObject
*resultobj
= 0;
8799 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8805 PyObject
* obj0
= 0 ;
8806 PyObject
* obj1
= 0 ;
8807 char * kwnames
[] = {
8808 (char *) "self",(char *) "magnification", NULL
8811 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintMagnification",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8812 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8813 if (!SWIG_IsOK(res1
)) {
8814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8816 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8817 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8818 if (!SWIG_IsOK(ecode2
)) {
8819 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "2"" of type '" "int""'");
8821 arg2
= static_cast< int >(val2
);
8823 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8824 (arg1
)->SetPrintMagnification(arg2
);
8825 wxPyEndAllowThreads(__tstate
);
8826 if (PyErr_Occurred()) SWIG_fail
;
8828 resultobj
= SWIG_Py_Void();
8835 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8836 PyObject
*resultobj
= 0;
8837 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8841 PyObject
*swig_obj
[1] ;
8843 if (!args
) SWIG_fail
;
8845 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8846 if (!SWIG_IsOK(res1
)) {
8847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8849 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8852 result
= (int)(arg1
)->GetPrintMagnification();
8853 wxPyEndAllowThreads(__tstate
);
8854 if (PyErr_Occurred()) SWIG_fail
;
8856 resultobj
= SWIG_From_int(static_cast< int >(result
));
8863 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8864 PyObject
*resultobj
= 0;
8865 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8871 PyObject
* obj0
= 0 ;
8872 PyObject
* obj1
= 0 ;
8873 char * kwnames
[] = {
8874 (char *) "self",(char *) "mode", NULL
8877 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintColourMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8878 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8879 if (!SWIG_IsOK(res1
)) {
8880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8883 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8884 if (!SWIG_IsOK(ecode2
)) {
8885 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "2"" of type '" "int""'");
8887 arg2
= static_cast< int >(val2
);
8889 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8890 (arg1
)->SetPrintColourMode(arg2
);
8891 wxPyEndAllowThreads(__tstate
);
8892 if (PyErr_Occurred()) SWIG_fail
;
8894 resultobj
= SWIG_Py_Void();
8901 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8902 PyObject
*resultobj
= 0;
8903 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8907 PyObject
*swig_obj
[1] ;
8909 if (!args
) SWIG_fail
;
8911 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8912 if (!SWIG_IsOK(res1
)) {
8913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8915 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8918 result
= (int)(arg1
)->GetPrintColourMode();
8919 wxPyEndAllowThreads(__tstate
);
8920 if (PyErr_Occurred()) SWIG_fail
;
8922 resultobj
= SWIG_From_int(static_cast< int >(result
));
8929 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8930 PyObject
*resultobj
= 0;
8931 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8934 wxString
*arg4
= 0 ;
8935 int arg5
= (int) 0 ;
8943 bool temp4
= false ;
8946 PyObject
* obj0
= 0 ;
8947 PyObject
* obj1
= 0 ;
8948 PyObject
* obj2
= 0 ;
8949 PyObject
* obj3
= 0 ;
8950 PyObject
* obj4
= 0 ;
8951 char * kwnames
[] = {
8952 (char *) "self",(char *) "minPos",(char *) "maxPos",(char *) "text",(char *) "flags", NULL
8955 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:StyledTextCtrl_FindText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8956 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8957 if (!SWIG_IsOK(res1
)) {
8958 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8960 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8961 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8962 if (!SWIG_IsOK(ecode2
)) {
8963 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "2"" of type '" "int""'");
8965 arg2
= static_cast< int >(val2
);
8966 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8967 if (!SWIG_IsOK(ecode3
)) {
8968 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "3"" of type '" "int""'");
8970 arg3
= static_cast< int >(val3
);
8972 arg4
= wxString_in_helper(obj3
);
8973 if (arg4
== NULL
) SWIG_fail
;
8977 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
8978 if (!SWIG_IsOK(ecode5
)) {
8979 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "5"" of type '" "int""'");
8981 arg5
= static_cast< int >(val5
);
8984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8985 result
= (int)(arg1
)->FindText(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
8986 wxPyEndAllowThreads(__tstate
);
8987 if (PyErr_Occurred()) SWIG_fail
;
8989 resultobj
= SWIG_From_int(static_cast< int >(result
));
9004 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormatRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9005 PyObject
*resultobj
= 0;
9006 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9010 wxDC
*arg5
= (wxDC
*) 0 ;
9011 wxDC
*arg6
= (wxDC
*) 0 ;
9031 PyObject
* obj0
= 0 ;
9032 PyObject
* obj1
= 0 ;
9033 PyObject
* obj2
= 0 ;
9034 PyObject
* obj3
= 0 ;
9035 PyObject
* obj4
= 0 ;
9036 PyObject
* obj5
= 0 ;
9037 PyObject
* obj6
= 0 ;
9038 PyObject
* obj7
= 0 ;
9039 char * kwnames
[] = {
9040 (char *) "self",(char *) "doDraw",(char *) "startPos",(char *) "endPos",(char *) "draw",(char *) "target",(char *) "renderRect",(char *) "pageRect", NULL
9043 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:StyledTextCtrl_FormatRange",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
9044 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9045 if (!SWIG_IsOK(res1
)) {
9046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9048 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9049 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9050 if (!SWIG_IsOK(ecode2
)) {
9051 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "2"" of type '" "bool""'");
9053 arg2
= static_cast< bool >(val2
);
9054 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9055 if (!SWIG_IsOK(ecode3
)) {
9056 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "3"" of type '" "int""'");
9058 arg3
= static_cast< int >(val3
);
9059 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9060 if (!SWIG_IsOK(ecode4
)) {
9061 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "4"" of type '" "int""'");
9063 arg4
= static_cast< int >(val4
);
9064 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxDC
, 0 | 0 );
9065 if (!SWIG_IsOK(res5
)) {
9066 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "5"" of type '" "wxDC *""'");
9068 arg5
= reinterpret_cast< wxDC
* >(argp5
);
9069 res6
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxDC
, 0 | 0 );
9070 if (!SWIG_IsOK(res6
)) {
9071 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "6"" of type '" "wxDC *""'");
9073 arg6
= reinterpret_cast< wxDC
* >(argp6
);
9075 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxRect
, 0 | 0);
9076 if (!SWIG_IsOK(res7
)) {
9077 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9080 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9082 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp7
);
9084 if (SWIG_IsNewObj(res7
)) delete temp
;
9088 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxRect
, 0 | 0);
9089 if (!SWIG_IsOK(res8
)) {
9090 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9093 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9095 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp8
);
9097 if (SWIG_IsNewObj(res8
)) delete temp
;
9101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9102 result
= (int)(arg1
)->FormatRange(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
9103 wxPyEndAllowThreads(__tstate
);
9104 if (PyErr_Occurred()) SWIG_fail
;
9106 resultobj
= SWIG_From_int(static_cast< int >(result
));
9113 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFirstVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9114 PyObject
*resultobj
= 0;
9115 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9119 PyObject
*swig_obj
[1] ;
9121 if (!args
) SWIG_fail
;
9123 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9124 if (!SWIG_IsOK(res1
)) {
9125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9127 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9130 result
= (int)(arg1
)->GetFirstVisibleLine();
9131 wxPyEndAllowThreads(__tstate
);
9132 if (PyErr_Occurred()) SWIG_fail
;
9134 resultobj
= SWIG_From_int(static_cast< int >(result
));
9141 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9142 PyObject
*resultobj
= 0;
9143 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9150 PyObject
* obj0
= 0 ;
9151 PyObject
* obj1
= 0 ;
9152 char * kwnames
[] = {
9153 (char *) "self",(char *) "line", NULL
9156 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9157 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9158 if (!SWIG_IsOK(res1
)) {
9159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9161 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9162 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9163 if (!SWIG_IsOK(ecode2
)) {
9164 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "2"" of type '" "int""'");
9166 arg2
= static_cast< int >(val2
);
9168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9169 result
= (arg1
)->GetLine(arg2
);
9170 wxPyEndAllowThreads(__tstate
);
9171 if (PyErr_Occurred()) SWIG_fail
;
9175 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9177 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9186 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9187 PyObject
*resultobj
= 0;
9188 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9192 PyObject
*swig_obj
[1] ;
9194 if (!args
) SWIG_fail
;
9196 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9197 if (!SWIG_IsOK(res1
)) {
9198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9200 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9203 result
= (int)(arg1
)->GetLineCount();
9204 wxPyEndAllowThreads(__tstate
);
9205 if (PyErr_Occurred()) SWIG_fail
;
9207 resultobj
= SWIG_From_int(static_cast< int >(result
));
9214 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9215 PyObject
*resultobj
= 0;
9216 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9222 PyObject
* obj0
= 0 ;
9223 PyObject
* obj1
= 0 ;
9224 char * kwnames
[] = {
9225 (char *) "self",(char *) "pixelWidth", NULL
9228 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9229 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9230 if (!SWIG_IsOK(res1
)) {
9231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9234 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9235 if (!SWIG_IsOK(ecode2
)) {
9236 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "2"" of type '" "int""'");
9238 arg2
= static_cast< int >(val2
);
9240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9241 (arg1
)->SetMarginLeft(arg2
);
9242 wxPyEndAllowThreads(__tstate
);
9243 if (PyErr_Occurred()) SWIG_fail
;
9245 resultobj
= SWIG_Py_Void();
9252 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9253 PyObject
*resultobj
= 0;
9254 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9258 PyObject
*swig_obj
[1] ;
9260 if (!args
) SWIG_fail
;
9262 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9263 if (!SWIG_IsOK(res1
)) {
9264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9266 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9269 result
= (int)(arg1
)->GetMarginLeft();
9270 wxPyEndAllowThreads(__tstate
);
9271 if (PyErr_Occurred()) SWIG_fail
;
9273 resultobj
= SWIG_From_int(static_cast< int >(result
));
9280 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9281 PyObject
*resultobj
= 0;
9282 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9288 PyObject
* obj0
= 0 ;
9289 PyObject
* obj1
= 0 ;
9290 char * kwnames
[] = {
9291 (char *) "self",(char *) "pixelWidth", NULL
9294 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9295 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9296 if (!SWIG_IsOK(res1
)) {
9297 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9299 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9300 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9301 if (!SWIG_IsOK(ecode2
)) {
9302 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "2"" of type '" "int""'");
9304 arg2
= static_cast< int >(val2
);
9306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9307 (arg1
)->SetMarginRight(arg2
);
9308 wxPyEndAllowThreads(__tstate
);
9309 if (PyErr_Occurred()) SWIG_fail
;
9311 resultobj
= SWIG_Py_Void();
9318 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9319 PyObject
*resultobj
= 0;
9320 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9324 PyObject
*swig_obj
[1] ;
9326 if (!args
) SWIG_fail
;
9328 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9329 if (!SWIG_IsOK(res1
)) {
9330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9332 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9334 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9335 result
= (int)(arg1
)->GetMarginRight();
9336 wxPyEndAllowThreads(__tstate
);
9337 if (PyErr_Occurred()) SWIG_fail
;
9339 resultobj
= SWIG_From_int(static_cast< int >(result
));
9346 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModify(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9347 PyObject
*resultobj
= 0;
9348 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9352 PyObject
*swig_obj
[1] ;
9354 if (!args
) SWIG_fail
;
9356 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9357 if (!SWIG_IsOK(res1
)) {
9358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModify" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9360 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9362 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9363 result
= (bool)(arg1
)->GetModify();
9364 wxPyEndAllowThreads(__tstate
);
9365 if (PyErr_Occurred()) SWIG_fail
;
9368 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9376 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9377 PyObject
*resultobj
= 0;
9378 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9387 PyObject
* obj0
= 0 ;
9388 PyObject
* obj1
= 0 ;
9389 PyObject
* obj2
= 0 ;
9390 char * kwnames
[] = {
9391 (char *) "self",(char *) "start",(char *) "end", NULL
9394 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9395 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9396 if (!SWIG_IsOK(res1
)) {
9397 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9399 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9400 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9401 if (!SWIG_IsOK(ecode2
)) {
9402 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "2"" of type '" "int""'");
9404 arg2
= static_cast< int >(val2
);
9405 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9406 if (!SWIG_IsOK(ecode3
)) {
9407 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "3"" of type '" "int""'");
9409 arg3
= static_cast< int >(val3
);
9411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9412 (arg1
)->SetSelection(arg2
,arg3
);
9413 wxPyEndAllowThreads(__tstate
);
9414 if (PyErr_Occurred()) SWIG_fail
;
9416 resultobj
= SWIG_Py_Void();
9423 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9424 PyObject
*resultobj
= 0;
9425 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9429 PyObject
*swig_obj
[1] ;
9431 if (!args
) SWIG_fail
;
9433 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9434 if (!SWIG_IsOK(res1
)) {
9435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9437 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9440 result
= (arg1
)->GetSelectedText();
9441 wxPyEndAllowThreads(__tstate
);
9442 if (PyErr_Occurred()) SWIG_fail
;
9446 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9448 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9457 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9458 PyObject
*resultobj
= 0;
9459 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9469 PyObject
* obj0
= 0 ;
9470 PyObject
* obj1
= 0 ;
9471 PyObject
* obj2
= 0 ;
9472 char * kwnames
[] = {
9473 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
9476 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9477 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9478 if (!SWIG_IsOK(res1
)) {
9479 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9481 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9482 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9483 if (!SWIG_IsOK(ecode2
)) {
9484 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "2"" of type '" "int""'");
9486 arg2
= static_cast< int >(val2
);
9487 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9488 if (!SWIG_IsOK(ecode3
)) {
9489 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "3"" of type '" "int""'");
9491 arg3
= static_cast< int >(val3
);
9493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9494 result
= (arg1
)->GetTextRange(arg2
,arg3
);
9495 wxPyEndAllowThreads(__tstate
);
9496 if (PyErr_Occurred()) SWIG_fail
;
9500 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9502 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9511 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9512 PyObject
*resultobj
= 0;
9513 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9519 PyObject
* obj0
= 0 ;
9520 PyObject
* obj1
= 0 ;
9521 char * kwnames
[] = {
9522 (char *) "self",(char *) "normal", NULL
9525 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_HideSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9526 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9527 if (!SWIG_IsOK(res1
)) {
9528 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9530 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9531 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9532 if (!SWIG_IsOK(ecode2
)) {
9533 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "2"" of type '" "bool""'");
9535 arg2
= static_cast< bool >(val2
);
9537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9538 (arg1
)->HideSelection(arg2
);
9539 wxPyEndAllowThreads(__tstate
);
9540 if (PyErr_Occurred()) SWIG_fail
;
9542 resultobj
= SWIG_Py_Void();
9549 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9550 PyObject
*resultobj
= 0;
9551 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9558 PyObject
* obj0
= 0 ;
9559 PyObject
* obj1
= 0 ;
9560 char * kwnames
[] = {
9561 (char *) "self",(char *) "pos", NULL
9564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9566 if (!SWIG_IsOK(res1
)) {
9567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9569 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9570 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9571 if (!SWIG_IsOK(ecode2
)) {
9572 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "2"" of type '" "int""'");
9574 arg2
= static_cast< int >(val2
);
9576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9577 result
= (int)(arg1
)->LineFromPosition(arg2
);
9578 wxPyEndAllowThreads(__tstate
);
9579 if (PyErr_Occurred()) SWIG_fail
;
9581 resultobj
= SWIG_From_int(static_cast< int >(result
));
9588 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9589 PyObject
*resultobj
= 0;
9590 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9597 PyObject
* obj0
= 0 ;
9598 PyObject
* obj1
= 0 ;
9599 char * kwnames
[] = {
9600 (char *) "self",(char *) "line", NULL
9603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9605 if (!SWIG_IsOK(res1
)) {
9606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9608 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9609 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9610 if (!SWIG_IsOK(ecode2
)) {
9611 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "2"" of type '" "int""'");
9613 arg2
= static_cast< int >(val2
);
9615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9616 result
= (int)(arg1
)->PositionFromLine(arg2
);
9617 wxPyEndAllowThreads(__tstate
);
9618 if (PyErr_Occurred()) SWIG_fail
;
9620 resultobj
= SWIG_From_int(static_cast< int >(result
));
9627 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScroll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9628 PyObject
*resultobj
= 0;
9629 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9638 PyObject
* obj0
= 0 ;
9639 PyObject
* obj1
= 0 ;
9640 PyObject
* obj2
= 0 ;
9641 char * kwnames
[] = {
9642 (char *) "self",(char *) "columns",(char *) "lines", NULL
9645 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_LineScroll",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9646 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9647 if (!SWIG_IsOK(res1
)) {
9648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9650 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9651 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9652 if (!SWIG_IsOK(ecode2
)) {
9653 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "2"" of type '" "int""'");
9655 arg2
= static_cast< int >(val2
);
9656 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9657 if (!SWIG_IsOK(ecode3
)) {
9658 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "3"" of type '" "int""'");
9660 arg3
= static_cast< int >(val3
);
9662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9663 (arg1
)->LineScroll(arg2
,arg3
);
9664 wxPyEndAllowThreads(__tstate
);
9665 if (PyErr_Occurred()) SWIG_fail
;
9667 resultobj
= SWIG_Py_Void();
9674 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureCaretVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9675 PyObject
*resultobj
= 0;
9676 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9679 PyObject
*swig_obj
[1] ;
9681 if (!args
) SWIG_fail
;
9683 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9684 if (!SWIG_IsOK(res1
)) {
9685 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureCaretVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9687 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9690 (arg1
)->EnsureCaretVisible();
9691 wxPyEndAllowThreads(__tstate
);
9692 if (PyErr_Occurred()) SWIG_fail
;
9694 resultobj
= SWIG_Py_Void();
9701 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9702 PyObject
*resultobj
= 0;
9703 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9704 wxString
*arg2
= 0 ;
9707 bool temp2
= false ;
9708 PyObject
* obj0
= 0 ;
9709 PyObject
* obj1
= 0 ;
9710 char * kwnames
[] = {
9711 (char *) "self",(char *) "text", NULL
9714 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9715 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9716 if (!SWIG_IsOK(res1
)) {
9717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9719 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9721 arg2
= wxString_in_helper(obj1
);
9722 if (arg2
== NULL
) SWIG_fail
;
9726 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9727 (arg1
)->ReplaceSelection((wxString
const &)*arg2
);
9728 wxPyEndAllowThreads(__tstate
);
9729 if (PyErr_Occurred()) SWIG_fail
;
9731 resultobj
= SWIG_Py_Void();
9746 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9747 PyObject
*resultobj
= 0;
9748 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9754 PyObject
* obj0
= 0 ;
9755 PyObject
* obj1
= 0 ;
9756 char * kwnames
[] = {
9757 (char *) "self",(char *) "readOnly", NULL
9760 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetReadOnly",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9761 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9762 if (!SWIG_IsOK(res1
)) {
9763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9765 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9766 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9767 if (!SWIG_IsOK(ecode2
)) {
9768 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "2"" of type '" "bool""'");
9770 arg2
= static_cast< bool >(val2
);
9772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9773 (arg1
)->SetReadOnly(arg2
);
9774 wxPyEndAllowThreads(__tstate
);
9775 if (PyErr_Occurred()) SWIG_fail
;
9777 resultobj
= SWIG_Py_Void();
9784 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanPaste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9785 PyObject
*resultobj
= 0;
9786 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9790 PyObject
*swig_obj
[1] ;
9792 if (!args
) SWIG_fail
;
9794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9795 if (!SWIG_IsOK(res1
)) {
9796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanPaste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9798 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9801 result
= (bool)(arg1
)->CanPaste();
9802 wxPyEndAllowThreads(__tstate
);
9803 if (PyErr_Occurred()) SWIG_fail
;
9806 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9814 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanUndo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9815 PyObject
*resultobj
= 0;
9816 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9820 PyObject
*swig_obj
[1] ;
9822 if (!args
) SWIG_fail
;
9824 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9825 if (!SWIG_IsOK(res1
)) {
9826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanUndo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9828 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9831 result
= (bool)(arg1
)->CanUndo();
9832 wxPyEndAllowThreads(__tstate
);
9833 if (PyErr_Occurred()) SWIG_fail
;
9836 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9844 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EmptyUndoBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9845 PyObject
*resultobj
= 0;
9846 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9849 PyObject
*swig_obj
[1] ;
9851 if (!args
) SWIG_fail
;
9853 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9854 if (!SWIG_IsOK(res1
)) {
9855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EmptyUndoBuffer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9857 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9859 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9860 (arg1
)->EmptyUndoBuffer();
9861 wxPyEndAllowThreads(__tstate
);
9862 if (PyErr_Occurred()) SWIG_fail
;
9864 resultobj
= SWIG_Py_Void();
9871 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Undo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9872 PyObject
*resultobj
= 0;
9873 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9876 PyObject
*swig_obj
[1] ;
9878 if (!args
) SWIG_fail
;
9880 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9881 if (!SWIG_IsOK(res1
)) {
9882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Undo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9884 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9888 wxPyEndAllowThreads(__tstate
);
9889 if (PyErr_Occurred()) SWIG_fail
;
9891 resultobj
= SWIG_Py_Void();
9898 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9899 PyObject
*resultobj
= 0;
9900 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9903 PyObject
*swig_obj
[1] ;
9905 if (!args
) SWIG_fail
;
9907 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9908 if (!SWIG_IsOK(res1
)) {
9909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9911 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9913 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9915 wxPyEndAllowThreads(__tstate
);
9916 if (PyErr_Occurred()) SWIG_fail
;
9918 resultobj
= SWIG_Py_Void();
9925 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Copy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9926 PyObject
*resultobj
= 0;
9927 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9930 PyObject
*swig_obj
[1] ;
9932 if (!args
) SWIG_fail
;
9934 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9935 if (!SWIG_IsOK(res1
)) {
9936 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Copy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9938 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9942 wxPyEndAllowThreads(__tstate
);
9943 if (PyErr_Occurred()) SWIG_fail
;
9945 resultobj
= SWIG_Py_Void();
9952 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Paste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9953 PyObject
*resultobj
= 0;
9954 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9957 PyObject
*swig_obj
[1] ;
9959 if (!args
) SWIG_fail
;
9961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9962 if (!SWIG_IsOK(res1
)) {
9963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Paste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9965 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9969 wxPyEndAllowThreads(__tstate
);
9970 if (PyErr_Occurred()) SWIG_fail
;
9972 resultobj
= SWIG_Py_Void();
9979 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9980 PyObject
*resultobj
= 0;
9981 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9984 PyObject
*swig_obj
[1] ;
9986 if (!args
) SWIG_fail
;
9988 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9989 if (!SWIG_IsOK(res1
)) {
9990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Clear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9992 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9996 wxPyEndAllowThreads(__tstate
);
9997 if (PyErr_Occurred()) SWIG_fail
;
9999 resultobj
= SWIG_Py_Void();
10006 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10007 PyObject
*resultobj
= 0;
10008 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10009 wxString
*arg2
= 0 ;
10012 bool temp2
= false ;
10013 PyObject
* obj0
= 0 ;
10014 PyObject
* obj1
= 0 ;
10015 char * kwnames
[] = {
10016 (char *) "self",(char *) "text", NULL
10019 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10020 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10021 if (!SWIG_IsOK(res1
)) {
10022 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10024 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10026 arg2
= wxString_in_helper(obj1
);
10027 if (arg2
== NULL
) SWIG_fail
;
10031 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10032 (arg1
)->SetText((wxString
const &)*arg2
);
10033 wxPyEndAllowThreads(__tstate
);
10034 if (PyErr_Occurred()) SWIG_fail
;
10036 resultobj
= SWIG_Py_Void();
10051 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10052 PyObject
*resultobj
= 0;
10053 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10057 PyObject
*swig_obj
[1] ;
10059 if (!args
) SWIG_fail
;
10060 swig_obj
[0] = args
;
10061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10062 if (!SWIG_IsOK(res1
)) {
10063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10068 result
= (arg1
)->GetText();
10069 wxPyEndAllowThreads(__tstate
);
10070 if (PyErr_Occurred()) SWIG_fail
;
10074 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10076 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10085 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10086 PyObject
*resultobj
= 0;
10087 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10091 PyObject
*swig_obj
[1] ;
10093 if (!args
) SWIG_fail
;
10094 swig_obj
[0] = args
;
10095 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10096 if (!SWIG_IsOK(res1
)) {
10097 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10099 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10102 result
= (int)(arg1
)->GetTextLength();
10103 wxPyEndAllowThreads(__tstate
);
10104 if (PyErr_Occurred()) SWIG_fail
;
10106 resultobj
= SWIG_From_int(static_cast< int >(result
));
10113 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10114 PyObject
*resultobj
= 0;
10115 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10121 PyObject
* obj0
= 0 ;
10122 PyObject
* obj1
= 0 ;
10123 char * kwnames
[] = {
10124 (char *) "self",(char *) "overtype", NULL
10127 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetOvertype",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10128 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10129 if (!SWIG_IsOK(res1
)) {
10130 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10132 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10133 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
10134 if (!SWIG_IsOK(ecode2
)) {
10135 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "2"" of type '" "bool""'");
10137 arg2
= static_cast< bool >(val2
);
10139 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10140 (arg1
)->SetOvertype(arg2
);
10141 wxPyEndAllowThreads(__tstate
);
10142 if (PyErr_Occurred()) SWIG_fail
;
10144 resultobj
= SWIG_Py_Void();
10151 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10152 PyObject
*resultobj
= 0;
10153 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10157 PyObject
*swig_obj
[1] ;
10159 if (!args
) SWIG_fail
;
10160 swig_obj
[0] = args
;
10161 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10162 if (!SWIG_IsOK(res1
)) {
10163 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10165 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10168 result
= (bool)(arg1
)->GetOvertype();
10169 wxPyEndAllowThreads(__tstate
);
10170 if (PyErr_Occurred()) SWIG_fail
;
10173 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10181 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10182 PyObject
*resultobj
= 0;
10183 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10189 PyObject
* obj0
= 0 ;
10190 PyObject
* obj1
= 0 ;
10191 char * kwnames
[] = {
10192 (char *) "self",(char *) "pixelWidth", NULL
10195 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10196 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10197 if (!SWIG_IsOK(res1
)) {
10198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10200 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10201 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10202 if (!SWIG_IsOK(ecode2
)) {
10203 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "2"" of type '" "int""'");
10205 arg2
= static_cast< int >(val2
);
10207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10208 (arg1
)->SetCaretWidth(arg2
);
10209 wxPyEndAllowThreads(__tstate
);
10210 if (PyErr_Occurred()) SWIG_fail
;
10212 resultobj
= SWIG_Py_Void();
10219 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10220 PyObject
*resultobj
= 0;
10221 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10225 PyObject
*swig_obj
[1] ;
10227 if (!args
) SWIG_fail
;
10228 swig_obj
[0] = args
;
10229 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10230 if (!SWIG_IsOK(res1
)) {
10231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10236 result
= (int)(arg1
)->GetCaretWidth();
10237 wxPyEndAllowThreads(__tstate
);
10238 if (PyErr_Occurred()) SWIG_fail
;
10240 resultobj
= SWIG_From_int(static_cast< int >(result
));
10247 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10248 PyObject
*resultobj
= 0;
10249 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10255 PyObject
* obj0
= 0 ;
10256 PyObject
* obj1
= 0 ;
10257 char * kwnames
[] = {
10258 (char *) "self",(char *) "pos", NULL
10261 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10262 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10263 if (!SWIG_IsOK(res1
)) {
10264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10266 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10267 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10268 if (!SWIG_IsOK(ecode2
)) {
10269 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "2"" of type '" "int""'");
10271 arg2
= static_cast< int >(val2
);
10273 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10274 (arg1
)->SetTargetStart(arg2
);
10275 wxPyEndAllowThreads(__tstate
);
10276 if (PyErr_Occurred()) SWIG_fail
;
10278 resultobj
= SWIG_Py_Void();
10285 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10286 PyObject
*resultobj
= 0;
10287 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10291 PyObject
*swig_obj
[1] ;
10293 if (!args
) SWIG_fail
;
10294 swig_obj
[0] = args
;
10295 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10296 if (!SWIG_IsOK(res1
)) {
10297 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10299 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10301 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10302 result
= (int)(arg1
)->GetTargetStart();
10303 wxPyEndAllowThreads(__tstate
);
10304 if (PyErr_Occurred()) SWIG_fail
;
10306 resultobj
= SWIG_From_int(static_cast< int >(result
));
10313 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10314 PyObject
*resultobj
= 0;
10315 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10321 PyObject
* obj0
= 0 ;
10322 PyObject
* obj1
= 0 ;
10323 char * kwnames
[] = {
10324 (char *) "self",(char *) "pos", NULL
10327 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10328 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10329 if (!SWIG_IsOK(res1
)) {
10330 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10332 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10333 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10334 if (!SWIG_IsOK(ecode2
)) {
10335 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "2"" of type '" "int""'");
10337 arg2
= static_cast< int >(val2
);
10339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10340 (arg1
)->SetTargetEnd(arg2
);
10341 wxPyEndAllowThreads(__tstate
);
10342 if (PyErr_Occurred()) SWIG_fail
;
10344 resultobj
= SWIG_Py_Void();
10351 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10352 PyObject
*resultobj
= 0;
10353 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10357 PyObject
*swig_obj
[1] ;
10359 if (!args
) SWIG_fail
;
10360 swig_obj
[0] = args
;
10361 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10362 if (!SWIG_IsOK(res1
)) {
10363 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10365 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10368 result
= (int)(arg1
)->GetTargetEnd();
10369 wxPyEndAllowThreads(__tstate
);
10370 if (PyErr_Occurred()) SWIG_fail
;
10372 resultobj
= SWIG_From_int(static_cast< int >(result
));
10379 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10380 PyObject
*resultobj
= 0;
10381 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10382 wxString
*arg2
= 0 ;
10386 bool temp2
= false ;
10387 PyObject
* obj0
= 0 ;
10388 PyObject
* obj1
= 0 ;
10389 char * kwnames
[] = {
10390 (char *) "self",(char *) "text", NULL
10393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10395 if (!SWIG_IsOK(res1
)) {
10396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10398 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10400 arg2
= wxString_in_helper(obj1
);
10401 if (arg2
== NULL
) SWIG_fail
;
10405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10406 result
= (int)(arg1
)->ReplaceTarget((wxString
const &)*arg2
);
10407 wxPyEndAllowThreads(__tstate
);
10408 if (PyErr_Occurred()) SWIG_fail
;
10410 resultobj
= SWIG_From_int(static_cast< int >(result
));
10425 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTargetRE(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10426 PyObject
*resultobj
= 0;
10427 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10428 wxString
*arg2
= 0 ;
10432 bool temp2
= false ;
10433 PyObject
* obj0
= 0 ;
10434 PyObject
* obj1
= 0 ;
10435 char * kwnames
[] = {
10436 (char *) "self",(char *) "text", NULL
10439 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTargetRE",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10440 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10441 if (!SWIG_IsOK(res1
)) {
10442 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTargetRE" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10444 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10446 arg2
= wxString_in_helper(obj1
);
10447 if (arg2
== NULL
) SWIG_fail
;
10451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10452 result
= (int)(arg1
)->ReplaceTargetRE((wxString
const &)*arg2
);
10453 wxPyEndAllowThreads(__tstate
);
10454 if (PyErr_Occurred()) SWIG_fail
;
10456 resultobj
= SWIG_From_int(static_cast< int >(result
));
10471 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchInTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10472 PyObject
*resultobj
= 0;
10473 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10474 wxString
*arg2
= 0 ;
10478 bool temp2
= false ;
10479 PyObject
* obj0
= 0 ;
10480 PyObject
* obj1
= 0 ;
10481 char * kwnames
[] = {
10482 (char *) "self",(char *) "text", NULL
10485 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SearchInTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10486 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10487 if (!SWIG_IsOK(res1
)) {
10488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchInTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10490 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10492 arg2
= wxString_in_helper(obj1
);
10493 if (arg2
== NULL
) SWIG_fail
;
10497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10498 result
= (int)(arg1
)->SearchInTarget((wxString
const &)*arg2
);
10499 wxPyEndAllowThreads(__tstate
);
10500 if (PyErr_Occurred()) SWIG_fail
;
10502 resultobj
= SWIG_From_int(static_cast< int >(result
));
10517 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10518 PyObject
*resultobj
= 0;
10519 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10525 PyObject
* obj0
= 0 ;
10526 PyObject
* obj1
= 0 ;
10527 char * kwnames
[] = {
10528 (char *) "self",(char *) "flags", NULL
10531 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSearchFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10532 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10533 if (!SWIG_IsOK(res1
)) {
10534 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10536 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10537 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10538 if (!SWIG_IsOK(ecode2
)) {
10539 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "2"" of type '" "int""'");
10541 arg2
= static_cast< int >(val2
);
10543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10544 (arg1
)->SetSearchFlags(arg2
);
10545 wxPyEndAllowThreads(__tstate
);
10546 if (PyErr_Occurred()) SWIG_fail
;
10548 resultobj
= SWIG_Py_Void();
10555 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10556 PyObject
*resultobj
= 0;
10557 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10561 PyObject
*swig_obj
[1] ;
10563 if (!args
) SWIG_fail
;
10564 swig_obj
[0] = args
;
10565 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10566 if (!SWIG_IsOK(res1
)) {
10567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10569 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10572 result
= (int)(arg1
)->GetSearchFlags();
10573 wxPyEndAllowThreads(__tstate
);
10574 if (PyErr_Occurred()) SWIG_fail
;
10576 resultobj
= SWIG_From_int(static_cast< int >(result
));
10583 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10584 PyObject
*resultobj
= 0;
10585 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10587 wxString
*arg3
= 0 ;
10592 bool temp3
= false ;
10593 PyObject
* obj0
= 0 ;
10594 PyObject
* obj1
= 0 ;
10595 PyObject
* obj2
= 0 ;
10596 char * kwnames
[] = {
10597 (char *) "self",(char *) "pos",(char *) "definition", NULL
10600 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10601 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10602 if (!SWIG_IsOK(res1
)) {
10603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10605 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10606 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10607 if (!SWIG_IsOK(ecode2
)) {
10608 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "2"" of type '" "int""'");
10610 arg2
= static_cast< int >(val2
);
10612 arg3
= wxString_in_helper(obj2
);
10613 if (arg3
== NULL
) SWIG_fail
;
10617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10618 (arg1
)->CallTipShow(arg2
,(wxString
const &)*arg3
);
10619 wxPyEndAllowThreads(__tstate
);
10620 if (PyErr_Occurred()) SWIG_fail
;
10622 resultobj
= SWIG_Py_Void();
10637 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10638 PyObject
*resultobj
= 0;
10639 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10642 PyObject
*swig_obj
[1] ;
10644 if (!args
) SWIG_fail
;
10645 swig_obj
[0] = args
;
10646 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10647 if (!SWIG_IsOK(res1
)) {
10648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10650 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10653 (arg1
)->CallTipCancel();
10654 wxPyEndAllowThreads(__tstate
);
10655 if (PyErr_Occurred()) SWIG_fail
;
10657 resultobj
= SWIG_Py_Void();
10664 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10665 PyObject
*resultobj
= 0;
10666 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10670 PyObject
*swig_obj
[1] ;
10672 if (!args
) SWIG_fail
;
10673 swig_obj
[0] = args
;
10674 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10675 if (!SWIG_IsOK(res1
)) {
10676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10678 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10681 result
= (bool)(arg1
)->CallTipActive();
10682 wxPyEndAllowThreads(__tstate
);
10683 if (PyErr_Occurred()) SWIG_fail
;
10686 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10694 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipPosAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10695 PyObject
*resultobj
= 0;
10696 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10700 PyObject
*swig_obj
[1] ;
10702 if (!args
) SWIG_fail
;
10703 swig_obj
[0] = args
;
10704 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10705 if (!SWIG_IsOK(res1
)) {
10706 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipPosAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10708 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10711 result
= (int)(arg1
)->CallTipPosAtStart();
10712 wxPyEndAllowThreads(__tstate
);
10713 if (PyErr_Occurred()) SWIG_fail
;
10715 resultobj
= SWIG_From_int(static_cast< int >(result
));
10722 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10723 PyObject
*resultobj
= 0;
10724 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10733 PyObject
* obj0
= 0 ;
10734 PyObject
* obj1
= 0 ;
10735 PyObject
* obj2
= 0 ;
10736 char * kwnames
[] = {
10737 (char *) "self",(char *) "start",(char *) "end", NULL
10740 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipSetHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10741 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10742 if (!SWIG_IsOK(res1
)) {
10743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10745 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10746 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10747 if (!SWIG_IsOK(ecode2
)) {
10748 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "2"" of type '" "int""'");
10750 arg2
= static_cast< int >(val2
);
10751 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10752 if (!SWIG_IsOK(ecode3
)) {
10753 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "3"" of type '" "int""'");
10755 arg3
= static_cast< int >(val3
);
10757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10758 (arg1
)->CallTipSetHighlight(arg2
,arg3
);
10759 wxPyEndAllowThreads(__tstate
);
10760 if (PyErr_Occurred()) SWIG_fail
;
10762 resultobj
= SWIG_Py_Void();
10769 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10770 PyObject
*resultobj
= 0;
10771 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10772 wxColour
*arg2
= 0 ;
10776 PyObject
* obj0
= 0 ;
10777 PyObject
* obj1
= 0 ;
10778 char * kwnames
[] = {
10779 (char *) "self",(char *) "back", NULL
10782 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10783 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10784 if (!SWIG_IsOK(res1
)) {
10785 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10787 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10790 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10793 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10794 (arg1
)->CallTipSetBackground((wxColour
const &)*arg2
);
10795 wxPyEndAllowThreads(__tstate
);
10796 if (PyErr_Occurred()) SWIG_fail
;
10798 resultobj
= SWIG_Py_Void();
10805 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10806 PyObject
*resultobj
= 0;
10807 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10808 wxColour
*arg2
= 0 ;
10812 PyObject
* obj0
= 0 ;
10813 PyObject
* obj1
= 0 ;
10814 char * kwnames
[] = {
10815 (char *) "self",(char *) "fore", NULL
10818 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10819 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10820 if (!SWIG_IsOK(res1
)) {
10821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10823 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10826 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10830 (arg1
)->CallTipSetForeground((wxColour
const &)*arg2
);
10831 wxPyEndAllowThreads(__tstate
);
10832 if (PyErr_Occurred()) SWIG_fail
;
10834 resultobj
= SWIG_Py_Void();
10841 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForegroundHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10842 PyObject
*resultobj
= 0;
10843 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10844 wxColour
*arg2
= 0 ;
10848 PyObject
* obj0
= 0 ;
10849 PyObject
* obj1
= 0 ;
10850 char * kwnames
[] = {
10851 (char *) "self",(char *) "fore", NULL
10854 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForegroundHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10855 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10856 if (!SWIG_IsOK(res1
)) {
10857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForegroundHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10859 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10862 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10866 (arg1
)->CallTipSetForegroundHighlight((wxColour
const &)*arg2
);
10867 wxPyEndAllowThreads(__tstate
);
10868 if (PyErr_Occurred()) SWIG_fail
;
10870 resultobj
= SWIG_Py_Void();
10877 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VisibleFromDocLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10878 PyObject
*resultobj
= 0;
10879 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10886 PyObject
* obj0
= 0 ;
10887 PyObject
* obj1
= 0 ;
10888 char * kwnames
[] = {
10889 (char *) "self",(char *) "line", NULL
10892 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_VisibleFromDocLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10893 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10894 if (!SWIG_IsOK(res1
)) {
10895 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10897 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10898 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10899 if (!SWIG_IsOK(ecode2
)) {
10900 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "2"" of type '" "int""'");
10902 arg2
= static_cast< int >(val2
);
10904 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10905 result
= (int)(arg1
)->VisibleFromDocLine(arg2
);
10906 wxPyEndAllowThreads(__tstate
);
10907 if (PyErr_Occurred()) SWIG_fail
;
10909 resultobj
= SWIG_From_int(static_cast< int >(result
));
10916 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocLineFromVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10917 PyObject
*resultobj
= 0;
10918 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10925 PyObject
* obj0
= 0 ;
10926 PyObject
* obj1
= 0 ;
10927 char * kwnames
[] = {
10928 (char *) "self",(char *) "lineDisplay", NULL
10931 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_DocLineFromVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10932 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10933 if (!SWIG_IsOK(res1
)) {
10934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10936 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10937 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10938 if (!SWIG_IsOK(ecode2
)) {
10939 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "2"" of type '" "int""'");
10941 arg2
= static_cast< int >(val2
);
10943 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10944 result
= (int)(arg1
)->DocLineFromVisible(arg2
);
10945 wxPyEndAllowThreads(__tstate
);
10946 if (PyErr_Occurred()) SWIG_fail
;
10948 resultobj
= SWIG_From_int(static_cast< int >(result
));
10955 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WrapCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10956 PyObject
*resultobj
= 0;
10957 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10964 PyObject
* obj0
= 0 ;
10965 PyObject
* obj1
= 0 ;
10966 char * kwnames
[] = {
10967 (char *) "self",(char *) "line", NULL
10970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_WrapCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10971 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10972 if (!SWIG_IsOK(res1
)) {
10973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10975 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10976 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10977 if (!SWIG_IsOK(ecode2
)) {
10978 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "2"" of type '" "int""'");
10980 arg2
= static_cast< int >(val2
);
10982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10983 result
= (int)(arg1
)->WrapCount(arg2
);
10984 wxPyEndAllowThreads(__tstate
);
10985 if (PyErr_Occurred()) SWIG_fail
;
10987 resultobj
= SWIG_From_int(static_cast< int >(result
));
10994 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10995 PyObject
*resultobj
= 0;
10996 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11005 PyObject
* obj0
= 0 ;
11006 PyObject
* obj1
= 0 ;
11007 PyObject
* obj2
= 0 ;
11008 char * kwnames
[] = {
11009 (char *) "self",(char *) "line",(char *) "level", NULL
11012 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldLevel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11013 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11014 if (!SWIG_IsOK(res1
)) {
11015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11017 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11018 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11019 if (!SWIG_IsOK(ecode2
)) {
11020 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11022 arg2
= static_cast< int >(val2
);
11023 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11024 if (!SWIG_IsOK(ecode3
)) {
11025 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "3"" of type '" "int""'");
11027 arg3
= static_cast< int >(val3
);
11029 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11030 (arg1
)->SetFoldLevel(arg2
,arg3
);
11031 wxPyEndAllowThreads(__tstate
);
11032 if (PyErr_Occurred()) SWIG_fail
;
11034 resultobj
= SWIG_Py_Void();
11041 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11042 PyObject
*resultobj
= 0;
11043 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11050 PyObject
* obj0
= 0 ;
11051 PyObject
* obj1
= 0 ;
11052 char * kwnames
[] = {
11053 (char *) "self",(char *) "line", NULL
11056 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldLevel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11057 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11058 if (!SWIG_IsOK(res1
)) {
11059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11061 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11062 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11063 if (!SWIG_IsOK(ecode2
)) {
11064 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11066 arg2
= static_cast< int >(val2
);
11068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11069 result
= (int)(arg1
)->GetFoldLevel(arg2
);
11070 wxPyEndAllowThreads(__tstate
);
11071 if (PyErr_Occurred()) SWIG_fail
;
11073 resultobj
= SWIG_From_int(static_cast< int >(result
));
11080 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11081 PyObject
*resultobj
= 0;
11082 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11092 PyObject
* obj0
= 0 ;
11093 PyObject
* obj1
= 0 ;
11094 PyObject
* obj2
= 0 ;
11095 char * kwnames
[] = {
11096 (char *) "self",(char *) "line",(char *) "level", NULL
11099 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetLastChild",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11100 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11101 if (!SWIG_IsOK(res1
)) {
11102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11104 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11105 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11106 if (!SWIG_IsOK(ecode2
)) {
11107 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "2"" of type '" "int""'");
11109 arg2
= static_cast< int >(val2
);
11110 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11111 if (!SWIG_IsOK(ecode3
)) {
11112 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "3"" of type '" "int""'");
11114 arg3
= static_cast< int >(val3
);
11116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11117 result
= (int)(arg1
)->GetLastChild(arg2
,arg3
);
11118 wxPyEndAllowThreads(__tstate
);
11119 if (PyErr_Occurred()) SWIG_fail
;
11121 resultobj
= SWIG_From_int(static_cast< int >(result
));
11128 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldParent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11129 PyObject
*resultobj
= 0;
11130 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11137 PyObject
* obj0
= 0 ;
11138 PyObject
* obj1
= 0 ;
11139 char * kwnames
[] = {
11140 (char *) "self",(char *) "line", NULL
11143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldParent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11144 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11145 if (!SWIG_IsOK(res1
)) {
11146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11148 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11149 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11150 if (!SWIG_IsOK(ecode2
)) {
11151 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "2"" of type '" "int""'");
11153 arg2
= static_cast< int >(val2
);
11155 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11156 result
= (int)(arg1
)->GetFoldParent(arg2
);
11157 wxPyEndAllowThreads(__tstate
);
11158 if (PyErr_Occurred()) SWIG_fail
;
11160 resultobj
= SWIG_From_int(static_cast< int >(result
));
11167 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ShowLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11168 PyObject
*resultobj
= 0;
11169 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11178 PyObject
* obj0
= 0 ;
11179 PyObject
* obj1
= 0 ;
11180 PyObject
* obj2
= 0 ;
11181 char * kwnames
[] = {
11182 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11185 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_ShowLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11186 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11187 if (!SWIG_IsOK(res1
)) {
11188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11190 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11191 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11192 if (!SWIG_IsOK(ecode2
)) {
11193 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "2"" of type '" "int""'");
11195 arg2
= static_cast< int >(val2
);
11196 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11197 if (!SWIG_IsOK(ecode3
)) {
11198 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "3"" of type '" "int""'");
11200 arg3
= static_cast< int >(val3
);
11202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11203 (arg1
)->ShowLines(arg2
,arg3
);
11204 wxPyEndAllowThreads(__tstate
);
11205 if (PyErr_Occurred()) SWIG_fail
;
11207 resultobj
= SWIG_Py_Void();
11214 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11215 PyObject
*resultobj
= 0;
11216 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11225 PyObject
* obj0
= 0 ;
11226 PyObject
* obj1
= 0 ;
11227 PyObject
* obj2
= 0 ;
11228 char * kwnames
[] = {
11229 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_HideLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11234 if (!SWIG_IsOK(res1
)) {
11235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11239 if (!SWIG_IsOK(ecode2
)) {
11240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "2"" of type '" "int""'");
11242 arg2
= static_cast< int >(val2
);
11243 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11244 if (!SWIG_IsOK(ecode3
)) {
11245 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "3"" of type '" "int""'");
11247 arg3
= static_cast< int >(val3
);
11249 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11250 (arg1
)->HideLines(arg2
,arg3
);
11251 wxPyEndAllowThreads(__tstate
);
11252 if (PyErr_Occurred()) SWIG_fail
;
11254 resultobj
= SWIG_Py_Void();
11261 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11262 PyObject
*resultobj
= 0;
11263 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11270 PyObject
* obj0
= 0 ;
11271 PyObject
* obj1
= 0 ;
11272 char * kwnames
[] = {
11273 (char *) "self",(char *) "line", NULL
11276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11278 if (!SWIG_IsOK(res1
)) {
11279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11281 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11282 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11283 if (!SWIG_IsOK(ecode2
)) {
11284 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "2"" of type '" "int""'");
11286 arg2
= static_cast< int >(val2
);
11288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11289 result
= (bool)(arg1
)->GetLineVisible(arg2
);
11290 wxPyEndAllowThreads(__tstate
);
11291 if (PyErr_Occurred()) SWIG_fail
;
11294 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11302 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11303 PyObject
*resultobj
= 0;
11304 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11313 PyObject
* obj0
= 0 ;
11314 PyObject
* obj1
= 0 ;
11315 PyObject
* obj2
= 0 ;
11316 char * kwnames
[] = {
11317 (char *) "self",(char *) "line",(char *) "expanded", NULL
11320 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldExpanded",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11321 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11322 if (!SWIG_IsOK(res1
)) {
11323 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11325 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11326 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11327 if (!SWIG_IsOK(ecode2
)) {
11328 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11330 arg2
= static_cast< int >(val2
);
11331 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11332 if (!SWIG_IsOK(ecode3
)) {
11333 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "3"" of type '" "bool""'");
11335 arg3
= static_cast< bool >(val3
);
11337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11338 (arg1
)->SetFoldExpanded(arg2
,arg3
);
11339 wxPyEndAllowThreads(__tstate
);
11340 if (PyErr_Occurred()) SWIG_fail
;
11342 resultobj
= SWIG_Py_Void();
11349 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11350 PyObject
*resultobj
= 0;
11351 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11358 PyObject
* obj0
= 0 ;
11359 PyObject
* obj1
= 0 ;
11360 char * kwnames
[] = {
11361 (char *) "self",(char *) "line", NULL
11364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11365 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11366 if (!SWIG_IsOK(res1
)) {
11367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11369 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11370 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11371 if (!SWIG_IsOK(ecode2
)) {
11372 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11374 arg2
= static_cast< int >(val2
);
11376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11377 result
= (bool)(arg1
)->GetFoldExpanded(arg2
);
11378 wxPyEndAllowThreads(__tstate
);
11379 if (PyErr_Occurred()) SWIG_fail
;
11382 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11390 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleFold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11391 PyObject
*resultobj
= 0;
11392 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11398 PyObject
* obj0
= 0 ;
11399 PyObject
* obj1
= 0 ;
11400 char * kwnames
[] = {
11401 (char *) "self",(char *) "line", NULL
11404 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ToggleFold",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11405 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11406 if (!SWIG_IsOK(res1
)) {
11407 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11409 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11410 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11411 if (!SWIG_IsOK(ecode2
)) {
11412 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "2"" of type '" "int""'");
11414 arg2
= static_cast< int >(val2
);
11416 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11417 (arg1
)->ToggleFold(arg2
);
11418 wxPyEndAllowThreads(__tstate
);
11419 if (PyErr_Occurred()) SWIG_fail
;
11421 resultobj
= SWIG_Py_Void();
11428 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11429 PyObject
*resultobj
= 0;
11430 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11436 PyObject
* obj0
= 0 ;
11437 PyObject
* obj1
= 0 ;
11438 char * kwnames
[] = {
11439 (char *) "self",(char *) "line", NULL
11442 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11443 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11444 if (!SWIG_IsOK(res1
)) {
11445 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11447 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11448 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11449 if (!SWIG_IsOK(ecode2
)) {
11450 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "2"" of type '" "int""'");
11452 arg2
= static_cast< int >(val2
);
11454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11455 (arg1
)->EnsureVisible(arg2
);
11456 wxPyEndAllowThreads(__tstate
);
11457 if (PyErr_Occurred()) SWIG_fail
;
11459 resultobj
= SWIG_Py_Void();
11466 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11467 PyObject
*resultobj
= 0;
11468 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11474 PyObject
* obj0
= 0 ;
11475 PyObject
* obj1
= 0 ;
11476 char * kwnames
[] = {
11477 (char *) "self",(char *) "flags", NULL
11480 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetFoldFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11481 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11482 if (!SWIG_IsOK(res1
)) {
11483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11485 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11486 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11487 if (!SWIG_IsOK(ecode2
)) {
11488 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "2"" of type '" "int""'");
11490 arg2
= static_cast< int >(val2
);
11492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11493 (arg1
)->SetFoldFlags(arg2
);
11494 wxPyEndAllowThreads(__tstate
);
11495 if (PyErr_Occurred()) SWIG_fail
;
11497 resultobj
= SWIG_Py_Void();
11504 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11505 PyObject
*resultobj
= 0;
11506 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11512 PyObject
* obj0
= 0 ;
11513 PyObject
* obj1
= 0 ;
11514 char * kwnames
[] = {
11515 (char *) "self",(char *) "line", NULL
11518 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisibleEnforcePolicy",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11519 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11520 if (!SWIG_IsOK(res1
)) {
11521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11523 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11524 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11525 if (!SWIG_IsOK(ecode2
)) {
11526 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "2"" of type '" "int""'");
11528 arg2
= static_cast< int >(val2
);
11530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11531 (arg1
)->EnsureVisibleEnforcePolicy(arg2
);
11532 wxPyEndAllowThreads(__tstate
);
11533 if (PyErr_Occurred()) SWIG_fail
;
11535 resultobj
= SWIG_Py_Void();
11542 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11543 PyObject
*resultobj
= 0;
11544 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11550 PyObject
* obj0
= 0 ;
11551 PyObject
* obj1
= 0 ;
11552 char * kwnames
[] = {
11553 (char *) "self",(char *) "tabIndents", NULL
11556 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11557 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11558 if (!SWIG_IsOK(res1
)) {
11559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11561 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11562 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11563 if (!SWIG_IsOK(ecode2
)) {
11564 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "2"" of type '" "bool""'");
11566 arg2
= static_cast< bool >(val2
);
11568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11569 (arg1
)->SetTabIndents(arg2
);
11570 wxPyEndAllowThreads(__tstate
);
11571 if (PyErr_Occurred()) SWIG_fail
;
11573 resultobj
= SWIG_Py_Void();
11580 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11581 PyObject
*resultobj
= 0;
11582 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11586 PyObject
*swig_obj
[1] ;
11588 if (!args
) SWIG_fail
;
11589 swig_obj
[0] = args
;
11590 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11591 if (!SWIG_IsOK(res1
)) {
11592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11594 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11597 result
= (bool)(arg1
)->GetTabIndents();
11598 wxPyEndAllowThreads(__tstate
);
11599 if (PyErr_Occurred()) SWIG_fail
;
11602 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11610 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11611 PyObject
*resultobj
= 0;
11612 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11618 PyObject
* obj0
= 0 ;
11619 PyObject
* obj1
= 0 ;
11620 char * kwnames
[] = {
11621 (char *) "self",(char *) "bsUnIndents", NULL
11624 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBackSpaceUnIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11625 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11626 if (!SWIG_IsOK(res1
)) {
11627 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11629 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11630 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11631 if (!SWIG_IsOK(ecode2
)) {
11632 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "2"" of type '" "bool""'");
11634 arg2
= static_cast< bool >(val2
);
11636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11637 (arg1
)->SetBackSpaceUnIndents(arg2
);
11638 wxPyEndAllowThreads(__tstate
);
11639 if (PyErr_Occurred()) SWIG_fail
;
11641 resultobj
= SWIG_Py_Void();
11648 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11649 PyObject
*resultobj
= 0;
11650 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11654 PyObject
*swig_obj
[1] ;
11656 if (!args
) SWIG_fail
;
11657 swig_obj
[0] = args
;
11658 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11659 if (!SWIG_IsOK(res1
)) {
11660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11662 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11665 result
= (bool)(arg1
)->GetBackSpaceUnIndents();
11666 wxPyEndAllowThreads(__tstate
);
11667 if (PyErr_Occurred()) SWIG_fail
;
11670 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11678 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11679 PyObject
*resultobj
= 0;
11680 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11686 PyObject
* obj0
= 0 ;
11687 PyObject
* obj1
= 0 ;
11688 char * kwnames
[] = {
11689 (char *) "self",(char *) "periodMilliseconds", NULL
11692 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDwellTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11693 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11694 if (!SWIG_IsOK(res1
)) {
11695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11697 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11698 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11699 if (!SWIG_IsOK(ecode2
)) {
11700 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "2"" of type '" "int""'");
11702 arg2
= static_cast< int >(val2
);
11704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11705 (arg1
)->SetMouseDwellTime(arg2
);
11706 wxPyEndAllowThreads(__tstate
);
11707 if (PyErr_Occurred()) SWIG_fail
;
11709 resultobj
= SWIG_Py_Void();
11716 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11717 PyObject
*resultobj
= 0;
11718 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11722 PyObject
*swig_obj
[1] ;
11724 if (!args
) SWIG_fail
;
11725 swig_obj
[0] = args
;
11726 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11727 if (!SWIG_IsOK(res1
)) {
11728 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11730 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11732 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11733 result
= (int)(arg1
)->GetMouseDwellTime();
11734 wxPyEndAllowThreads(__tstate
);
11735 if (PyErr_Occurred()) SWIG_fail
;
11737 resultobj
= SWIG_From_int(static_cast< int >(result
));
11744 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11745 PyObject
*resultobj
= 0;
11746 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11756 PyObject
* obj0
= 0 ;
11757 PyObject
* obj1
= 0 ;
11758 PyObject
* obj2
= 0 ;
11759 char * kwnames
[] = {
11760 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11763 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordStartPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11764 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11765 if (!SWIG_IsOK(res1
)) {
11766 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11768 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11769 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11770 if (!SWIG_IsOK(ecode2
)) {
11771 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "2"" of type '" "int""'");
11773 arg2
= static_cast< int >(val2
);
11774 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11775 if (!SWIG_IsOK(ecode3
)) {
11776 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "3"" of type '" "bool""'");
11778 arg3
= static_cast< bool >(val3
);
11780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11781 result
= (int)(arg1
)->WordStartPosition(arg2
,arg3
);
11782 wxPyEndAllowThreads(__tstate
);
11783 if (PyErr_Occurred()) SWIG_fail
;
11785 resultobj
= SWIG_From_int(static_cast< int >(result
));
11792 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11793 PyObject
*resultobj
= 0;
11794 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11804 PyObject
* obj0
= 0 ;
11805 PyObject
* obj1
= 0 ;
11806 PyObject
* obj2
= 0 ;
11807 char * kwnames
[] = {
11808 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11811 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordEndPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11812 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11813 if (!SWIG_IsOK(res1
)) {
11814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11816 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11817 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11818 if (!SWIG_IsOK(ecode2
)) {
11819 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "2"" of type '" "int""'");
11821 arg2
= static_cast< int >(val2
);
11822 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11823 if (!SWIG_IsOK(ecode3
)) {
11824 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "3"" of type '" "bool""'");
11826 arg3
= static_cast< bool >(val3
);
11828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11829 result
= (int)(arg1
)->WordEndPosition(arg2
,arg3
);
11830 wxPyEndAllowThreads(__tstate
);
11831 if (PyErr_Occurred()) SWIG_fail
;
11833 resultobj
= SWIG_From_int(static_cast< int >(result
));
11840 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11841 PyObject
*resultobj
= 0;
11842 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11848 PyObject
* obj0
= 0 ;
11849 PyObject
* obj1
= 0 ;
11850 char * kwnames
[] = {
11851 (char *) "self",(char *) "mode", NULL
11854 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11855 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11856 if (!SWIG_IsOK(res1
)) {
11857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11859 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11860 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11861 if (!SWIG_IsOK(ecode2
)) {
11862 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "2"" of type '" "int""'");
11864 arg2
= static_cast< int >(val2
);
11866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11867 (arg1
)->SetWrapMode(arg2
);
11868 wxPyEndAllowThreads(__tstate
);
11869 if (PyErr_Occurred()) SWIG_fail
;
11871 resultobj
= SWIG_Py_Void();
11878 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11879 PyObject
*resultobj
= 0;
11880 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11884 PyObject
*swig_obj
[1] ;
11886 if (!args
) SWIG_fail
;
11887 swig_obj
[0] = args
;
11888 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11889 if (!SWIG_IsOK(res1
)) {
11890 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11892 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11895 result
= (int)(arg1
)->GetWrapMode();
11896 wxPyEndAllowThreads(__tstate
);
11897 if (PyErr_Occurred()) SWIG_fail
;
11899 resultobj
= SWIG_From_int(static_cast< int >(result
));
11906 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11907 PyObject
*resultobj
= 0;
11908 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11914 PyObject
* obj0
= 0 ;
11915 PyObject
* obj1
= 0 ;
11916 char * kwnames
[] = {
11917 (char *) "self",(char *) "wrapVisualFlags", NULL
11920 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11921 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11922 if (!SWIG_IsOK(res1
)) {
11923 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11925 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11926 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11927 if (!SWIG_IsOK(ecode2
)) {
11928 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "2"" of type '" "int""'");
11930 arg2
= static_cast< int >(val2
);
11932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11933 (arg1
)->SetWrapVisualFlags(arg2
);
11934 wxPyEndAllowThreads(__tstate
);
11935 if (PyErr_Occurred()) SWIG_fail
;
11937 resultobj
= SWIG_Py_Void();
11944 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11945 PyObject
*resultobj
= 0;
11946 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11950 PyObject
*swig_obj
[1] ;
11952 if (!args
) SWIG_fail
;
11953 swig_obj
[0] = args
;
11954 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11955 if (!SWIG_IsOK(res1
)) {
11956 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11958 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11961 result
= (int)(arg1
)->GetWrapVisualFlags();
11962 wxPyEndAllowThreads(__tstate
);
11963 if (PyErr_Occurred()) SWIG_fail
;
11965 resultobj
= SWIG_From_int(static_cast< int >(result
));
11972 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11973 PyObject
*resultobj
= 0;
11974 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11980 PyObject
* obj0
= 0 ;
11981 PyObject
* obj1
= 0 ;
11982 char * kwnames
[] = {
11983 (char *) "self",(char *) "wrapVisualFlagsLocation", NULL
11986 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlagsLocation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11987 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11988 if (!SWIG_IsOK(res1
)) {
11989 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11991 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11992 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11993 if (!SWIG_IsOK(ecode2
)) {
11994 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "2"" of type '" "int""'");
11996 arg2
= static_cast< int >(val2
);
11998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11999 (arg1
)->SetWrapVisualFlagsLocation(arg2
);
12000 wxPyEndAllowThreads(__tstate
);
12001 if (PyErr_Occurred()) SWIG_fail
;
12003 resultobj
= SWIG_Py_Void();
12010 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12011 PyObject
*resultobj
= 0;
12012 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12016 PyObject
*swig_obj
[1] ;
12018 if (!args
) SWIG_fail
;
12019 swig_obj
[0] = args
;
12020 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12021 if (!SWIG_IsOK(res1
)) {
12022 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12024 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12027 result
= (int)(arg1
)->GetWrapVisualFlagsLocation();
12028 wxPyEndAllowThreads(__tstate
);
12029 if (PyErr_Occurred()) SWIG_fail
;
12031 resultobj
= SWIG_From_int(static_cast< int >(result
));
12038 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12039 PyObject
*resultobj
= 0;
12040 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12046 PyObject
* obj0
= 0 ;
12047 PyObject
* obj1
= 0 ;
12048 char * kwnames
[] = {
12049 (char *) "self",(char *) "indent", NULL
12052 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapStartIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12053 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12054 if (!SWIG_IsOK(res1
)) {
12055 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12057 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12058 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12059 if (!SWIG_IsOK(ecode2
)) {
12060 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "2"" of type '" "int""'");
12062 arg2
= static_cast< int >(val2
);
12064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12065 (arg1
)->SetWrapStartIndent(arg2
);
12066 wxPyEndAllowThreads(__tstate
);
12067 if (PyErr_Occurred()) SWIG_fail
;
12069 resultobj
= SWIG_Py_Void();
12076 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12077 PyObject
*resultobj
= 0;
12078 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12082 PyObject
*swig_obj
[1] ;
12084 if (!args
) SWIG_fail
;
12085 swig_obj
[0] = args
;
12086 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12087 if (!SWIG_IsOK(res1
)) {
12088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12090 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12092 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12093 result
= (int)(arg1
)->GetWrapStartIndent();
12094 wxPyEndAllowThreads(__tstate
);
12095 if (PyErr_Occurred()) SWIG_fail
;
12097 resultobj
= SWIG_From_int(static_cast< int >(result
));
12104 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12105 PyObject
*resultobj
= 0;
12106 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12112 PyObject
* obj0
= 0 ;
12113 PyObject
* obj1
= 0 ;
12114 char * kwnames
[] = {
12115 (char *) "self",(char *) "mode", NULL
12118 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLayoutCache",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12119 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12120 if (!SWIG_IsOK(res1
)) {
12121 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12123 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12124 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12125 if (!SWIG_IsOK(ecode2
)) {
12126 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "2"" of type '" "int""'");
12128 arg2
= static_cast< int >(val2
);
12130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12131 (arg1
)->SetLayoutCache(arg2
);
12132 wxPyEndAllowThreads(__tstate
);
12133 if (PyErr_Occurred()) SWIG_fail
;
12135 resultobj
= SWIG_Py_Void();
12142 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12143 PyObject
*resultobj
= 0;
12144 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12148 PyObject
*swig_obj
[1] ;
12150 if (!args
) SWIG_fail
;
12151 swig_obj
[0] = args
;
12152 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12153 if (!SWIG_IsOK(res1
)) {
12154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12156 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12159 result
= (int)(arg1
)->GetLayoutCache();
12160 wxPyEndAllowThreads(__tstate
);
12161 if (PyErr_Occurred()) SWIG_fail
;
12163 resultobj
= SWIG_From_int(static_cast< int >(result
));
12170 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12171 PyObject
*resultobj
= 0;
12172 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12178 PyObject
* obj0
= 0 ;
12179 PyObject
* obj1
= 0 ;
12180 char * kwnames
[] = {
12181 (char *) "self",(char *) "pixelWidth", NULL
12184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetScrollWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12185 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12186 if (!SWIG_IsOK(res1
)) {
12187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12189 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12190 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12191 if (!SWIG_IsOK(ecode2
)) {
12192 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "2"" of type '" "int""'");
12194 arg2
= static_cast< int >(val2
);
12196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12197 (arg1
)->SetScrollWidth(arg2
);
12198 wxPyEndAllowThreads(__tstate
);
12199 if (PyErr_Occurred()) SWIG_fail
;
12201 resultobj
= SWIG_Py_Void();
12208 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12209 PyObject
*resultobj
= 0;
12210 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12214 PyObject
*swig_obj
[1] ;
12216 if (!args
) SWIG_fail
;
12217 swig_obj
[0] = args
;
12218 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12219 if (!SWIG_IsOK(res1
)) {
12220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12222 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12224 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12225 result
= (int)(arg1
)->GetScrollWidth();
12226 wxPyEndAllowThreads(__tstate
);
12227 if (PyErr_Occurred()) SWIG_fail
;
12229 resultobj
= SWIG_From_int(static_cast< int >(result
));
12236 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12237 PyObject
*resultobj
= 0;
12238 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12240 wxString
*arg3
= 0 ;
12246 bool temp3
= false ;
12247 PyObject
* obj0
= 0 ;
12248 PyObject
* obj1
= 0 ;
12249 PyObject
* obj2
= 0 ;
12250 char * kwnames
[] = {
12251 (char *) "self",(char *) "style",(char *) "text", NULL
12254 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_TextWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12255 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12256 if (!SWIG_IsOK(res1
)) {
12257 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12259 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12260 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12261 if (!SWIG_IsOK(ecode2
)) {
12262 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "2"" of type '" "int""'");
12264 arg2
= static_cast< int >(val2
);
12266 arg3
= wxString_in_helper(obj2
);
12267 if (arg3
== NULL
) SWIG_fail
;
12271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12272 result
= (int)(arg1
)->TextWidth(arg2
,(wxString
const &)*arg3
);
12273 wxPyEndAllowThreads(__tstate
);
12274 if (PyErr_Occurred()) SWIG_fail
;
12276 resultobj
= SWIG_From_int(static_cast< int >(result
));
12291 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12292 PyObject
*resultobj
= 0;
12293 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12299 PyObject
* obj0
= 0 ;
12300 PyObject
* obj1
= 0 ;
12301 char * kwnames
[] = {
12302 (char *) "self",(char *) "endAtLastLine", NULL
12305 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEndAtLastLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12306 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12307 if (!SWIG_IsOK(res1
)) {
12308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12310 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12311 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12312 if (!SWIG_IsOK(ecode2
)) {
12313 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "2"" of type '" "bool""'");
12315 arg2
= static_cast< bool >(val2
);
12317 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12318 (arg1
)->SetEndAtLastLine(arg2
);
12319 wxPyEndAllowThreads(__tstate
);
12320 if (PyErr_Occurred()) SWIG_fail
;
12322 resultobj
= SWIG_Py_Void();
12329 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12330 PyObject
*resultobj
= 0;
12331 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12335 PyObject
*swig_obj
[1] ;
12337 if (!args
) SWIG_fail
;
12338 swig_obj
[0] = args
;
12339 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12340 if (!SWIG_IsOK(res1
)) {
12341 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12343 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12345 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12346 result
= (bool)(arg1
)->GetEndAtLastLine();
12347 wxPyEndAllowThreads(__tstate
);
12348 if (PyErr_Occurred()) SWIG_fail
;
12351 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12359 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12360 PyObject
*resultobj
= 0;
12361 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12368 PyObject
* obj0
= 0 ;
12369 PyObject
* obj1
= 0 ;
12370 char * kwnames
[] = {
12371 (char *) "self",(char *) "line", NULL
12374 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_TextHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12375 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12376 if (!SWIG_IsOK(res1
)) {
12377 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12379 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12380 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12381 if (!SWIG_IsOK(ecode2
)) {
12382 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "2"" of type '" "int""'");
12384 arg2
= static_cast< int >(val2
);
12386 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12387 result
= (int)(arg1
)->TextHeight(arg2
);
12388 wxPyEndAllowThreads(__tstate
);
12389 if (PyErr_Occurred()) SWIG_fail
;
12391 resultobj
= SWIG_From_int(static_cast< int >(result
));
12398 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12399 PyObject
*resultobj
= 0;
12400 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12406 PyObject
* obj0
= 0 ;
12407 PyObject
* obj1
= 0 ;
12408 char * kwnames
[] = {
12409 (char *) "self",(char *) "show", NULL
12412 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseVerticalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12413 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12414 if (!SWIG_IsOK(res1
)) {
12415 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12417 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12418 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12419 if (!SWIG_IsOK(ecode2
)) {
12420 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "2"" of type '" "bool""'");
12422 arg2
= static_cast< bool >(val2
);
12424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12425 (arg1
)->SetUseVerticalScrollBar(arg2
);
12426 wxPyEndAllowThreads(__tstate
);
12427 if (PyErr_Occurred()) SWIG_fail
;
12429 resultobj
= SWIG_Py_Void();
12436 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12437 PyObject
*resultobj
= 0;
12438 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12442 PyObject
*swig_obj
[1] ;
12444 if (!args
) SWIG_fail
;
12445 swig_obj
[0] = args
;
12446 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12447 if (!SWIG_IsOK(res1
)) {
12448 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12450 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12453 result
= (bool)(arg1
)->GetUseVerticalScrollBar();
12454 wxPyEndAllowThreads(__tstate
);
12455 if (PyErr_Occurred()) SWIG_fail
;
12458 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12466 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12467 PyObject
*resultobj
= 0;
12468 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12469 wxString
*arg2
= 0 ;
12472 bool temp2
= false ;
12473 PyObject
* obj0
= 0 ;
12474 PyObject
* obj1
= 0 ;
12475 char * kwnames
[] = {
12476 (char *) "self",(char *) "text", NULL
12479 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12480 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12481 if (!SWIG_IsOK(res1
)) {
12482 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12484 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12486 arg2
= wxString_in_helper(obj1
);
12487 if (arg2
== NULL
) SWIG_fail
;
12491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12492 (arg1
)->AppendText((wxString
const &)*arg2
);
12493 wxPyEndAllowThreads(__tstate
);
12494 if (PyErr_Occurred()) SWIG_fail
;
12496 resultobj
= SWIG_Py_Void();
12511 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12512 PyObject
*resultobj
= 0;
12513 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12517 PyObject
*swig_obj
[1] ;
12519 if (!args
) SWIG_fail
;
12520 swig_obj
[0] = args
;
12521 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12522 if (!SWIG_IsOK(res1
)) {
12523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12525 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12528 result
= (bool)(arg1
)->GetTwoPhaseDraw();
12529 wxPyEndAllowThreads(__tstate
);
12530 if (PyErr_Occurred()) SWIG_fail
;
12533 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12541 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12542 PyObject
*resultobj
= 0;
12543 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12549 PyObject
* obj0
= 0 ;
12550 PyObject
* obj1
= 0 ;
12551 char * kwnames
[] = {
12552 (char *) "self",(char *) "twoPhase", NULL
12555 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTwoPhaseDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12556 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12557 if (!SWIG_IsOK(res1
)) {
12558 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12560 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12561 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12562 if (!SWIG_IsOK(ecode2
)) {
12563 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "2"" of type '" "bool""'");
12565 arg2
= static_cast< bool >(val2
);
12567 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12568 (arg1
)->SetTwoPhaseDraw(arg2
);
12569 wxPyEndAllowThreads(__tstate
);
12570 if (PyErr_Occurred()) SWIG_fail
;
12572 resultobj
= SWIG_Py_Void();
12579 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TargetFromSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12580 PyObject
*resultobj
= 0;
12581 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12584 PyObject
*swig_obj
[1] ;
12586 if (!args
) SWIG_fail
;
12587 swig_obj
[0] = args
;
12588 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12589 if (!SWIG_IsOK(res1
)) {
12590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TargetFromSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12592 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12595 (arg1
)->TargetFromSelection();
12596 wxPyEndAllowThreads(__tstate
);
12597 if (PyErr_Occurred()) SWIG_fail
;
12599 resultobj
= SWIG_Py_Void();
12606 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesJoin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12607 PyObject
*resultobj
= 0;
12608 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12611 PyObject
*swig_obj
[1] ;
12613 if (!args
) SWIG_fail
;
12614 swig_obj
[0] = args
;
12615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12616 if (!SWIG_IsOK(res1
)) {
12617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesJoin" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12619 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12622 (arg1
)->LinesJoin();
12623 wxPyEndAllowThreads(__tstate
);
12624 if (PyErr_Occurred()) SWIG_fail
;
12626 resultobj
= SWIG_Py_Void();
12633 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesSplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12634 PyObject
*resultobj
= 0;
12635 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12641 PyObject
* obj0
= 0 ;
12642 PyObject
* obj1
= 0 ;
12643 char * kwnames
[] = {
12644 (char *) "self",(char *) "pixelWidth", NULL
12647 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LinesSplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12648 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12649 if (!SWIG_IsOK(res1
)) {
12650 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12652 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12653 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12654 if (!SWIG_IsOK(ecode2
)) {
12655 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "2"" of type '" "int""'");
12657 arg2
= static_cast< int >(val2
);
12659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12660 (arg1
)->LinesSplit(arg2
);
12661 wxPyEndAllowThreads(__tstate
);
12662 if (PyErr_Occurred()) SWIG_fail
;
12664 resultobj
= SWIG_Py_Void();
12671 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12672 PyObject
*resultobj
= 0;
12673 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12675 wxColour
*arg3
= 0 ;
12681 PyObject
* obj0
= 0 ;
12682 PyObject
* obj1
= 0 ;
12683 PyObject
* obj2
= 0 ;
12684 char * kwnames
[] = {
12685 (char *) "self",(char *) "useSetting",(char *) "back", NULL
12688 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12689 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12690 if (!SWIG_IsOK(res1
)) {
12691 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12693 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12694 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12695 if (!SWIG_IsOK(ecode2
)) {
12696 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "2"" of type '" "bool""'");
12698 arg2
= static_cast< bool >(val2
);
12701 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12705 (arg1
)->SetFoldMarginColour(arg2
,(wxColour
const &)*arg3
);
12706 wxPyEndAllowThreads(__tstate
);
12707 if (PyErr_Occurred()) SWIG_fail
;
12709 resultobj
= SWIG_Py_Void();
12716 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginHiColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12717 PyObject
*resultobj
= 0;
12718 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12720 wxColour
*arg3
= 0 ;
12726 PyObject
* obj0
= 0 ;
12727 PyObject
* obj1
= 0 ;
12728 PyObject
* obj2
= 0 ;
12729 char * kwnames
[] = {
12730 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
12733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginHiColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12734 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12735 if (!SWIG_IsOK(res1
)) {
12736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12738 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12739 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12740 if (!SWIG_IsOK(ecode2
)) {
12741 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "2"" of type '" "bool""'");
12743 arg2
= static_cast< bool >(val2
);
12746 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12750 (arg1
)->SetFoldMarginHiColour(arg2
,(wxColour
const &)*arg3
);
12751 wxPyEndAllowThreads(__tstate
);
12752 if (PyErr_Occurred()) SWIG_fail
;
12754 resultobj
= SWIG_Py_Void();
12761 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12762 PyObject
*resultobj
= 0;
12763 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12766 PyObject
*swig_obj
[1] ;
12768 if (!args
) SWIG_fail
;
12769 swig_obj
[0] = args
;
12770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12771 if (!SWIG_IsOK(res1
)) {
12772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12774 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12777 (arg1
)->LineDown();
12778 wxPyEndAllowThreads(__tstate
);
12779 if (PyErr_Occurred()) SWIG_fail
;
12781 resultobj
= SWIG_Py_Void();
12788 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12789 PyObject
*resultobj
= 0;
12790 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12793 PyObject
*swig_obj
[1] ;
12795 if (!args
) SWIG_fail
;
12796 swig_obj
[0] = args
;
12797 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12798 if (!SWIG_IsOK(res1
)) {
12799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12801 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12804 (arg1
)->LineDownExtend();
12805 wxPyEndAllowThreads(__tstate
);
12806 if (PyErr_Occurred()) SWIG_fail
;
12808 resultobj
= SWIG_Py_Void();
12815 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12816 PyObject
*resultobj
= 0;
12817 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12820 PyObject
*swig_obj
[1] ;
12822 if (!args
) SWIG_fail
;
12823 swig_obj
[0] = args
;
12824 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12825 if (!SWIG_IsOK(res1
)) {
12826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12828 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12832 wxPyEndAllowThreads(__tstate
);
12833 if (PyErr_Occurred()) SWIG_fail
;
12835 resultobj
= SWIG_Py_Void();
12842 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12843 PyObject
*resultobj
= 0;
12844 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12847 PyObject
*swig_obj
[1] ;
12849 if (!args
) SWIG_fail
;
12850 swig_obj
[0] = args
;
12851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12852 if (!SWIG_IsOK(res1
)) {
12853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12858 (arg1
)->LineUpExtend();
12859 wxPyEndAllowThreads(__tstate
);
12860 if (PyErr_Occurred()) SWIG_fail
;
12862 resultobj
= SWIG_Py_Void();
12869 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12870 PyObject
*resultobj
= 0;
12871 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12874 PyObject
*swig_obj
[1] ;
12876 if (!args
) SWIG_fail
;
12877 swig_obj
[0] = args
;
12878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12879 if (!SWIG_IsOK(res1
)) {
12880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12885 (arg1
)->CharLeft();
12886 wxPyEndAllowThreads(__tstate
);
12887 if (PyErr_Occurred()) SWIG_fail
;
12889 resultobj
= SWIG_Py_Void();
12896 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12897 PyObject
*resultobj
= 0;
12898 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12901 PyObject
*swig_obj
[1] ;
12903 if (!args
) SWIG_fail
;
12904 swig_obj
[0] = args
;
12905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12906 if (!SWIG_IsOK(res1
)) {
12907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12909 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12912 (arg1
)->CharLeftExtend();
12913 wxPyEndAllowThreads(__tstate
);
12914 if (PyErr_Occurred()) SWIG_fail
;
12916 resultobj
= SWIG_Py_Void();
12923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12924 PyObject
*resultobj
= 0;
12925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12928 PyObject
*swig_obj
[1] ;
12930 if (!args
) SWIG_fail
;
12931 swig_obj
[0] = args
;
12932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12933 if (!SWIG_IsOK(res1
)) {
12934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12936 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12938 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12939 (arg1
)->CharRight();
12940 wxPyEndAllowThreads(__tstate
);
12941 if (PyErr_Occurred()) SWIG_fail
;
12943 resultobj
= SWIG_Py_Void();
12950 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12951 PyObject
*resultobj
= 0;
12952 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12955 PyObject
*swig_obj
[1] ;
12957 if (!args
) SWIG_fail
;
12958 swig_obj
[0] = args
;
12959 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12960 if (!SWIG_IsOK(res1
)) {
12961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12963 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12966 (arg1
)->CharRightExtend();
12967 wxPyEndAllowThreads(__tstate
);
12968 if (PyErr_Occurred()) SWIG_fail
;
12970 resultobj
= SWIG_Py_Void();
12977 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12978 PyObject
*resultobj
= 0;
12979 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12982 PyObject
*swig_obj
[1] ;
12984 if (!args
) SWIG_fail
;
12985 swig_obj
[0] = args
;
12986 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12987 if (!SWIG_IsOK(res1
)) {
12988 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12990 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12993 (arg1
)->WordLeft();
12994 wxPyEndAllowThreads(__tstate
);
12995 if (PyErr_Occurred()) SWIG_fail
;
12997 resultobj
= SWIG_Py_Void();
13004 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13005 PyObject
*resultobj
= 0;
13006 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13009 PyObject
*swig_obj
[1] ;
13011 if (!args
) SWIG_fail
;
13012 swig_obj
[0] = args
;
13013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13014 if (!SWIG_IsOK(res1
)) {
13015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13017 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13020 (arg1
)->WordLeftExtend();
13021 wxPyEndAllowThreads(__tstate
);
13022 if (PyErr_Occurred()) SWIG_fail
;
13024 resultobj
= SWIG_Py_Void();
13031 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13032 PyObject
*resultobj
= 0;
13033 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13036 PyObject
*swig_obj
[1] ;
13038 if (!args
) SWIG_fail
;
13039 swig_obj
[0] = args
;
13040 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13041 if (!SWIG_IsOK(res1
)) {
13042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13044 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13047 (arg1
)->WordRight();
13048 wxPyEndAllowThreads(__tstate
);
13049 if (PyErr_Occurred()) SWIG_fail
;
13051 resultobj
= SWIG_Py_Void();
13058 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13059 PyObject
*resultobj
= 0;
13060 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13063 PyObject
*swig_obj
[1] ;
13065 if (!args
) SWIG_fail
;
13066 swig_obj
[0] = args
;
13067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13068 if (!SWIG_IsOK(res1
)) {
13069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13071 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13073 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13074 (arg1
)->WordRightExtend();
13075 wxPyEndAllowThreads(__tstate
);
13076 if (PyErr_Occurred()) SWIG_fail
;
13078 resultobj
= SWIG_Py_Void();
13085 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Home(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13086 PyObject
*resultobj
= 0;
13087 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13090 PyObject
*swig_obj
[1] ;
13092 if (!args
) SWIG_fail
;
13093 swig_obj
[0] = args
;
13094 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13095 if (!SWIG_IsOK(res1
)) {
13096 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Home" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13098 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13102 wxPyEndAllowThreads(__tstate
);
13103 if (PyErr_Occurred()) SWIG_fail
;
13105 resultobj
= SWIG_Py_Void();
13112 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13113 PyObject
*resultobj
= 0;
13114 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13117 PyObject
*swig_obj
[1] ;
13119 if (!args
) SWIG_fail
;
13120 swig_obj
[0] = args
;
13121 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13122 if (!SWIG_IsOK(res1
)) {
13123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13125 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13128 (arg1
)->HomeExtend();
13129 wxPyEndAllowThreads(__tstate
);
13130 if (PyErr_Occurred()) SWIG_fail
;
13132 resultobj
= SWIG_Py_Void();
13139 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13140 PyObject
*resultobj
= 0;
13141 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13144 PyObject
*swig_obj
[1] ;
13146 if (!args
) SWIG_fail
;
13147 swig_obj
[0] = args
;
13148 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13149 if (!SWIG_IsOK(res1
)) {
13150 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13152 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13154 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13156 wxPyEndAllowThreads(__tstate
);
13157 if (PyErr_Occurred()) SWIG_fail
;
13159 resultobj
= SWIG_Py_Void();
13166 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13167 PyObject
*resultobj
= 0;
13168 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13171 PyObject
*swig_obj
[1] ;
13173 if (!args
) SWIG_fail
;
13174 swig_obj
[0] = args
;
13175 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13176 if (!SWIG_IsOK(res1
)) {
13177 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13179 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13182 (arg1
)->LineEndExtend();
13183 wxPyEndAllowThreads(__tstate
);
13184 if (PyErr_Occurred()) SWIG_fail
;
13186 resultobj
= SWIG_Py_Void();
13193 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13194 PyObject
*resultobj
= 0;
13195 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13198 PyObject
*swig_obj
[1] ;
13200 if (!args
) SWIG_fail
;
13201 swig_obj
[0] = args
;
13202 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13203 if (!SWIG_IsOK(res1
)) {
13204 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13206 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13209 (arg1
)->DocumentStart();
13210 wxPyEndAllowThreads(__tstate
);
13211 if (PyErr_Occurred()) SWIG_fail
;
13213 resultobj
= SWIG_Py_Void();
13220 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStartExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13221 PyObject
*resultobj
= 0;
13222 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13225 PyObject
*swig_obj
[1] ;
13227 if (!args
) SWIG_fail
;
13228 swig_obj
[0] = args
;
13229 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13230 if (!SWIG_IsOK(res1
)) {
13231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStartExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13236 (arg1
)->DocumentStartExtend();
13237 wxPyEndAllowThreads(__tstate
);
13238 if (PyErr_Occurred()) SWIG_fail
;
13240 resultobj
= SWIG_Py_Void();
13247 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13248 PyObject
*resultobj
= 0;
13249 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13252 PyObject
*swig_obj
[1] ;
13254 if (!args
) SWIG_fail
;
13255 swig_obj
[0] = args
;
13256 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13257 if (!SWIG_IsOK(res1
)) {
13258 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13260 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13263 (arg1
)->DocumentEnd();
13264 wxPyEndAllowThreads(__tstate
);
13265 if (PyErr_Occurred()) SWIG_fail
;
13267 resultobj
= SWIG_Py_Void();
13274 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13275 PyObject
*resultobj
= 0;
13276 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13279 PyObject
*swig_obj
[1] ;
13281 if (!args
) SWIG_fail
;
13282 swig_obj
[0] = args
;
13283 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13284 if (!SWIG_IsOK(res1
)) {
13285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13287 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13289 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13290 (arg1
)->DocumentEndExtend();
13291 wxPyEndAllowThreads(__tstate
);
13292 if (PyErr_Occurred()) SWIG_fail
;
13294 resultobj
= SWIG_Py_Void();
13301 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13302 PyObject
*resultobj
= 0;
13303 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13306 PyObject
*swig_obj
[1] ;
13308 if (!args
) SWIG_fail
;
13309 swig_obj
[0] = args
;
13310 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13311 if (!SWIG_IsOK(res1
)) {
13312 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13314 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13318 wxPyEndAllowThreads(__tstate
);
13319 if (PyErr_Occurred()) SWIG_fail
;
13321 resultobj
= SWIG_Py_Void();
13328 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13329 PyObject
*resultobj
= 0;
13330 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13333 PyObject
*swig_obj
[1] ;
13335 if (!args
) SWIG_fail
;
13336 swig_obj
[0] = args
;
13337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13338 if (!SWIG_IsOK(res1
)) {
13339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13341 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13344 (arg1
)->PageUpExtend();
13345 wxPyEndAllowThreads(__tstate
);
13346 if (PyErr_Occurred()) SWIG_fail
;
13348 resultobj
= SWIG_Py_Void();
13355 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13356 PyObject
*resultobj
= 0;
13357 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13360 PyObject
*swig_obj
[1] ;
13362 if (!args
) SWIG_fail
;
13363 swig_obj
[0] = args
;
13364 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13365 if (!SWIG_IsOK(res1
)) {
13366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13368 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13370 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13371 (arg1
)->PageDown();
13372 wxPyEndAllowThreads(__tstate
);
13373 if (PyErr_Occurred()) SWIG_fail
;
13375 resultobj
= SWIG_Py_Void();
13382 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13383 PyObject
*resultobj
= 0;
13384 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13387 PyObject
*swig_obj
[1] ;
13389 if (!args
) SWIG_fail
;
13390 swig_obj
[0] = args
;
13391 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13392 if (!SWIG_IsOK(res1
)) {
13393 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13395 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13398 (arg1
)->PageDownExtend();
13399 wxPyEndAllowThreads(__tstate
);
13400 if (PyErr_Occurred()) SWIG_fail
;
13402 resultobj
= SWIG_Py_Void();
13409 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EditToggleOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13410 PyObject
*resultobj
= 0;
13411 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13414 PyObject
*swig_obj
[1] ;
13416 if (!args
) SWIG_fail
;
13417 swig_obj
[0] = args
;
13418 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13419 if (!SWIG_IsOK(res1
)) {
13420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EditToggleOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13422 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13425 (arg1
)->EditToggleOvertype();
13426 wxPyEndAllowThreads(__tstate
);
13427 if (PyErr_Occurred()) SWIG_fail
;
13429 resultobj
= SWIG_Py_Void();
13436 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13437 PyObject
*resultobj
= 0;
13438 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13441 PyObject
*swig_obj
[1] ;
13443 if (!args
) SWIG_fail
;
13444 swig_obj
[0] = args
;
13445 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13446 if (!SWIG_IsOK(res1
)) {
13447 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13449 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13453 wxPyEndAllowThreads(__tstate
);
13454 if (PyErr_Occurred()) SWIG_fail
;
13456 resultobj
= SWIG_Py_Void();
13463 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13464 PyObject
*resultobj
= 0;
13465 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13468 PyObject
*swig_obj
[1] ;
13470 if (!args
) SWIG_fail
;
13471 swig_obj
[0] = args
;
13472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13473 if (!SWIG_IsOK(res1
)) {
13474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13476 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13479 (arg1
)->DeleteBack();
13480 wxPyEndAllowThreads(__tstate
);
13481 if (PyErr_Occurred()) SWIG_fail
;
13483 resultobj
= SWIG_Py_Void();
13490 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Tab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13491 PyObject
*resultobj
= 0;
13492 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13495 PyObject
*swig_obj
[1] ;
13497 if (!args
) SWIG_fail
;
13498 swig_obj
[0] = args
;
13499 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13500 if (!SWIG_IsOK(res1
)) {
13501 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Tab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13503 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13507 wxPyEndAllowThreads(__tstate
);
13508 if (PyErr_Occurred()) SWIG_fail
;
13510 resultobj
= SWIG_Py_Void();
13517 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BackTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13518 PyObject
*resultobj
= 0;
13519 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13522 PyObject
*swig_obj
[1] ;
13524 if (!args
) SWIG_fail
;
13525 swig_obj
[0] = args
;
13526 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13527 if (!SWIG_IsOK(res1
)) {
13528 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BackTab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13530 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13534 wxPyEndAllowThreads(__tstate
);
13535 if (PyErr_Occurred()) SWIG_fail
;
13537 resultobj
= SWIG_Py_Void();
13544 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_NewLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13545 PyObject
*resultobj
= 0;
13546 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13549 PyObject
*swig_obj
[1] ;
13551 if (!args
) SWIG_fail
;
13552 swig_obj
[0] = args
;
13553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13554 if (!SWIG_IsOK(res1
)) {
13555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_NewLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13557 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13561 wxPyEndAllowThreads(__tstate
);
13562 if (PyErr_Occurred()) SWIG_fail
;
13564 resultobj
= SWIG_Py_Void();
13571 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormFeed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13572 PyObject
*resultobj
= 0;
13573 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13576 PyObject
*swig_obj
[1] ;
13578 if (!args
) SWIG_fail
;
13579 swig_obj
[0] = args
;
13580 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13581 if (!SWIG_IsOK(res1
)) {
13582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormFeed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13584 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13587 (arg1
)->FormFeed();
13588 wxPyEndAllowThreads(__tstate
);
13589 if (PyErr_Occurred()) SWIG_fail
;
13591 resultobj
= SWIG_Py_Void();
13598 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHome(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13599 PyObject
*resultobj
= 0;
13600 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13603 PyObject
*swig_obj
[1] ;
13605 if (!args
) SWIG_fail
;
13606 swig_obj
[0] = args
;
13607 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13608 if (!SWIG_IsOK(res1
)) {
13609 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHome" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13611 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13613 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13615 wxPyEndAllowThreads(__tstate
);
13616 if (PyErr_Occurred()) SWIG_fail
;
13618 resultobj
= SWIG_Py_Void();
13625 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13626 PyObject
*resultobj
= 0;
13627 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13630 PyObject
*swig_obj
[1] ;
13632 if (!args
) SWIG_fail
;
13633 swig_obj
[0] = args
;
13634 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13635 if (!SWIG_IsOK(res1
)) {
13636 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13638 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13641 (arg1
)->VCHomeExtend();
13642 wxPyEndAllowThreads(__tstate
);
13643 if (PyErr_Occurred()) SWIG_fail
;
13645 resultobj
= SWIG_Py_Void();
13652 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomIn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13653 PyObject
*resultobj
= 0;
13654 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13657 PyObject
*swig_obj
[1] ;
13659 if (!args
) SWIG_fail
;
13660 swig_obj
[0] = args
;
13661 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13662 if (!SWIG_IsOK(res1
)) {
13663 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomIn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13665 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13667 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13669 wxPyEndAllowThreads(__tstate
);
13670 if (PyErr_Occurred()) SWIG_fail
;
13672 resultobj
= SWIG_Py_Void();
13679 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomOut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13680 PyObject
*resultobj
= 0;
13681 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13684 PyObject
*swig_obj
[1] ;
13686 if (!args
) SWIG_fail
;
13687 swig_obj
[0] = args
;
13688 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13689 if (!SWIG_IsOK(res1
)) {
13690 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomOut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13692 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13694 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13696 wxPyEndAllowThreads(__tstate
);
13697 if (PyErr_Occurred()) SWIG_fail
;
13699 resultobj
= SWIG_Py_Void();
13706 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13707 PyObject
*resultobj
= 0;
13708 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13711 PyObject
*swig_obj
[1] ;
13713 if (!args
) SWIG_fail
;
13714 swig_obj
[0] = args
;
13715 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13716 if (!SWIG_IsOK(res1
)) {
13717 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13719 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13722 (arg1
)->DelWordLeft();
13723 wxPyEndAllowThreads(__tstate
);
13724 if (PyErr_Occurred()) SWIG_fail
;
13726 resultobj
= SWIG_Py_Void();
13733 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13734 PyObject
*resultobj
= 0;
13735 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13738 PyObject
*swig_obj
[1] ;
13740 if (!args
) SWIG_fail
;
13741 swig_obj
[0] = args
;
13742 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13743 if (!SWIG_IsOK(res1
)) {
13744 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13746 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13749 (arg1
)->DelWordRight();
13750 wxPyEndAllowThreads(__tstate
);
13751 if (PyErr_Occurred()) SWIG_fail
;
13753 resultobj
= SWIG_Py_Void();
13760 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13761 PyObject
*resultobj
= 0;
13762 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13765 PyObject
*swig_obj
[1] ;
13767 if (!args
) SWIG_fail
;
13768 swig_obj
[0] = args
;
13769 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13770 if (!SWIG_IsOK(res1
)) {
13771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13773 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13777 wxPyEndAllowThreads(__tstate
);
13778 if (PyErr_Occurred()) SWIG_fail
;
13780 resultobj
= SWIG_Py_Void();
13787 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13788 PyObject
*resultobj
= 0;
13789 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13792 PyObject
*swig_obj
[1] ;
13794 if (!args
) SWIG_fail
;
13795 swig_obj
[0] = args
;
13796 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13797 if (!SWIG_IsOK(res1
)) {
13798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13800 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13802 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13803 (arg1
)->LineDelete();
13804 wxPyEndAllowThreads(__tstate
);
13805 if (PyErr_Occurred()) SWIG_fail
;
13807 resultobj
= SWIG_Py_Void();
13814 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineTranspose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13815 PyObject
*resultobj
= 0;
13816 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13819 PyObject
*swig_obj
[1] ;
13821 if (!args
) SWIG_fail
;
13822 swig_obj
[0] = args
;
13823 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13824 if (!SWIG_IsOK(res1
)) {
13825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineTranspose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13827 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13829 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13830 (arg1
)->LineTranspose();
13831 wxPyEndAllowThreads(__tstate
);
13832 if (PyErr_Occurred()) SWIG_fail
;
13834 resultobj
= SWIG_Py_Void();
13841 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13842 PyObject
*resultobj
= 0;
13843 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13846 PyObject
*swig_obj
[1] ;
13848 if (!args
) SWIG_fail
;
13849 swig_obj
[0] = args
;
13850 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13851 if (!SWIG_IsOK(res1
)) {
13852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13854 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13857 (arg1
)->LineDuplicate();
13858 wxPyEndAllowThreads(__tstate
);
13859 if (PyErr_Occurred()) SWIG_fail
;
13861 resultobj
= SWIG_Py_Void();
13868 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LowerCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13869 PyObject
*resultobj
= 0;
13870 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13873 PyObject
*swig_obj
[1] ;
13875 if (!args
) SWIG_fail
;
13876 swig_obj
[0] = args
;
13877 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13878 if (!SWIG_IsOK(res1
)) {
13879 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LowerCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13881 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13883 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13884 (arg1
)->LowerCase();
13885 wxPyEndAllowThreads(__tstate
);
13886 if (PyErr_Occurred()) SWIG_fail
;
13888 resultobj
= SWIG_Py_Void();
13895 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UpperCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13896 PyObject
*resultobj
= 0;
13897 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13900 PyObject
*swig_obj
[1] ;
13902 if (!args
) SWIG_fail
;
13903 swig_obj
[0] = args
;
13904 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13905 if (!SWIG_IsOK(res1
)) {
13906 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UpperCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13908 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13910 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13911 (arg1
)->UpperCase();
13912 wxPyEndAllowThreads(__tstate
);
13913 if (PyErr_Occurred()) SWIG_fail
;
13915 resultobj
= SWIG_Py_Void();
13922 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13923 PyObject
*resultobj
= 0;
13924 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13927 PyObject
*swig_obj
[1] ;
13929 if (!args
) SWIG_fail
;
13930 swig_obj
[0] = args
;
13931 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13932 if (!SWIG_IsOK(res1
)) {
13933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13935 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13938 (arg1
)->LineScrollDown();
13939 wxPyEndAllowThreads(__tstate
);
13940 if (PyErr_Occurred()) SWIG_fail
;
13942 resultobj
= SWIG_Py_Void();
13949 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13950 PyObject
*resultobj
= 0;
13951 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13954 PyObject
*swig_obj
[1] ;
13956 if (!args
) SWIG_fail
;
13957 swig_obj
[0] = args
;
13958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13959 if (!SWIG_IsOK(res1
)) {
13960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13962 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13965 (arg1
)->LineScrollUp();
13966 wxPyEndAllowThreads(__tstate
);
13967 if (PyErr_Occurred()) SWIG_fail
;
13969 resultobj
= SWIG_Py_Void();
13976 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBackNotLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13977 PyObject
*resultobj
= 0;
13978 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13981 PyObject
*swig_obj
[1] ;
13983 if (!args
) SWIG_fail
;
13984 swig_obj
[0] = args
;
13985 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13986 if (!SWIG_IsOK(res1
)) {
13987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBackNotLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13989 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13992 (arg1
)->DeleteBackNotLine();
13993 wxPyEndAllowThreads(__tstate
);
13994 if (PyErr_Occurred()) SWIG_fail
;
13996 resultobj
= SWIG_Py_Void();
14003 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14004 PyObject
*resultobj
= 0;
14005 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14008 PyObject
*swig_obj
[1] ;
14010 if (!args
) SWIG_fail
;
14011 swig_obj
[0] = args
;
14012 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14013 if (!SWIG_IsOK(res1
)) {
14014 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14016 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14019 (arg1
)->HomeDisplay();
14020 wxPyEndAllowThreads(__tstate
);
14021 if (PyErr_Occurred()) SWIG_fail
;
14023 resultobj
= SWIG_Py_Void();
14030 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14031 PyObject
*resultobj
= 0;
14032 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14035 PyObject
*swig_obj
[1] ;
14037 if (!args
) SWIG_fail
;
14038 swig_obj
[0] = args
;
14039 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14040 if (!SWIG_IsOK(res1
)) {
14041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14043 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14046 (arg1
)->HomeDisplayExtend();
14047 wxPyEndAllowThreads(__tstate
);
14048 if (PyErr_Occurred()) SWIG_fail
;
14050 resultobj
= SWIG_Py_Void();
14057 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14058 PyObject
*resultobj
= 0;
14059 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14062 PyObject
*swig_obj
[1] ;
14064 if (!args
) SWIG_fail
;
14065 swig_obj
[0] = args
;
14066 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14067 if (!SWIG_IsOK(res1
)) {
14068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14070 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14073 (arg1
)->LineEndDisplay();
14074 wxPyEndAllowThreads(__tstate
);
14075 if (PyErr_Occurred()) SWIG_fail
;
14077 resultobj
= SWIG_Py_Void();
14084 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14085 PyObject
*resultobj
= 0;
14086 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14089 PyObject
*swig_obj
[1] ;
14091 if (!args
) SWIG_fail
;
14092 swig_obj
[0] = args
;
14093 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14094 if (!SWIG_IsOK(res1
)) {
14095 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14097 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14100 (arg1
)->LineEndDisplayExtend();
14101 wxPyEndAllowThreads(__tstate
);
14102 if (PyErr_Occurred()) SWIG_fail
;
14104 resultobj
= SWIG_Py_Void();
14111 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14112 PyObject
*resultobj
= 0;
14113 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14116 PyObject
*swig_obj
[1] ;
14118 if (!args
) SWIG_fail
;
14119 swig_obj
[0] = args
;
14120 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14121 if (!SWIG_IsOK(res1
)) {
14122 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14124 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14127 (arg1
)->HomeWrap();
14128 wxPyEndAllowThreads(__tstate
);
14129 if (PyErr_Occurred()) SWIG_fail
;
14131 resultobj
= SWIG_Py_Void();
14138 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14139 PyObject
*resultobj
= 0;
14140 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14143 PyObject
*swig_obj
[1] ;
14145 if (!args
) SWIG_fail
;
14146 swig_obj
[0] = args
;
14147 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14148 if (!SWIG_IsOK(res1
)) {
14149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14151 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14153 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14154 (arg1
)->HomeWrapExtend();
14155 wxPyEndAllowThreads(__tstate
);
14156 if (PyErr_Occurred()) SWIG_fail
;
14158 resultobj
= SWIG_Py_Void();
14165 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14166 PyObject
*resultobj
= 0;
14167 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14170 PyObject
*swig_obj
[1] ;
14172 if (!args
) SWIG_fail
;
14173 swig_obj
[0] = args
;
14174 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14175 if (!SWIG_IsOK(res1
)) {
14176 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14178 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14180 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14181 (arg1
)->LineEndWrap();
14182 wxPyEndAllowThreads(__tstate
);
14183 if (PyErr_Occurred()) SWIG_fail
;
14185 resultobj
= SWIG_Py_Void();
14192 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14193 PyObject
*resultobj
= 0;
14194 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14197 PyObject
*swig_obj
[1] ;
14199 if (!args
) SWIG_fail
;
14200 swig_obj
[0] = args
;
14201 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14202 if (!SWIG_IsOK(res1
)) {
14203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14205 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14208 (arg1
)->LineEndWrapExtend();
14209 wxPyEndAllowThreads(__tstate
);
14210 if (PyErr_Occurred()) SWIG_fail
;
14212 resultobj
= SWIG_Py_Void();
14219 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14220 PyObject
*resultobj
= 0;
14221 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14224 PyObject
*swig_obj
[1] ;
14226 if (!args
) SWIG_fail
;
14227 swig_obj
[0] = args
;
14228 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14229 if (!SWIG_IsOK(res1
)) {
14230 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14232 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14234 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14235 (arg1
)->VCHomeWrap();
14236 wxPyEndAllowThreads(__tstate
);
14237 if (PyErr_Occurred()) SWIG_fail
;
14239 resultobj
= SWIG_Py_Void();
14246 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14247 PyObject
*resultobj
= 0;
14248 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14251 PyObject
*swig_obj
[1] ;
14253 if (!args
) SWIG_fail
;
14254 swig_obj
[0] = args
;
14255 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14256 if (!SWIG_IsOK(res1
)) {
14257 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14259 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14262 (arg1
)->VCHomeWrapExtend();
14263 wxPyEndAllowThreads(__tstate
);
14264 if (PyErr_Occurred()) SWIG_fail
;
14266 resultobj
= SWIG_Py_Void();
14273 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCopy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14274 PyObject
*resultobj
= 0;
14275 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14278 PyObject
*swig_obj
[1] ;
14280 if (!args
) SWIG_fail
;
14281 swig_obj
[0] = args
;
14282 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14283 if (!SWIG_IsOK(res1
)) {
14284 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCopy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14286 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14289 (arg1
)->LineCopy();
14290 wxPyEndAllowThreads(__tstate
);
14291 if (PyErr_Occurred()) SWIG_fail
;
14293 resultobj
= SWIG_Py_Void();
14300 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MoveCaretInsideView(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14301 PyObject
*resultobj
= 0;
14302 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14305 PyObject
*swig_obj
[1] ;
14307 if (!args
) SWIG_fail
;
14308 swig_obj
[0] = args
;
14309 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14310 if (!SWIG_IsOK(res1
)) {
14311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MoveCaretInsideView" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14313 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14316 (arg1
)->MoveCaretInsideView();
14317 wxPyEndAllowThreads(__tstate
);
14318 if (PyErr_Occurred()) SWIG_fail
;
14320 resultobj
= SWIG_Py_Void();
14327 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14328 PyObject
*resultobj
= 0;
14329 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14336 PyObject
* obj0
= 0 ;
14337 PyObject
* obj1
= 0 ;
14338 char * kwnames
[] = {
14339 (char *) "self",(char *) "line", NULL
14342 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14343 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14344 if (!SWIG_IsOK(res1
)) {
14345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14347 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14348 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14349 if (!SWIG_IsOK(ecode2
)) {
14350 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "2"" of type '" "int""'");
14352 arg2
= static_cast< int >(val2
);
14354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14355 result
= (int)(arg1
)->LineLength(arg2
);
14356 wxPyEndAllowThreads(__tstate
);
14357 if (PyErr_Occurred()) SWIG_fail
;
14359 resultobj
= SWIG_From_int(static_cast< int >(result
));
14366 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14367 PyObject
*resultobj
= 0;
14368 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14377 PyObject
* obj0
= 0 ;
14378 PyObject
* obj1
= 0 ;
14379 PyObject
* obj2
= 0 ;
14380 char * kwnames
[] = {
14381 (char *) "self",(char *) "pos1",(char *) "pos2", NULL
14384 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_BraceHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14385 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14386 if (!SWIG_IsOK(res1
)) {
14387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14389 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14390 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14391 if (!SWIG_IsOK(ecode2
)) {
14392 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "2"" of type '" "int""'");
14394 arg2
= static_cast< int >(val2
);
14395 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14396 if (!SWIG_IsOK(ecode3
)) {
14397 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "3"" of type '" "int""'");
14399 arg3
= static_cast< int >(val3
);
14401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14402 (arg1
)->BraceHighlight(arg2
,arg3
);
14403 wxPyEndAllowThreads(__tstate
);
14404 if (PyErr_Occurred()) SWIG_fail
;
14406 resultobj
= SWIG_Py_Void();
14413 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceBadLight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14414 PyObject
*resultobj
= 0;
14415 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14421 PyObject
* obj0
= 0 ;
14422 PyObject
* obj1
= 0 ;
14423 char * kwnames
[] = {
14424 (char *) "self",(char *) "pos", NULL
14427 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceBadLight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14428 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14429 if (!SWIG_IsOK(res1
)) {
14430 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14432 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14433 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14434 if (!SWIG_IsOK(ecode2
)) {
14435 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "2"" of type '" "int""'");
14437 arg2
= static_cast< int >(val2
);
14439 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14440 (arg1
)->BraceBadLight(arg2
);
14441 wxPyEndAllowThreads(__tstate
);
14442 if (PyErr_Occurred()) SWIG_fail
;
14444 resultobj
= SWIG_Py_Void();
14451 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceMatch(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14452 PyObject
*resultobj
= 0;
14453 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14460 PyObject
* obj0
= 0 ;
14461 PyObject
* obj1
= 0 ;
14462 char * kwnames
[] = {
14463 (char *) "self",(char *) "pos", NULL
14466 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceMatch",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14467 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14468 if (!SWIG_IsOK(res1
)) {
14469 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14471 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14472 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14473 if (!SWIG_IsOK(ecode2
)) {
14474 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "2"" of type '" "int""'");
14476 arg2
= static_cast< int >(val2
);
14478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14479 result
= (int)(arg1
)->BraceMatch(arg2
);
14480 wxPyEndAllowThreads(__tstate
);
14481 if (PyErr_Occurred()) SWIG_fail
;
14483 resultobj
= SWIG_From_int(static_cast< int >(result
));
14490 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14491 PyObject
*resultobj
= 0;
14492 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14496 PyObject
*swig_obj
[1] ;
14498 if (!args
) SWIG_fail
;
14499 swig_obj
[0] = args
;
14500 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14501 if (!SWIG_IsOK(res1
)) {
14502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14504 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14507 result
= (bool)(arg1
)->GetViewEOL();
14508 wxPyEndAllowThreads(__tstate
);
14509 if (PyErr_Occurred()) SWIG_fail
;
14512 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14520 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14521 PyObject
*resultobj
= 0;
14522 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14528 PyObject
* obj0
= 0 ;
14529 PyObject
* obj1
= 0 ;
14530 char * kwnames
[] = {
14531 (char *) "self",(char *) "visible", NULL
14534 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewEOL",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14535 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14536 if (!SWIG_IsOK(res1
)) {
14537 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14539 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14540 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
14541 if (!SWIG_IsOK(ecode2
)) {
14542 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "2"" of type '" "bool""'");
14544 arg2
= static_cast< bool >(val2
);
14546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14547 (arg1
)->SetViewEOL(arg2
);
14548 wxPyEndAllowThreads(__tstate
);
14549 if (PyErr_Occurred()) SWIG_fail
;
14551 resultobj
= SWIG_Py_Void();
14558 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14559 PyObject
*resultobj
= 0;
14560 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14564 PyObject
*swig_obj
[1] ;
14566 if (!args
) SWIG_fail
;
14567 swig_obj
[0] = args
;
14568 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14569 if (!SWIG_IsOK(res1
)) {
14570 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14572 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14575 result
= (void *)(arg1
)->GetDocPointer();
14576 wxPyEndAllowThreads(__tstate
);
14577 if (PyErr_Occurred()) SWIG_fail
;
14579 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
14586 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14587 PyObject
*resultobj
= 0;
14588 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14589 void *arg2
= (void *) 0 ;
14593 PyObject
* obj0
= 0 ;
14594 PyObject
* obj1
= 0 ;
14595 char * kwnames
[] = {
14596 (char *) "self",(char *) "docPointer", NULL
14599 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetDocPointer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14600 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14601 if (!SWIG_IsOK(res1
)) {
14602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14604 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14605 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
14606 if (!SWIG_IsOK(res2
)) {
14607 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "2"" of type '" "void *""'");
14610 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14611 (arg1
)->SetDocPointer(arg2
);
14612 wxPyEndAllowThreads(__tstate
);
14613 if (PyErr_Occurred()) SWIG_fail
;
14615 resultobj
= SWIG_Py_Void();
14622 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14623 PyObject
*resultobj
= 0;
14624 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14630 PyObject
* obj0
= 0 ;
14631 PyObject
* obj1
= 0 ;
14632 char * kwnames
[] = {
14633 (char *) "self",(char *) "mask", NULL
14636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetModEventMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14638 if (!SWIG_IsOK(res1
)) {
14639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14641 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14642 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14643 if (!SWIG_IsOK(ecode2
)) {
14644 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "2"" of type '" "int""'");
14646 arg2
= static_cast< int >(val2
);
14648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14649 (arg1
)->SetModEventMask(arg2
);
14650 wxPyEndAllowThreads(__tstate
);
14651 if (PyErr_Occurred()) SWIG_fail
;
14653 resultobj
= SWIG_Py_Void();
14660 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14661 PyObject
*resultobj
= 0;
14662 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14666 PyObject
*swig_obj
[1] ;
14668 if (!args
) SWIG_fail
;
14669 swig_obj
[0] = args
;
14670 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14671 if (!SWIG_IsOK(res1
)) {
14672 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14674 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14677 result
= (int)(arg1
)->GetEdgeColumn();
14678 wxPyEndAllowThreads(__tstate
);
14679 if (PyErr_Occurred()) SWIG_fail
;
14681 resultobj
= SWIG_From_int(static_cast< int >(result
));
14688 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14689 PyObject
*resultobj
= 0;
14690 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14696 PyObject
* obj0
= 0 ;
14697 PyObject
* obj1
= 0 ;
14698 char * kwnames
[] = {
14699 (char *) "self",(char *) "column", NULL
14702 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14703 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14704 if (!SWIG_IsOK(res1
)) {
14705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14707 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14708 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14709 if (!SWIG_IsOK(ecode2
)) {
14710 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "2"" of type '" "int""'");
14712 arg2
= static_cast< int >(val2
);
14714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14715 (arg1
)->SetEdgeColumn(arg2
);
14716 wxPyEndAllowThreads(__tstate
);
14717 if (PyErr_Occurred()) SWIG_fail
;
14719 resultobj
= SWIG_Py_Void();
14726 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14727 PyObject
*resultobj
= 0;
14728 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14732 PyObject
*swig_obj
[1] ;
14734 if (!args
) SWIG_fail
;
14735 swig_obj
[0] = args
;
14736 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14737 if (!SWIG_IsOK(res1
)) {
14738 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14740 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14743 result
= (int)(arg1
)->GetEdgeMode();
14744 wxPyEndAllowThreads(__tstate
);
14745 if (PyErr_Occurred()) SWIG_fail
;
14747 resultobj
= SWIG_From_int(static_cast< int >(result
));
14754 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14755 PyObject
*resultobj
= 0;
14756 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14762 PyObject
* obj0
= 0 ;
14763 PyObject
* obj1
= 0 ;
14764 char * kwnames
[] = {
14765 (char *) "self",(char *) "mode", NULL
14768 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14769 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14770 if (!SWIG_IsOK(res1
)) {
14771 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14773 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14774 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14775 if (!SWIG_IsOK(ecode2
)) {
14776 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "2"" of type '" "int""'");
14778 arg2
= static_cast< int >(val2
);
14780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14781 (arg1
)->SetEdgeMode(arg2
);
14782 wxPyEndAllowThreads(__tstate
);
14783 if (PyErr_Occurred()) SWIG_fail
;
14785 resultobj
= SWIG_Py_Void();
14792 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14793 PyObject
*resultobj
= 0;
14794 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14798 PyObject
*swig_obj
[1] ;
14800 if (!args
) SWIG_fail
;
14801 swig_obj
[0] = args
;
14802 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14803 if (!SWIG_IsOK(res1
)) {
14804 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14806 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14809 result
= (arg1
)->GetEdgeColour();
14810 wxPyEndAllowThreads(__tstate
);
14811 if (PyErr_Occurred()) SWIG_fail
;
14813 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
14820 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14821 PyObject
*resultobj
= 0;
14822 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14823 wxColour
*arg2
= 0 ;
14827 PyObject
* obj0
= 0 ;
14828 PyObject
* obj1
= 0 ;
14829 char * kwnames
[] = {
14830 (char *) "self",(char *) "edgeColour", NULL
14833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14835 if (!SWIG_IsOK(res1
)) {
14836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14838 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14841 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
14844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14845 (arg1
)->SetEdgeColour((wxColour
const &)*arg2
);
14846 wxPyEndAllowThreads(__tstate
);
14847 if (PyErr_Occurred()) SWIG_fail
;
14849 resultobj
= SWIG_Py_Void();
14856 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14857 PyObject
*resultobj
= 0;
14858 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14861 PyObject
*swig_obj
[1] ;
14863 if (!args
) SWIG_fail
;
14864 swig_obj
[0] = args
;
14865 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14866 if (!SWIG_IsOK(res1
)) {
14867 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14869 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14872 (arg1
)->SearchAnchor();
14873 wxPyEndAllowThreads(__tstate
);
14874 if (PyErr_Occurred()) SWIG_fail
;
14876 resultobj
= SWIG_Py_Void();
14883 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14884 PyObject
*resultobj
= 0;
14885 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14887 wxString
*arg3
= 0 ;
14893 bool temp3
= false ;
14894 PyObject
* obj0
= 0 ;
14895 PyObject
* obj1
= 0 ;
14896 PyObject
* obj2
= 0 ;
14897 char * kwnames
[] = {
14898 (char *) "self",(char *) "flags",(char *) "text", NULL
14901 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14902 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14903 if (!SWIG_IsOK(res1
)) {
14904 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14906 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14907 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14908 if (!SWIG_IsOK(ecode2
)) {
14909 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "2"" of type '" "int""'");
14911 arg2
= static_cast< int >(val2
);
14913 arg3
= wxString_in_helper(obj2
);
14914 if (arg3
== NULL
) SWIG_fail
;
14918 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14919 result
= (int)(arg1
)->SearchNext(arg2
,(wxString
const &)*arg3
);
14920 wxPyEndAllowThreads(__tstate
);
14921 if (PyErr_Occurred()) SWIG_fail
;
14923 resultobj
= SWIG_From_int(static_cast< int >(result
));
14938 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14939 PyObject
*resultobj
= 0;
14940 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14942 wxString
*arg3
= 0 ;
14948 bool temp3
= false ;
14949 PyObject
* obj0
= 0 ;
14950 PyObject
* obj1
= 0 ;
14951 PyObject
* obj2
= 0 ;
14952 char * kwnames
[] = {
14953 (char *) "self",(char *) "flags",(char *) "text", NULL
14956 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchPrev",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14957 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14958 if (!SWIG_IsOK(res1
)) {
14959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14961 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14962 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14963 if (!SWIG_IsOK(ecode2
)) {
14964 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "2"" of type '" "int""'");
14966 arg2
= static_cast< int >(val2
);
14968 arg3
= wxString_in_helper(obj2
);
14969 if (arg3
== NULL
) SWIG_fail
;
14973 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14974 result
= (int)(arg1
)->SearchPrev(arg2
,(wxString
const &)*arg3
);
14975 wxPyEndAllowThreads(__tstate
);
14976 if (PyErr_Occurred()) SWIG_fail
;
14978 resultobj
= SWIG_From_int(static_cast< int >(result
));
14993 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesOnScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14994 PyObject
*resultobj
= 0;
14995 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14999 PyObject
*swig_obj
[1] ;
15001 if (!args
) SWIG_fail
;
15002 swig_obj
[0] = args
;
15003 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15004 if (!SWIG_IsOK(res1
)) {
15005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesOnScreen" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15007 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15009 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15010 result
= (int)(arg1
)->LinesOnScreen();
15011 wxPyEndAllowThreads(__tstate
);
15012 if (PyErr_Occurred()) SWIG_fail
;
15014 resultobj
= SWIG_From_int(static_cast< int >(result
));
15021 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UsePopUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15022 PyObject
*resultobj
= 0;
15023 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15029 PyObject
* obj0
= 0 ;
15030 PyObject
* obj1
= 0 ;
15031 char * kwnames
[] = {
15032 (char *) "self",(char *) "allowPopUp", NULL
15035 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_UsePopUp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15036 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15037 if (!SWIG_IsOK(res1
)) {
15038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15040 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15041 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15042 if (!SWIG_IsOK(ecode2
)) {
15043 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "2"" of type '" "bool""'");
15045 arg2
= static_cast< bool >(val2
);
15047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15048 (arg1
)->UsePopUp(arg2
);
15049 wxPyEndAllowThreads(__tstate
);
15050 if (PyErr_Occurred()) SWIG_fail
;
15052 resultobj
= SWIG_Py_Void();
15059 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionIsRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15060 PyObject
*resultobj
= 0;
15061 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15065 PyObject
*swig_obj
[1] ;
15067 if (!args
) SWIG_fail
;
15068 swig_obj
[0] = args
;
15069 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15070 if (!SWIG_IsOK(res1
)) {
15071 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionIsRectangle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15073 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15076 result
= (bool)(arg1
)->SelectionIsRectangle();
15077 wxPyEndAllowThreads(__tstate
);
15078 if (PyErr_Occurred()) SWIG_fail
;
15081 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15090 PyObject
*resultobj
= 0;
15091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15097 PyObject
* obj0
= 0 ;
15098 PyObject
* obj1
= 0 ;
15099 char * kwnames
[] = {
15100 (char *) "self",(char *) "zoom", NULL
15103 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15104 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15105 if (!SWIG_IsOK(res1
)) {
15106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15108 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15109 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15110 if (!SWIG_IsOK(ecode2
)) {
15111 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "2"" of type '" "int""'");
15113 arg2
= static_cast< int >(val2
);
15115 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15116 (arg1
)->SetZoom(arg2
);
15117 wxPyEndAllowThreads(__tstate
);
15118 if (PyErr_Occurred()) SWIG_fail
;
15120 resultobj
= SWIG_Py_Void();
15127 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15128 PyObject
*resultobj
= 0;
15129 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15133 PyObject
*swig_obj
[1] ;
15135 if (!args
) SWIG_fail
;
15136 swig_obj
[0] = args
;
15137 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15138 if (!SWIG_IsOK(res1
)) {
15139 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15141 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15144 result
= (int)(arg1
)->GetZoom();
15145 wxPyEndAllowThreads(__tstate
);
15146 if (PyErr_Occurred()) SWIG_fail
;
15148 resultobj
= SWIG_From_int(static_cast< int >(result
));
15155 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CreateDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15156 PyObject
*resultobj
= 0;
15157 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15161 PyObject
*swig_obj
[1] ;
15163 if (!args
) SWIG_fail
;
15164 swig_obj
[0] = args
;
15165 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15166 if (!SWIG_IsOK(res1
)) {
15167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CreateDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15169 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15172 result
= (void *)(arg1
)->CreateDocument();
15173 wxPyEndAllowThreads(__tstate
);
15174 if (PyErr_Occurred()) SWIG_fail
;
15176 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
15183 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddRefDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15184 PyObject
*resultobj
= 0;
15185 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15186 void *arg2
= (void *) 0 ;
15190 PyObject
* obj0
= 0 ;
15191 PyObject
* obj1
= 0 ;
15192 char * kwnames
[] = {
15193 (char *) "self",(char *) "docPointer", NULL
15196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddRefDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15197 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15198 if (!SWIG_IsOK(res1
)) {
15199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15201 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15202 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15203 if (!SWIG_IsOK(res2
)) {
15204 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "2"" of type '" "void *""'");
15207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15208 (arg1
)->AddRefDocument(arg2
);
15209 wxPyEndAllowThreads(__tstate
);
15210 if (PyErr_Occurred()) SWIG_fail
;
15212 resultobj
= SWIG_Py_Void();
15219 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReleaseDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15220 PyObject
*resultobj
= 0;
15221 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15222 void *arg2
= (void *) 0 ;
15226 PyObject
* obj0
= 0 ;
15227 PyObject
* obj1
= 0 ;
15228 char * kwnames
[] = {
15229 (char *) "self",(char *) "docPointer", NULL
15232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReleaseDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15234 if (!SWIG_IsOK(res1
)) {
15235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15238 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15239 if (!SWIG_IsOK(res2
)) {
15240 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "2"" of type '" "void *""'");
15243 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15244 (arg1
)->ReleaseDocument(arg2
);
15245 wxPyEndAllowThreads(__tstate
);
15246 if (PyErr_Occurred()) SWIG_fail
;
15248 resultobj
= SWIG_Py_Void();
15255 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15256 PyObject
*resultobj
= 0;
15257 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15261 PyObject
*swig_obj
[1] ;
15263 if (!args
) SWIG_fail
;
15264 swig_obj
[0] = args
;
15265 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15266 if (!SWIG_IsOK(res1
)) {
15267 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15269 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15272 result
= (int)(arg1
)->GetModEventMask();
15273 wxPyEndAllowThreads(__tstate
);
15274 if (PyErr_Occurred()) SWIG_fail
;
15276 resultobj
= SWIG_From_int(static_cast< int >(result
));
15283 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15284 PyObject
*resultobj
= 0;
15285 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15291 PyObject
* obj0
= 0 ;
15292 PyObject
* obj1
= 0 ;
15293 char * kwnames
[] = {
15294 (char *) "self",(char *) "focus", NULL
15297 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCFocus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15298 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15299 if (!SWIG_IsOK(res1
)) {
15300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15302 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15303 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15304 if (!SWIG_IsOK(ecode2
)) {
15305 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "2"" of type '" "bool""'");
15307 arg2
= static_cast< bool >(val2
);
15309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15310 (arg1
)->SetSTCFocus(arg2
);
15311 wxPyEndAllowThreads(__tstate
);
15312 if (PyErr_Occurred()) SWIG_fail
;
15314 resultobj
= SWIG_Py_Void();
15321 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15322 PyObject
*resultobj
= 0;
15323 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15327 PyObject
*swig_obj
[1] ;
15329 if (!args
) SWIG_fail
;
15330 swig_obj
[0] = args
;
15331 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15332 if (!SWIG_IsOK(res1
)) {
15333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15335 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15338 result
= (bool)(arg1
)->GetSTCFocus();
15339 wxPyEndAllowThreads(__tstate
);
15340 if (PyErr_Occurred()) SWIG_fail
;
15343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15351 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15352 PyObject
*resultobj
= 0;
15353 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15359 PyObject
* obj0
= 0 ;
15360 PyObject
* obj1
= 0 ;
15361 char * kwnames
[] = {
15362 (char *) "self",(char *) "statusCode", NULL
15365 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15366 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15367 if (!SWIG_IsOK(res1
)) {
15368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15370 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15371 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15372 if (!SWIG_IsOK(ecode2
)) {
15373 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "2"" of type '" "int""'");
15375 arg2
= static_cast< int >(val2
);
15377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15378 (arg1
)->SetStatus(arg2
);
15379 wxPyEndAllowThreads(__tstate
);
15380 if (PyErr_Occurred()) SWIG_fail
;
15382 resultobj
= SWIG_Py_Void();
15389 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15390 PyObject
*resultobj
= 0;
15391 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15395 PyObject
*swig_obj
[1] ;
15397 if (!args
) SWIG_fail
;
15398 swig_obj
[0] = args
;
15399 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15400 if (!SWIG_IsOK(res1
)) {
15401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15403 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15406 result
= (int)(arg1
)->GetStatus();
15407 wxPyEndAllowThreads(__tstate
);
15408 if (PyErr_Occurred()) SWIG_fail
;
15410 resultobj
= SWIG_From_int(static_cast< int >(result
));
15417 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15418 PyObject
*resultobj
= 0;
15419 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15425 PyObject
* obj0
= 0 ;
15426 PyObject
* obj1
= 0 ;
15427 char * kwnames
[] = {
15428 (char *) "self",(char *) "captures", NULL
15431 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDownCaptures",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15432 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15433 if (!SWIG_IsOK(res1
)) {
15434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15436 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15437 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15438 if (!SWIG_IsOK(ecode2
)) {
15439 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "2"" of type '" "bool""'");
15441 arg2
= static_cast< bool >(val2
);
15443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15444 (arg1
)->SetMouseDownCaptures(arg2
);
15445 wxPyEndAllowThreads(__tstate
);
15446 if (PyErr_Occurred()) SWIG_fail
;
15448 resultobj
= SWIG_Py_Void();
15455 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15456 PyObject
*resultobj
= 0;
15457 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15461 PyObject
*swig_obj
[1] ;
15463 if (!args
) SWIG_fail
;
15464 swig_obj
[0] = args
;
15465 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15466 if (!SWIG_IsOK(res1
)) {
15467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15469 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15472 result
= (bool)(arg1
)->GetMouseDownCaptures();
15473 wxPyEndAllowThreads(__tstate
);
15474 if (PyErr_Occurred()) SWIG_fail
;
15477 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15485 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15486 PyObject
*resultobj
= 0;
15487 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15493 PyObject
* obj0
= 0 ;
15494 PyObject
* obj1
= 0 ;
15495 char * kwnames
[] = {
15496 (char *) "self",(char *) "cursorType", NULL
15499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCCursor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15500 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15501 if (!SWIG_IsOK(res1
)) {
15502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15504 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15505 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15506 if (!SWIG_IsOK(ecode2
)) {
15507 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "2"" of type '" "int""'");
15509 arg2
= static_cast< int >(val2
);
15511 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15512 (arg1
)->SetSTCCursor(arg2
);
15513 wxPyEndAllowThreads(__tstate
);
15514 if (PyErr_Occurred()) SWIG_fail
;
15516 resultobj
= SWIG_Py_Void();
15523 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15524 PyObject
*resultobj
= 0;
15525 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15529 PyObject
*swig_obj
[1] ;
15531 if (!args
) SWIG_fail
;
15532 swig_obj
[0] = args
;
15533 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15534 if (!SWIG_IsOK(res1
)) {
15535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15537 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15540 result
= (int)(arg1
)->GetSTCCursor();
15541 wxPyEndAllowThreads(__tstate
);
15542 if (PyErr_Occurred()) SWIG_fail
;
15544 resultobj
= SWIG_From_int(static_cast< int >(result
));
15551 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15552 PyObject
*resultobj
= 0;
15553 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15559 PyObject
* obj0
= 0 ;
15560 PyObject
* obj1
= 0 ;
15561 char * kwnames
[] = {
15562 (char *) "self",(char *) "symbol", NULL
15565 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetControlCharSymbol",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15566 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15567 if (!SWIG_IsOK(res1
)) {
15568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15570 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15571 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15572 if (!SWIG_IsOK(ecode2
)) {
15573 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "2"" of type '" "int""'");
15575 arg2
= static_cast< int >(val2
);
15577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15578 (arg1
)->SetControlCharSymbol(arg2
);
15579 wxPyEndAllowThreads(__tstate
);
15580 if (PyErr_Occurred()) SWIG_fail
;
15582 resultobj
= SWIG_Py_Void();
15589 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15590 PyObject
*resultobj
= 0;
15591 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15595 PyObject
*swig_obj
[1] ;
15597 if (!args
) SWIG_fail
;
15598 swig_obj
[0] = args
;
15599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15600 if (!SWIG_IsOK(res1
)) {
15601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15603 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15606 result
= (int)(arg1
)->GetControlCharSymbol();
15607 wxPyEndAllowThreads(__tstate
);
15608 if (PyErr_Occurred()) SWIG_fail
;
15610 resultobj
= SWIG_From_int(static_cast< int >(result
));
15617 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15618 PyObject
*resultobj
= 0;
15619 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15622 PyObject
*swig_obj
[1] ;
15624 if (!args
) SWIG_fail
;
15625 swig_obj
[0] = args
;
15626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15627 if (!SWIG_IsOK(res1
)) {
15628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15630 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15633 (arg1
)->WordPartLeft();
15634 wxPyEndAllowThreads(__tstate
);
15635 if (PyErr_Occurred()) SWIG_fail
;
15637 resultobj
= SWIG_Py_Void();
15644 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15645 PyObject
*resultobj
= 0;
15646 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15649 PyObject
*swig_obj
[1] ;
15651 if (!args
) SWIG_fail
;
15652 swig_obj
[0] = args
;
15653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15654 if (!SWIG_IsOK(res1
)) {
15655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15657 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15660 (arg1
)->WordPartLeftExtend();
15661 wxPyEndAllowThreads(__tstate
);
15662 if (PyErr_Occurred()) SWIG_fail
;
15664 resultobj
= SWIG_Py_Void();
15671 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15672 PyObject
*resultobj
= 0;
15673 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15676 PyObject
*swig_obj
[1] ;
15678 if (!args
) SWIG_fail
;
15679 swig_obj
[0] = args
;
15680 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15681 if (!SWIG_IsOK(res1
)) {
15682 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15684 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15687 (arg1
)->WordPartRight();
15688 wxPyEndAllowThreads(__tstate
);
15689 if (PyErr_Occurred()) SWIG_fail
;
15691 resultobj
= SWIG_Py_Void();
15698 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15699 PyObject
*resultobj
= 0;
15700 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15703 PyObject
*swig_obj
[1] ;
15705 if (!args
) SWIG_fail
;
15706 swig_obj
[0] = args
;
15707 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15708 if (!SWIG_IsOK(res1
)) {
15709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15711 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15713 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15714 (arg1
)->WordPartRightExtend();
15715 wxPyEndAllowThreads(__tstate
);
15716 if (PyErr_Occurred()) SWIG_fail
;
15718 resultobj
= SWIG_Py_Void();
15725 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVisiblePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15726 PyObject
*resultobj
= 0;
15727 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15736 PyObject
* obj0
= 0 ;
15737 PyObject
* obj1
= 0 ;
15738 PyObject
* obj2
= 0 ;
15739 char * kwnames
[] = {
15740 (char *) "self",(char *) "visiblePolicy",(char *) "visibleSlop", NULL
15743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetVisiblePolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15745 if (!SWIG_IsOK(res1
)) {
15746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15748 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15750 if (!SWIG_IsOK(ecode2
)) {
15751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "2"" of type '" "int""'");
15753 arg2
= static_cast< int >(val2
);
15754 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15755 if (!SWIG_IsOK(ecode3
)) {
15756 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "3"" of type '" "int""'");
15758 arg3
= static_cast< int >(val3
);
15760 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15761 (arg1
)->SetVisiblePolicy(arg2
,arg3
);
15762 wxPyEndAllowThreads(__tstate
);
15763 if (PyErr_Occurred()) SWIG_fail
;
15765 resultobj
= SWIG_Py_Void();
15772 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15773 PyObject
*resultobj
= 0;
15774 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15777 PyObject
*swig_obj
[1] ;
15779 if (!args
) SWIG_fail
;
15780 swig_obj
[0] = args
;
15781 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15782 if (!SWIG_IsOK(res1
)) {
15783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15785 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15788 (arg1
)->DelLineLeft();
15789 wxPyEndAllowThreads(__tstate
);
15790 if (PyErr_Occurred()) SWIG_fail
;
15792 resultobj
= SWIG_Py_Void();
15799 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15800 PyObject
*resultobj
= 0;
15801 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15804 PyObject
*swig_obj
[1] ;
15806 if (!args
) SWIG_fail
;
15807 swig_obj
[0] = args
;
15808 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15809 if (!SWIG_IsOK(res1
)) {
15810 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15812 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15814 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15815 (arg1
)->DelLineRight();
15816 wxPyEndAllowThreads(__tstate
);
15817 if (PyErr_Occurred()) SWIG_fail
;
15819 resultobj
= SWIG_Py_Void();
15826 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15827 PyObject
*resultobj
= 0;
15828 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15834 PyObject
* obj0
= 0 ;
15835 PyObject
* obj1
= 0 ;
15836 char * kwnames
[] = {
15837 (char *) "self",(char *) "newOffset", NULL
15840 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetXOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15841 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15842 if (!SWIG_IsOK(res1
)) {
15843 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15845 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15846 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15847 if (!SWIG_IsOK(ecode2
)) {
15848 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "2"" of type '" "int""'");
15850 arg2
= static_cast< int >(val2
);
15852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15853 (arg1
)->SetXOffset(arg2
);
15854 wxPyEndAllowThreads(__tstate
);
15855 if (PyErr_Occurred()) SWIG_fail
;
15857 resultobj
= SWIG_Py_Void();
15864 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15865 PyObject
*resultobj
= 0;
15866 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15870 PyObject
*swig_obj
[1] ;
15872 if (!args
) SWIG_fail
;
15873 swig_obj
[0] = args
;
15874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15875 if (!SWIG_IsOK(res1
)) {
15876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15878 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15881 result
= (int)(arg1
)->GetXOffset();
15882 wxPyEndAllowThreads(__tstate
);
15883 if (PyErr_Occurred()) SWIG_fail
;
15885 resultobj
= SWIG_From_int(static_cast< int >(result
));
15892 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ChooseCaretX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15893 PyObject
*resultobj
= 0;
15894 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15897 PyObject
*swig_obj
[1] ;
15899 if (!args
) SWIG_fail
;
15900 swig_obj
[0] = args
;
15901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15902 if (!SWIG_IsOK(res1
)) {
15903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ChooseCaretX" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15905 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15908 (arg1
)->ChooseCaretX();
15909 wxPyEndAllowThreads(__tstate
);
15910 if (PyErr_Occurred()) SWIG_fail
;
15912 resultobj
= SWIG_Py_Void();
15919 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15920 PyObject
*resultobj
= 0;
15921 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15930 PyObject
* obj0
= 0 ;
15931 PyObject
* obj1
= 0 ;
15932 PyObject
* obj2
= 0 ;
15933 char * kwnames
[] = {
15934 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15937 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetXCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15938 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15939 if (!SWIG_IsOK(res1
)) {
15940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15942 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15943 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15944 if (!SWIG_IsOK(ecode2
)) {
15945 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15947 arg2
= static_cast< int >(val2
);
15948 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15949 if (!SWIG_IsOK(ecode3
)) {
15950 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "3"" of type '" "int""'");
15952 arg3
= static_cast< int >(val3
);
15954 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15955 (arg1
)->SetXCaretPolicy(arg2
,arg3
);
15956 wxPyEndAllowThreads(__tstate
);
15957 if (PyErr_Occurred()) SWIG_fail
;
15959 resultobj
= SWIG_Py_Void();
15966 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetYCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15967 PyObject
*resultobj
= 0;
15968 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15977 PyObject
* obj0
= 0 ;
15978 PyObject
* obj1
= 0 ;
15979 PyObject
* obj2
= 0 ;
15980 char * kwnames
[] = {
15981 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetYCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15986 if (!SWIG_IsOK(res1
)) {
15987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15989 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15990 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15991 if (!SWIG_IsOK(ecode2
)) {
15992 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15994 arg2
= static_cast< int >(val2
);
15995 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15996 if (!SWIG_IsOK(ecode3
)) {
15997 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "3"" of type '" "int""'");
15999 arg3
= static_cast< int >(val3
);
16001 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16002 (arg1
)->SetYCaretPolicy(arg2
,arg3
);
16003 wxPyEndAllowThreads(__tstate
);
16004 if (PyErr_Occurred()) SWIG_fail
;
16006 resultobj
= SWIG_Py_Void();
16013 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16014 PyObject
*resultobj
= 0;
16015 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16021 PyObject
* obj0
= 0 ;
16022 PyObject
* obj1
= 0 ;
16023 char * kwnames
[] = {
16024 (char *) "self",(char *) "mode", NULL
16027 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16028 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16029 if (!SWIG_IsOK(res1
)) {
16030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16032 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16033 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16034 if (!SWIG_IsOK(ecode2
)) {
16035 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "2"" of type '" "int""'");
16037 arg2
= static_cast< int >(val2
);
16039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16040 (arg1
)->SetPrintWrapMode(arg2
);
16041 wxPyEndAllowThreads(__tstate
);
16042 if (PyErr_Occurred()) SWIG_fail
;
16044 resultobj
= SWIG_Py_Void();
16051 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16052 PyObject
*resultobj
= 0;
16053 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16057 PyObject
*swig_obj
[1] ;
16059 if (!args
) SWIG_fail
;
16060 swig_obj
[0] = args
;
16061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16062 if (!SWIG_IsOK(res1
)) {
16063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16068 result
= (int)(arg1
)->GetPrintWrapMode();
16069 wxPyEndAllowThreads(__tstate
);
16070 if (PyErr_Occurred()) SWIG_fail
;
16072 resultobj
= SWIG_From_int(static_cast< int >(result
));
16079 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16080 PyObject
*resultobj
= 0;
16081 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16083 wxColour
*arg3
= 0 ;
16089 PyObject
* obj0
= 0 ;
16090 PyObject
* obj1
= 0 ;
16091 PyObject
* obj2
= 0 ;
16092 char * kwnames
[] = {
16093 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
16096 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16097 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16098 if (!SWIG_IsOK(res1
)) {
16099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16101 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16102 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16103 if (!SWIG_IsOK(ecode2
)) {
16104 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "2"" of type '" "bool""'");
16106 arg2
= static_cast< bool >(val2
);
16109 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16113 (arg1
)->SetHotspotActiveForeground(arg2
,(wxColour
const &)*arg3
);
16114 wxPyEndAllowThreads(__tstate
);
16115 if (PyErr_Occurred()) SWIG_fail
;
16117 resultobj
= SWIG_Py_Void();
16124 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16125 PyObject
*resultobj
= 0;
16126 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16128 wxColour
*arg3
= 0 ;
16134 PyObject
* obj0
= 0 ;
16135 PyObject
* obj1
= 0 ;
16136 PyObject
* obj2
= 0 ;
16137 char * kwnames
[] = {
16138 (char *) "self",(char *) "useSetting",(char *) "back", NULL
16141 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16142 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16143 if (!SWIG_IsOK(res1
)) {
16144 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16146 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16147 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16148 if (!SWIG_IsOK(ecode2
)) {
16149 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "2"" of type '" "bool""'");
16151 arg2
= static_cast< bool >(val2
);
16154 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16158 (arg1
)->SetHotspotActiveBackground(arg2
,(wxColour
const &)*arg3
);
16159 wxPyEndAllowThreads(__tstate
);
16160 if (PyErr_Occurred()) SWIG_fail
;
16162 resultobj
= SWIG_Py_Void();
16169 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16170 PyObject
*resultobj
= 0;
16171 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16177 PyObject
* obj0
= 0 ;
16178 PyObject
* obj1
= 0 ;
16179 char * kwnames
[] = {
16180 (char *) "self",(char *) "underline", NULL
16183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotActiveUnderline",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16185 if (!SWIG_IsOK(res1
)) {
16186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16188 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16189 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16190 if (!SWIG_IsOK(ecode2
)) {
16191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "2"" of type '" "bool""'");
16193 arg2
= static_cast< bool >(val2
);
16195 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16196 (arg1
)->SetHotspotActiveUnderline(arg2
);
16197 wxPyEndAllowThreads(__tstate
);
16198 if (PyErr_Occurred()) SWIG_fail
;
16200 resultobj
= SWIG_Py_Void();
16207 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotSingleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16208 PyObject
*resultobj
= 0;
16209 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16215 PyObject
* obj0
= 0 ;
16216 PyObject
* obj1
= 0 ;
16217 char * kwnames
[] = {
16218 (char *) "self",(char *) "singleLine", NULL
16221 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotSingleLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16222 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16223 if (!SWIG_IsOK(res1
)) {
16224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16226 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16227 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16228 if (!SWIG_IsOK(ecode2
)) {
16229 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "2"" of type '" "bool""'");
16231 arg2
= static_cast< bool >(val2
);
16233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16234 (arg1
)->SetHotspotSingleLine(arg2
);
16235 wxPyEndAllowThreads(__tstate
);
16236 if (PyErr_Occurred()) SWIG_fail
;
16238 resultobj
= SWIG_Py_Void();
16245 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16246 PyObject
*resultobj
= 0;
16247 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16250 PyObject
*swig_obj
[1] ;
16252 if (!args
) SWIG_fail
;
16253 swig_obj
[0] = args
;
16254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16255 if (!SWIG_IsOK(res1
)) {
16256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16258 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16261 (arg1
)->ParaDown();
16262 wxPyEndAllowThreads(__tstate
);
16263 if (PyErr_Occurred()) SWIG_fail
;
16265 resultobj
= SWIG_Py_Void();
16272 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16273 PyObject
*resultobj
= 0;
16274 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16277 PyObject
*swig_obj
[1] ;
16279 if (!args
) SWIG_fail
;
16280 swig_obj
[0] = args
;
16281 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16282 if (!SWIG_IsOK(res1
)) {
16283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16285 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16288 (arg1
)->ParaDownExtend();
16289 wxPyEndAllowThreads(__tstate
);
16290 if (PyErr_Occurred()) SWIG_fail
;
16292 resultobj
= SWIG_Py_Void();
16299 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16300 PyObject
*resultobj
= 0;
16301 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16304 PyObject
*swig_obj
[1] ;
16306 if (!args
) SWIG_fail
;
16307 swig_obj
[0] = args
;
16308 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16309 if (!SWIG_IsOK(res1
)) {
16310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16312 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16316 wxPyEndAllowThreads(__tstate
);
16317 if (PyErr_Occurred()) SWIG_fail
;
16319 resultobj
= SWIG_Py_Void();
16326 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16327 PyObject
*resultobj
= 0;
16328 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16331 PyObject
*swig_obj
[1] ;
16333 if (!args
) SWIG_fail
;
16334 swig_obj
[0] = args
;
16335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16336 if (!SWIG_IsOK(res1
)) {
16337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16339 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16342 (arg1
)->ParaUpExtend();
16343 wxPyEndAllowThreads(__tstate
);
16344 if (PyErr_Occurred()) SWIG_fail
;
16346 resultobj
= SWIG_Py_Void();
16353 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionBefore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16354 PyObject
*resultobj
= 0;
16355 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16362 PyObject
* obj0
= 0 ;
16363 PyObject
* obj1
= 0 ;
16364 char * kwnames
[] = {
16365 (char *) "self",(char *) "pos", NULL
16368 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionBefore",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16369 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16370 if (!SWIG_IsOK(res1
)) {
16371 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16373 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16374 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16375 if (!SWIG_IsOK(ecode2
)) {
16376 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "2"" of type '" "int""'");
16378 arg2
= static_cast< int >(val2
);
16380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16381 result
= (int)(arg1
)->PositionBefore(arg2
);
16382 wxPyEndAllowThreads(__tstate
);
16383 if (PyErr_Occurred()) SWIG_fail
;
16385 resultobj
= SWIG_From_int(static_cast< int >(result
));
16392 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionAfter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16393 PyObject
*resultobj
= 0;
16394 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16401 PyObject
* obj0
= 0 ;
16402 PyObject
* obj1
= 0 ;
16403 char * kwnames
[] = {
16404 (char *) "self",(char *) "pos", NULL
16407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionAfter",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16409 if (!SWIG_IsOK(res1
)) {
16410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16412 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16413 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16414 if (!SWIG_IsOK(ecode2
)) {
16415 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "2"" of type '" "int""'");
16417 arg2
= static_cast< int >(val2
);
16419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16420 result
= (int)(arg1
)->PositionAfter(arg2
);
16421 wxPyEndAllowThreads(__tstate
);
16422 if (PyErr_Occurred()) SWIG_fail
;
16424 resultobj
= SWIG_From_int(static_cast< int >(result
));
16431 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16432 PyObject
*resultobj
= 0;
16433 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16442 PyObject
* obj0
= 0 ;
16443 PyObject
* obj1
= 0 ;
16444 PyObject
* obj2
= 0 ;
16445 char * kwnames
[] = {
16446 (char *) "self",(char *) "start",(char *) "end", NULL
16449 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16450 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16451 if (!SWIG_IsOK(res1
)) {
16452 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16454 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16455 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16456 if (!SWIG_IsOK(ecode2
)) {
16457 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "2"" of type '" "int""'");
16459 arg2
= static_cast< int >(val2
);
16460 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16461 if (!SWIG_IsOK(ecode3
)) {
16462 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "3"" of type '" "int""'");
16464 arg3
= static_cast< int >(val3
);
16466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16467 (arg1
)->CopyRange(arg2
,arg3
);
16468 wxPyEndAllowThreads(__tstate
);
16469 if (PyErr_Occurred()) SWIG_fail
;
16471 resultobj
= SWIG_Py_Void();
16478 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16479 PyObject
*resultobj
= 0;
16480 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16482 wxString
*arg3
= 0 ;
16487 bool temp3
= false ;
16488 PyObject
* obj0
= 0 ;
16489 PyObject
* obj1
= 0 ;
16490 PyObject
* obj2
= 0 ;
16491 char * kwnames
[] = {
16492 (char *) "self",(char *) "length",(char *) "text", NULL
16495 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16496 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16497 if (!SWIG_IsOK(res1
)) {
16498 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16500 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16501 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16502 if (!SWIG_IsOK(ecode2
)) {
16503 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "2"" of type '" "int""'");
16505 arg2
= static_cast< int >(val2
);
16507 arg3
= wxString_in_helper(obj2
);
16508 if (arg3
== NULL
) SWIG_fail
;
16512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16513 (arg1
)->CopyText(arg2
,(wxString
const &)*arg3
);
16514 wxPyEndAllowThreads(__tstate
);
16515 if (PyErr_Occurred()) SWIG_fail
;
16517 resultobj
= SWIG_Py_Void();
16532 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16533 PyObject
*resultobj
= 0;
16534 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16540 PyObject
* obj0
= 0 ;
16541 PyObject
* obj1
= 0 ;
16542 char * kwnames
[] = {
16543 (char *) "self",(char *) "mode", NULL
16546 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16547 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16548 if (!SWIG_IsOK(res1
)) {
16549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16551 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16552 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16553 if (!SWIG_IsOK(ecode2
)) {
16554 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "2"" of type '" "int""'");
16556 arg2
= static_cast< int >(val2
);
16558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16559 (arg1
)->SetSelectionMode(arg2
);
16560 wxPyEndAllowThreads(__tstate
);
16561 if (PyErr_Occurred()) SWIG_fail
;
16563 resultobj
= SWIG_Py_Void();
16570 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16571 PyObject
*resultobj
= 0;
16572 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16576 PyObject
*swig_obj
[1] ;
16578 if (!args
) SWIG_fail
;
16579 swig_obj
[0] = args
;
16580 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16581 if (!SWIG_IsOK(res1
)) {
16582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16584 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16587 result
= (int)(arg1
)->GetSelectionMode();
16588 wxPyEndAllowThreads(__tstate
);
16589 if (PyErr_Occurred()) SWIG_fail
;
16591 resultobj
= SWIG_From_int(static_cast< int >(result
));
16598 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16599 PyObject
*resultobj
= 0;
16600 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16607 PyObject
* obj0
= 0 ;
16608 PyObject
* obj1
= 0 ;
16609 char * kwnames
[] = {
16610 (char *) "self",(char *) "line", NULL
16613 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelStartPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16614 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16615 if (!SWIG_IsOK(res1
)) {
16616 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16618 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16619 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16620 if (!SWIG_IsOK(ecode2
)) {
16621 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "2"" of type '" "int""'");
16623 arg2
= static_cast< int >(val2
);
16625 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16626 result
= (int)(arg1
)->GetLineSelStartPosition(arg2
);
16627 wxPyEndAllowThreads(__tstate
);
16628 if (PyErr_Occurred()) SWIG_fail
;
16630 resultobj
= SWIG_From_int(static_cast< int >(result
));
16637 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16638 PyObject
*resultobj
= 0;
16639 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16646 PyObject
* obj0
= 0 ;
16647 PyObject
* obj1
= 0 ;
16648 char * kwnames
[] = {
16649 (char *) "self",(char *) "line", NULL
16652 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16653 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16654 if (!SWIG_IsOK(res1
)) {
16655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16657 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16658 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16659 if (!SWIG_IsOK(ecode2
)) {
16660 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "2"" of type '" "int""'");
16662 arg2
= static_cast< int >(val2
);
16664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16665 result
= (int)(arg1
)->GetLineSelEndPosition(arg2
);
16666 wxPyEndAllowThreads(__tstate
);
16667 if (PyErr_Occurred()) SWIG_fail
;
16669 resultobj
= SWIG_From_int(static_cast< int >(result
));
16676 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16677 PyObject
*resultobj
= 0;
16678 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16681 PyObject
*swig_obj
[1] ;
16683 if (!args
) SWIG_fail
;
16684 swig_obj
[0] = args
;
16685 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16686 if (!SWIG_IsOK(res1
)) {
16687 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16689 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16691 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16692 (arg1
)->LineDownRectExtend();
16693 wxPyEndAllowThreads(__tstate
);
16694 if (PyErr_Occurred()) SWIG_fail
;
16696 resultobj
= SWIG_Py_Void();
16703 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16704 PyObject
*resultobj
= 0;
16705 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16708 PyObject
*swig_obj
[1] ;
16710 if (!args
) SWIG_fail
;
16711 swig_obj
[0] = args
;
16712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16713 if (!SWIG_IsOK(res1
)) {
16714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16716 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16719 (arg1
)->LineUpRectExtend();
16720 wxPyEndAllowThreads(__tstate
);
16721 if (PyErr_Occurred()) SWIG_fail
;
16723 resultobj
= SWIG_Py_Void();
16730 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16731 PyObject
*resultobj
= 0;
16732 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16735 PyObject
*swig_obj
[1] ;
16737 if (!args
) SWIG_fail
;
16738 swig_obj
[0] = args
;
16739 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16740 if (!SWIG_IsOK(res1
)) {
16741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16743 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16746 (arg1
)->CharLeftRectExtend();
16747 wxPyEndAllowThreads(__tstate
);
16748 if (PyErr_Occurred()) SWIG_fail
;
16750 resultobj
= SWIG_Py_Void();
16757 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16758 PyObject
*resultobj
= 0;
16759 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16762 PyObject
*swig_obj
[1] ;
16764 if (!args
) SWIG_fail
;
16765 swig_obj
[0] = args
;
16766 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16767 if (!SWIG_IsOK(res1
)) {
16768 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16770 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16773 (arg1
)->CharRightRectExtend();
16774 wxPyEndAllowThreads(__tstate
);
16775 if (PyErr_Occurred()) SWIG_fail
;
16777 resultobj
= SWIG_Py_Void();
16784 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16785 PyObject
*resultobj
= 0;
16786 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16789 PyObject
*swig_obj
[1] ;
16791 if (!args
) SWIG_fail
;
16792 swig_obj
[0] = args
;
16793 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16794 if (!SWIG_IsOK(res1
)) {
16795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16797 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16800 (arg1
)->HomeRectExtend();
16801 wxPyEndAllowThreads(__tstate
);
16802 if (PyErr_Occurred()) SWIG_fail
;
16804 resultobj
= SWIG_Py_Void();
16811 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16812 PyObject
*resultobj
= 0;
16813 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16816 PyObject
*swig_obj
[1] ;
16818 if (!args
) SWIG_fail
;
16819 swig_obj
[0] = args
;
16820 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16821 if (!SWIG_IsOK(res1
)) {
16822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16824 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16827 (arg1
)->VCHomeRectExtend();
16828 wxPyEndAllowThreads(__tstate
);
16829 if (PyErr_Occurred()) SWIG_fail
;
16831 resultobj
= SWIG_Py_Void();
16838 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16839 PyObject
*resultobj
= 0;
16840 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16843 PyObject
*swig_obj
[1] ;
16845 if (!args
) SWIG_fail
;
16846 swig_obj
[0] = args
;
16847 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16848 if (!SWIG_IsOK(res1
)) {
16849 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16851 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16853 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16854 (arg1
)->LineEndRectExtend();
16855 wxPyEndAllowThreads(__tstate
);
16856 if (PyErr_Occurred()) SWIG_fail
;
16858 resultobj
= SWIG_Py_Void();
16865 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16866 PyObject
*resultobj
= 0;
16867 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16870 PyObject
*swig_obj
[1] ;
16872 if (!args
) SWIG_fail
;
16873 swig_obj
[0] = args
;
16874 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16875 if (!SWIG_IsOK(res1
)) {
16876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16878 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16880 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16881 (arg1
)->PageUpRectExtend();
16882 wxPyEndAllowThreads(__tstate
);
16883 if (PyErr_Occurred()) SWIG_fail
;
16885 resultobj
= SWIG_Py_Void();
16892 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16893 PyObject
*resultobj
= 0;
16894 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16897 PyObject
*swig_obj
[1] ;
16899 if (!args
) SWIG_fail
;
16900 swig_obj
[0] = args
;
16901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16902 if (!SWIG_IsOK(res1
)) {
16903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16905 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16908 (arg1
)->PageDownRectExtend();
16909 wxPyEndAllowThreads(__tstate
);
16910 if (PyErr_Occurred()) SWIG_fail
;
16912 resultobj
= SWIG_Py_Void();
16919 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16920 PyObject
*resultobj
= 0;
16921 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16924 PyObject
*swig_obj
[1] ;
16926 if (!args
) SWIG_fail
;
16927 swig_obj
[0] = args
;
16928 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16929 if (!SWIG_IsOK(res1
)) {
16930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16932 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16935 (arg1
)->StutteredPageUp();
16936 wxPyEndAllowThreads(__tstate
);
16937 if (PyErr_Occurred()) SWIG_fail
;
16939 resultobj
= SWIG_Py_Void();
16946 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16947 PyObject
*resultobj
= 0;
16948 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16951 PyObject
*swig_obj
[1] ;
16953 if (!args
) SWIG_fail
;
16954 swig_obj
[0] = args
;
16955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16956 if (!SWIG_IsOK(res1
)) {
16957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16959 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16962 (arg1
)->StutteredPageUpExtend();
16963 wxPyEndAllowThreads(__tstate
);
16964 if (PyErr_Occurred()) SWIG_fail
;
16966 resultobj
= SWIG_Py_Void();
16973 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16974 PyObject
*resultobj
= 0;
16975 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16978 PyObject
*swig_obj
[1] ;
16980 if (!args
) SWIG_fail
;
16981 swig_obj
[0] = args
;
16982 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16983 if (!SWIG_IsOK(res1
)) {
16984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16986 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16989 (arg1
)->StutteredPageDown();
16990 wxPyEndAllowThreads(__tstate
);
16991 if (PyErr_Occurred()) SWIG_fail
;
16993 resultobj
= SWIG_Py_Void();
17000 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17001 PyObject
*resultobj
= 0;
17002 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17005 PyObject
*swig_obj
[1] ;
17007 if (!args
) SWIG_fail
;
17008 swig_obj
[0] = args
;
17009 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17010 if (!SWIG_IsOK(res1
)) {
17011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17013 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17016 (arg1
)->StutteredPageDownExtend();
17017 wxPyEndAllowThreads(__tstate
);
17018 if (PyErr_Occurred()) SWIG_fail
;
17020 resultobj
= SWIG_Py_Void();
17027 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17028 PyObject
*resultobj
= 0;
17029 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17032 PyObject
*swig_obj
[1] ;
17034 if (!args
) SWIG_fail
;
17035 swig_obj
[0] = args
;
17036 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17037 if (!SWIG_IsOK(res1
)) {
17038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17040 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17043 (arg1
)->WordLeftEnd();
17044 wxPyEndAllowThreads(__tstate
);
17045 if (PyErr_Occurred()) SWIG_fail
;
17047 resultobj
= SWIG_Py_Void();
17054 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17055 PyObject
*resultobj
= 0;
17056 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17059 PyObject
*swig_obj
[1] ;
17061 if (!args
) SWIG_fail
;
17062 swig_obj
[0] = args
;
17063 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17064 if (!SWIG_IsOK(res1
)) {
17065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17067 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17070 (arg1
)->WordLeftEndExtend();
17071 wxPyEndAllowThreads(__tstate
);
17072 if (PyErr_Occurred()) SWIG_fail
;
17074 resultobj
= SWIG_Py_Void();
17081 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17082 PyObject
*resultobj
= 0;
17083 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17086 PyObject
*swig_obj
[1] ;
17088 if (!args
) SWIG_fail
;
17089 swig_obj
[0] = args
;
17090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17091 if (!SWIG_IsOK(res1
)) {
17092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17094 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17097 (arg1
)->WordRightEnd();
17098 wxPyEndAllowThreads(__tstate
);
17099 if (PyErr_Occurred()) SWIG_fail
;
17101 resultobj
= SWIG_Py_Void();
17108 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17109 PyObject
*resultobj
= 0;
17110 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17113 PyObject
*swig_obj
[1] ;
17115 if (!args
) SWIG_fail
;
17116 swig_obj
[0] = args
;
17117 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17118 if (!SWIG_IsOK(res1
)) {
17119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17121 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17124 (arg1
)->WordRightEndExtend();
17125 wxPyEndAllowThreads(__tstate
);
17126 if (PyErr_Occurred()) SWIG_fail
;
17128 resultobj
= SWIG_Py_Void();
17135 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17136 PyObject
*resultobj
= 0;
17137 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17138 wxString
*arg2
= 0 ;
17141 bool temp2
= false ;
17142 PyObject
* obj0
= 0 ;
17143 PyObject
* obj1
= 0 ;
17144 char * kwnames
[] = {
17145 (char *) "self",(char *) "characters", NULL
17148 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWhitespaceChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17149 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17150 if (!SWIG_IsOK(res1
)) {
17151 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17153 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17155 arg2
= wxString_in_helper(obj1
);
17156 if (arg2
== NULL
) SWIG_fail
;
17160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17161 (arg1
)->SetWhitespaceChars((wxString
const &)*arg2
);
17162 wxPyEndAllowThreads(__tstate
);
17163 if (PyErr_Occurred()) SWIG_fail
;
17165 resultobj
= SWIG_Py_Void();
17180 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCharsDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17181 PyObject
*resultobj
= 0;
17182 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17185 PyObject
*swig_obj
[1] ;
17187 if (!args
) SWIG_fail
;
17188 swig_obj
[0] = args
;
17189 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17190 if (!SWIG_IsOK(res1
)) {
17191 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCharsDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17193 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17195 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17196 (arg1
)->SetCharsDefault();
17197 wxPyEndAllowThreads(__tstate
);
17198 if (PyErr_Occurred()) SWIG_fail
;
17200 resultobj
= SWIG_Py_Void();
17207 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17208 PyObject
*resultobj
= 0;
17209 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17213 PyObject
*swig_obj
[1] ;
17215 if (!args
) SWIG_fail
;
17216 swig_obj
[0] = args
;
17217 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17218 if (!SWIG_IsOK(res1
)) {
17219 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCurrent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17221 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17224 result
= (int)(arg1
)->AutoCompGetCurrent();
17225 wxPyEndAllowThreads(__tstate
);
17226 if (PyErr_Occurred()) SWIG_fail
;
17228 resultobj
= SWIG_From_int(static_cast< int >(result
));
17235 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Allocate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17236 PyObject
*resultobj
= 0;
17237 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17243 PyObject
* obj0
= 0 ;
17244 PyObject
* obj1
= 0 ;
17245 char * kwnames
[] = {
17246 (char *) "self",(char *) "bytes", NULL
17249 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_Allocate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17250 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17251 if (!SWIG_IsOK(res1
)) {
17252 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17254 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17255 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17256 if (!SWIG_IsOK(ecode2
)) {
17257 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "2"" of type '" "int""'");
17259 arg2
= static_cast< int >(val2
);
17261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17262 (arg1
)->Allocate(arg2
);
17263 wxPyEndAllowThreads(__tstate
);
17264 if (PyErr_Occurred()) SWIG_fail
;
17266 resultobj
= SWIG_Py_Void();
17273 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17274 PyObject
*resultobj
= 0;
17275 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17285 PyObject
* obj0
= 0 ;
17286 PyObject
* obj1
= 0 ;
17287 PyObject
* obj2
= 0 ;
17288 char * kwnames
[] = {
17289 (char *) "self",(char *) "line",(char *) "column", NULL
17292 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_FindColumn",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17293 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17294 if (!SWIG_IsOK(res1
)) {
17295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17297 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17298 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17299 if (!SWIG_IsOK(ecode2
)) {
17300 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "2"" of type '" "int""'");
17302 arg2
= static_cast< int >(val2
);
17303 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17304 if (!SWIG_IsOK(ecode3
)) {
17305 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "3"" of type '" "int""'");
17307 arg3
= static_cast< int >(val3
);
17309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17310 result
= (int)(arg1
)->FindColumn(arg2
,arg3
);
17311 wxPyEndAllowThreads(__tstate
);
17312 if (PyErr_Occurred()) SWIG_fail
;
17314 resultobj
= SWIG_From_int(static_cast< int >(result
));
17321 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17322 PyObject
*resultobj
= 0;
17323 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17327 PyObject
*swig_obj
[1] ;
17329 if (!args
) SWIG_fail
;
17330 swig_obj
[0] = args
;
17331 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17332 if (!SWIG_IsOK(res1
)) {
17333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17335 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17338 result
= (bool)(arg1
)->GetCaretSticky();
17339 wxPyEndAllowThreads(__tstate
);
17340 if (PyErr_Occurred()) SWIG_fail
;
17343 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17351 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17352 PyObject
*resultobj
= 0;
17353 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17359 PyObject
* obj0
= 0 ;
17360 PyObject
* obj1
= 0 ;
17361 char * kwnames
[] = {
17362 (char *) "self",(char *) "useCaretStickyBehaviour", NULL
17365 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretSticky",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17366 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17367 if (!SWIG_IsOK(res1
)) {
17368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17370 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17371 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17372 if (!SWIG_IsOK(ecode2
)) {
17373 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "2"" of type '" "bool""'");
17375 arg2
= static_cast< bool >(val2
);
17377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17378 (arg1
)->SetCaretSticky(arg2
);
17379 wxPyEndAllowThreads(__tstate
);
17380 if (PyErr_Occurred()) SWIG_fail
;
17382 resultobj
= SWIG_Py_Void();
17389 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17390 PyObject
*resultobj
= 0;
17391 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17394 PyObject
*swig_obj
[1] ;
17396 if (!args
) SWIG_fail
;
17397 swig_obj
[0] = args
;
17398 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17399 if (!SWIG_IsOK(res1
)) {
17400 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17402 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17404 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17405 (arg1
)->ToggleCaretSticky();
17406 wxPyEndAllowThreads(__tstate
);
17407 if (PyErr_Occurred()) SWIG_fail
;
17409 resultobj
= SWIG_Py_Void();
17416 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17417 PyObject
*resultobj
= 0;
17418 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17424 PyObject
* obj0
= 0 ;
17425 PyObject
* obj1
= 0 ;
17426 char * kwnames
[] = {
17427 (char *) "self",(char *) "convert", NULL
17430 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPasteConvertEndings",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17431 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17432 if (!SWIG_IsOK(res1
)) {
17433 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17435 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17436 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17437 if (!SWIG_IsOK(ecode2
)) {
17438 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "2"" of type '" "bool""'");
17440 arg2
= static_cast< bool >(val2
);
17442 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17443 (arg1
)->SetPasteConvertEndings(arg2
);
17444 wxPyEndAllowThreads(__tstate
);
17445 if (PyErr_Occurred()) SWIG_fail
;
17447 resultobj
= SWIG_Py_Void();
17454 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17455 PyObject
*resultobj
= 0;
17456 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17460 PyObject
*swig_obj
[1] ;
17462 if (!args
) SWIG_fail
;
17463 swig_obj
[0] = args
;
17464 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17465 if (!SWIG_IsOK(res1
)) {
17466 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17468 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17471 result
= (bool)(arg1
)->GetPasteConvertEndings();
17472 wxPyEndAllowThreads(__tstate
);
17473 if (PyErr_Occurred()) SWIG_fail
;
17476 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17484 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17485 PyObject
*resultobj
= 0;
17486 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17489 PyObject
*swig_obj
[1] ;
17491 if (!args
) SWIG_fail
;
17492 swig_obj
[0] = args
;
17493 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17494 if (!SWIG_IsOK(res1
)) {
17495 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17497 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17500 (arg1
)->SelectionDuplicate();
17501 wxPyEndAllowThreads(__tstate
);
17502 if (PyErr_Occurred()) SWIG_fail
;
17504 resultobj
= SWIG_Py_Void();
17511 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17512 PyObject
*resultobj
= 0;
17513 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17516 PyObject
*swig_obj
[1] ;
17518 if (!args
) SWIG_fail
;
17519 swig_obj
[0] = args
;
17520 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17521 if (!SWIG_IsOK(res1
)) {
17522 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17524 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17526 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17527 (arg1
)->StartRecord();
17528 wxPyEndAllowThreads(__tstate
);
17529 if (PyErr_Occurred()) SWIG_fail
;
17531 resultobj
= SWIG_Py_Void();
17538 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StopRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17539 PyObject
*resultobj
= 0;
17540 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17543 PyObject
*swig_obj
[1] ;
17545 if (!args
) SWIG_fail
;
17546 swig_obj
[0] = args
;
17547 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17548 if (!SWIG_IsOK(res1
)) {
17549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StopRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17551 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17554 (arg1
)->StopRecord();
17555 wxPyEndAllowThreads(__tstate
);
17556 if (PyErr_Occurred()) SWIG_fail
;
17558 resultobj
= SWIG_Py_Void();
17565 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17566 PyObject
*resultobj
= 0;
17567 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17573 PyObject
* obj0
= 0 ;
17574 PyObject
* obj1
= 0 ;
17575 char * kwnames
[] = {
17576 (char *) "self",(char *) "lexer", NULL
17579 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17580 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17581 if (!SWIG_IsOK(res1
)) {
17582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17584 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17585 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17586 if (!SWIG_IsOK(ecode2
)) {
17587 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "2"" of type '" "int""'");
17589 arg2
= static_cast< int >(val2
);
17591 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17592 (arg1
)->SetLexer(arg2
);
17593 wxPyEndAllowThreads(__tstate
);
17594 if (PyErr_Occurred()) SWIG_fail
;
17596 resultobj
= SWIG_Py_Void();
17603 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17604 PyObject
*resultobj
= 0;
17605 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17609 PyObject
*swig_obj
[1] ;
17611 if (!args
) SWIG_fail
;
17612 swig_obj
[0] = args
;
17613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17614 if (!SWIG_IsOK(res1
)) {
17615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17617 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17620 result
= (int)(arg1
)->GetLexer();
17621 wxPyEndAllowThreads(__tstate
);
17622 if (PyErr_Occurred()) SWIG_fail
;
17624 resultobj
= SWIG_From_int(static_cast< int >(result
));
17631 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Colourise(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17632 PyObject
*resultobj
= 0;
17633 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17642 PyObject
* obj0
= 0 ;
17643 PyObject
* obj1
= 0 ;
17644 PyObject
* obj2
= 0 ;
17645 char * kwnames
[] = {
17646 (char *) "self",(char *) "start",(char *) "end", NULL
17649 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_Colourise",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17650 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17651 if (!SWIG_IsOK(res1
)) {
17652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17654 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17655 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17656 if (!SWIG_IsOK(ecode2
)) {
17657 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "2"" of type '" "int""'");
17659 arg2
= static_cast< int >(val2
);
17660 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17661 if (!SWIG_IsOK(ecode3
)) {
17662 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "3"" of type '" "int""'");
17664 arg3
= static_cast< int >(val3
);
17666 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17667 (arg1
)->Colourise(arg2
,arg3
);
17668 wxPyEndAllowThreads(__tstate
);
17669 if (PyErr_Occurred()) SWIG_fail
;
17671 resultobj
= SWIG_Py_Void();
17678 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17679 PyObject
*resultobj
= 0;
17680 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17681 wxString
*arg2
= 0 ;
17682 wxString
*arg3
= 0 ;
17685 bool temp2
= false ;
17686 bool temp3
= false ;
17687 PyObject
* obj0
= 0 ;
17688 PyObject
* obj1
= 0 ;
17689 PyObject
* obj2
= 0 ;
17690 char * kwnames
[] = {
17691 (char *) "self",(char *) "key",(char *) "value", NULL
17694 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetProperty",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17695 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17696 if (!SWIG_IsOK(res1
)) {
17697 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17699 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17701 arg2
= wxString_in_helper(obj1
);
17702 if (arg2
== NULL
) SWIG_fail
;
17706 arg3
= wxString_in_helper(obj2
);
17707 if (arg3
== NULL
) SWIG_fail
;
17711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17712 (arg1
)->SetProperty((wxString
const &)*arg2
,(wxString
const &)*arg3
);
17713 wxPyEndAllowThreads(__tstate
);
17714 if (PyErr_Occurred()) SWIG_fail
;
17716 resultobj
= SWIG_Py_Void();
17739 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetKeyWords(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17740 PyObject
*resultobj
= 0;
17741 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17743 wxString
*arg3
= 0 ;
17748 bool temp3
= false ;
17749 PyObject
* obj0
= 0 ;
17750 PyObject
* obj1
= 0 ;
17751 PyObject
* obj2
= 0 ;
17752 char * kwnames
[] = {
17753 (char *) "self",(char *) "keywordSet",(char *) "keyWords", NULL
17756 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetKeyWords",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17757 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17758 if (!SWIG_IsOK(res1
)) {
17759 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17761 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17762 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17763 if (!SWIG_IsOK(ecode2
)) {
17764 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "2"" of type '" "int""'");
17766 arg2
= static_cast< int >(val2
);
17768 arg3
= wxString_in_helper(obj2
);
17769 if (arg3
== NULL
) SWIG_fail
;
17773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17774 (arg1
)->SetKeyWords(arg2
,(wxString
const &)*arg3
);
17775 wxPyEndAllowThreads(__tstate
);
17776 if (PyErr_Occurred()) SWIG_fail
;
17778 resultobj
= SWIG_Py_Void();
17793 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexerLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17794 PyObject
*resultobj
= 0;
17795 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17796 wxString
*arg2
= 0 ;
17799 bool temp2
= false ;
17800 PyObject
* obj0
= 0 ;
17801 PyObject
* obj1
= 0 ;
17802 char * kwnames
[] = {
17803 (char *) "self",(char *) "language", NULL
17806 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexerLanguage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17807 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17808 if (!SWIG_IsOK(res1
)) {
17809 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexerLanguage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17811 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17813 arg2
= wxString_in_helper(obj1
);
17814 if (arg2
== NULL
) SWIG_fail
;
17818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17819 (arg1
)->SetLexerLanguage((wxString
const &)*arg2
);
17820 wxPyEndAllowThreads(__tstate
);
17821 if (PyErr_Occurred()) SWIG_fail
;
17823 resultobj
= SWIG_Py_Void();
17838 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17839 PyObject
*resultobj
= 0;
17840 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17841 wxString
*arg2
= 0 ;
17845 bool temp2
= false ;
17846 PyObject
* obj0
= 0 ;
17847 PyObject
* obj1
= 0 ;
17848 char * kwnames
[] = {
17849 (char *) "self",(char *) "key", NULL
17852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetProperty",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17854 if (!SWIG_IsOK(res1
)) {
17855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17857 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17859 arg2
= wxString_in_helper(obj1
);
17860 if (arg2
== NULL
) SWIG_fail
;
17864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17865 result
= (arg1
)->GetProperty((wxString
const &)*arg2
);
17866 wxPyEndAllowThreads(__tstate
);
17867 if (PyErr_Occurred()) SWIG_fail
;
17871 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17873 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17890 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17891 PyObject
*resultobj
= 0;
17892 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17893 wxString
*arg2
= 0 ;
17897 bool temp2
= false ;
17898 PyObject
* obj0
= 0 ;
17899 PyObject
* obj1
= 0 ;
17900 char * kwnames
[] = {
17901 (char *) "self",(char *) "key", NULL
17904 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17905 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17906 if (!SWIG_IsOK(res1
)) {
17907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17909 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17911 arg2
= wxString_in_helper(obj1
);
17912 if (arg2
== NULL
) SWIG_fail
;
17916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17917 result
= (arg1
)->GetPropertyExpanded((wxString
const &)*arg2
);
17918 wxPyEndAllowThreads(__tstate
);
17919 if (PyErr_Occurred()) SWIG_fail
;
17923 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17925 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17942 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17943 PyObject
*resultobj
= 0;
17944 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17945 wxString
*arg2
= 0 ;
17949 bool temp2
= false ;
17950 PyObject
* obj0
= 0 ;
17951 PyObject
* obj1
= 0 ;
17952 char * kwnames
[] = {
17953 (char *) "self",(char *) "key", NULL
17956 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyInt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17957 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17958 if (!SWIG_IsOK(res1
)) {
17959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyInt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17961 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17963 arg2
= wxString_in_helper(obj1
);
17964 if (arg2
== NULL
) SWIG_fail
;
17968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17969 result
= (int)(arg1
)->GetPropertyInt((wxString
const &)*arg2
);
17970 wxPyEndAllowThreads(__tstate
);
17971 if (PyErr_Occurred()) SWIG_fail
;
17973 resultobj
= SWIG_From_int(static_cast< int >(result
));
17988 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBitsNeeded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17989 PyObject
*resultobj
= 0;
17990 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17994 PyObject
*swig_obj
[1] ;
17996 if (!args
) SWIG_fail
;
17997 swig_obj
[0] = args
;
17998 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17999 if (!SWIG_IsOK(res1
)) {
18000 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBitsNeeded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18002 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18004 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18005 result
= (int)(arg1
)->GetStyleBitsNeeded();
18006 wxPyEndAllowThreads(__tstate
);
18007 if (PyErr_Occurred()) SWIG_fail
;
18009 resultobj
= SWIG_From_int(static_cast< int >(result
));
18016 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18017 PyObject
*resultobj
= 0;
18018 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18022 PyObject
*swig_obj
[1] ;
18024 if (!args
) SWIG_fail
;
18025 swig_obj
[0] = args
;
18026 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18027 if (!SWIG_IsOK(res1
)) {
18028 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18030 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18033 result
= (int)(arg1
)->GetCurrentLine();
18034 wxPyEndAllowThreads(__tstate
);
18035 if (PyErr_Occurred()) SWIG_fail
;
18037 resultobj
= SWIG_From_int(static_cast< int >(result
));
18044 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSpec(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18045 PyObject
*resultobj
= 0;
18046 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18048 wxString
*arg3
= 0 ;
18053 bool temp3
= false ;
18054 PyObject
* obj0
= 0 ;
18055 PyObject
* obj1
= 0 ;
18056 PyObject
* obj2
= 0 ;
18057 char * kwnames
[] = {
18058 (char *) "self",(char *) "styleNum",(char *) "spec", NULL
18061 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSpec",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18062 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18063 if (!SWIG_IsOK(res1
)) {
18064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18066 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18067 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18068 if (!SWIG_IsOK(ecode2
)) {
18069 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "2"" of type '" "int""'");
18071 arg2
= static_cast< int >(val2
);
18073 arg3
= wxString_in_helper(obj2
);
18074 if (arg3
== NULL
) SWIG_fail
;
18078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18079 (arg1
)->StyleSetSpec(arg2
,(wxString
const &)*arg3
);
18080 wxPyEndAllowThreads(__tstate
);
18081 if (PyErr_Occurred()) SWIG_fail
;
18083 resultobj
= SWIG_Py_Void();
18098 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18099 PyObject
*resultobj
= 0;
18100 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18109 PyObject
* obj0
= 0 ;
18110 PyObject
* obj1
= 0 ;
18111 PyObject
* obj2
= 0 ;
18112 char * kwnames
[] = {
18113 (char *) "self",(char *) "styleNum",(char *) "font", NULL
18116 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18117 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18118 if (!SWIG_IsOK(res1
)) {
18119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18121 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18122 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18123 if (!SWIG_IsOK(ecode2
)) {
18124 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "2"" of type '" "int""'");
18126 arg2
= static_cast< int >(val2
);
18127 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 );
18128 if (!SWIG_IsOK(res3
)) {
18129 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18132 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18134 arg3
= reinterpret_cast< wxFont
* >(argp3
);
18136 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18137 (arg1
)->StyleSetFont(arg2
,*arg3
);
18138 wxPyEndAllowThreads(__tstate
);
18139 if (PyErr_Occurred()) SWIG_fail
;
18141 resultobj
= SWIG_Py_Void();
18148 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontAttr(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18149 PyObject
*resultobj
= 0;
18150 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18153 wxString
*arg4
= 0 ;
18157 wxFontEncoding arg8
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
18164 bool temp4
= false ;
18173 PyObject
* obj0
= 0 ;
18174 PyObject
* obj1
= 0 ;
18175 PyObject
* obj2
= 0 ;
18176 PyObject
* obj3
= 0 ;
18177 PyObject
* obj4
= 0 ;
18178 PyObject
* obj5
= 0 ;
18179 PyObject
* obj6
= 0 ;
18180 PyObject
* obj7
= 0 ;
18181 char * kwnames
[] = {
18182 (char *) "self",(char *) "styleNum",(char *) "size",(char *) "faceName",(char *) "bold",(char *) "italic",(char *) "underline",(char *) "encoding", NULL
18185 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO|O:StyledTextCtrl_StyleSetFontAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
18186 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18187 if (!SWIG_IsOK(res1
)) {
18188 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18190 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18191 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18192 if (!SWIG_IsOK(ecode2
)) {
18193 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "2"" of type '" "int""'");
18195 arg2
= static_cast< int >(val2
);
18196 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18197 if (!SWIG_IsOK(ecode3
)) {
18198 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "3"" of type '" "int""'");
18200 arg3
= static_cast< int >(val3
);
18202 arg4
= wxString_in_helper(obj3
);
18203 if (arg4
== NULL
) SWIG_fail
;
18206 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
18207 if (!SWIG_IsOK(ecode5
)) {
18208 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "5"" of type '" "bool""'");
18210 arg5
= static_cast< bool >(val5
);
18211 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
18212 if (!SWIG_IsOK(ecode6
)) {
18213 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "6"" of type '" "bool""'");
18215 arg6
= static_cast< bool >(val6
);
18216 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
18217 if (!SWIG_IsOK(ecode7
)) {
18218 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "7"" of type '" "bool""'");
18220 arg7
= static_cast< bool >(val7
);
18222 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
18223 if (!SWIG_IsOK(ecode8
)) {
18224 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "8"" of type '" "wxFontEncoding""'");
18226 arg8
= static_cast< wxFontEncoding
>(val8
);
18229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18230 (arg1
)->StyleSetFontAttr(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
,arg8
);
18231 wxPyEndAllowThreads(__tstate
);
18232 if (PyErr_Occurred()) SWIG_fail
;
18234 resultobj
= SWIG_Py_Void();
18249 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCharacterSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18250 PyObject
*resultobj
= 0;
18251 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18260 PyObject
* obj0
= 0 ;
18261 PyObject
* obj1
= 0 ;
18262 PyObject
* obj2
= 0 ;
18263 char * kwnames
[] = {
18264 (char *) "self",(char *) "style",(char *) "characterSet", NULL
18267 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCharacterSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18268 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18269 if (!SWIG_IsOK(res1
)) {
18270 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18272 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18273 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18274 if (!SWIG_IsOK(ecode2
)) {
18275 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "2"" of type '" "int""'");
18277 arg2
= static_cast< int >(val2
);
18278 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18279 if (!SWIG_IsOK(ecode3
)) {
18280 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "3"" of type '" "int""'");
18282 arg3
= static_cast< int >(val3
);
18284 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18285 (arg1
)->StyleSetCharacterSet(arg2
,arg3
);
18286 wxPyEndAllowThreads(__tstate
);
18287 if (PyErr_Occurred()) SWIG_fail
;
18289 resultobj
= SWIG_Py_Void();
18296 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18297 PyObject
*resultobj
= 0;
18298 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18300 wxFontEncoding arg3
;
18307 PyObject
* obj0
= 0 ;
18308 PyObject
* obj1
= 0 ;
18309 PyObject
* obj2
= 0 ;
18310 char * kwnames
[] = {
18311 (char *) "self",(char *) "style",(char *) "encoding", NULL
18314 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFontEncoding",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18315 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18316 if (!SWIG_IsOK(res1
)) {
18317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18319 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18320 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18321 if (!SWIG_IsOK(ecode2
)) {
18322 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "2"" of type '" "int""'");
18324 arg2
= static_cast< int >(val2
);
18325 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18326 if (!SWIG_IsOK(ecode3
)) {
18327 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "3"" of type '" "wxFontEncoding""'");
18329 arg3
= static_cast< wxFontEncoding
>(val3
);
18331 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18332 (arg1
)->StyleSetFontEncoding(arg2
,arg3
);
18333 wxPyEndAllowThreads(__tstate
);
18334 if (PyErr_Occurred()) SWIG_fail
;
18336 resultobj
= SWIG_Py_Void();
18343 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyExecute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18344 PyObject
*resultobj
= 0;
18345 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18351 PyObject
* obj0
= 0 ;
18352 PyObject
* obj1
= 0 ;
18353 char * kwnames
[] = {
18354 (char *) "self",(char *) "cmd", NULL
18357 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CmdKeyExecute",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18358 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18359 if (!SWIG_IsOK(res1
)) {
18360 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18362 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18363 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18364 if (!SWIG_IsOK(ecode2
)) {
18365 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "2"" of type '" "int""'");
18367 arg2
= static_cast< int >(val2
);
18369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18370 (arg1
)->CmdKeyExecute(arg2
);
18371 wxPyEndAllowThreads(__tstate
);
18372 if (PyErr_Occurred()) SWIG_fail
;
18374 resultobj
= SWIG_Py_Void();
18381 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18382 PyObject
*resultobj
= 0;
18383 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18392 PyObject
* obj0
= 0 ;
18393 PyObject
* obj1
= 0 ;
18394 PyObject
* obj2
= 0 ;
18395 char * kwnames
[] = {
18396 (char *) "self",(char *) "left",(char *) "right", NULL
18399 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18400 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18401 if (!SWIG_IsOK(res1
)) {
18402 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18404 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18405 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18406 if (!SWIG_IsOK(ecode2
)) {
18407 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "2"" of type '" "int""'");
18409 arg2
= static_cast< int >(val2
);
18410 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18411 if (!SWIG_IsOK(ecode3
)) {
18412 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "3"" of type '" "int""'");
18414 arg3
= static_cast< int >(val3
);
18416 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18417 (arg1
)->SetMargins(arg2
,arg3
);
18418 wxPyEndAllowThreads(__tstate
);
18419 if (PyErr_Occurred()) SWIG_fail
;
18421 resultobj
= SWIG_Py_Void();
18428 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18429 PyObject
*resultobj
= 0;
18430 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18431 int *arg2
= (int *) 0 ;
18432 int *arg3
= (int *) 0 ;
18436 int res2
= SWIG_TMPOBJ
;
18438 int res3
= SWIG_TMPOBJ
;
18439 PyObject
*swig_obj
[1] ;
18443 if (!args
) SWIG_fail
;
18444 swig_obj
[0] = args
;
18445 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18446 if (!SWIG_IsOK(res1
)) {
18447 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18449 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18452 (arg1
)->GetSelection(arg2
,arg3
);
18453 wxPyEndAllowThreads(__tstate
);
18454 if (PyErr_Occurred()) SWIG_fail
;
18456 resultobj
= SWIG_Py_Void();
18457 if (SWIG_IsTmpObj(res2
)) {
18458 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
18460 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18461 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
18463 if (SWIG_IsTmpObj(res3
)) {
18464 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
18466 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18467 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
18475 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PointFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18476 PyObject
*resultobj
= 0;
18477 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18484 PyObject
* obj0
= 0 ;
18485 PyObject
* obj1
= 0 ;
18486 char * kwnames
[] = {
18487 (char *) "self",(char *) "pos", NULL
18490 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PointFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18491 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18492 if (!SWIG_IsOK(res1
)) {
18493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18495 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18496 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18497 if (!SWIG_IsOK(ecode2
)) {
18498 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "2"" of type '" "int""'");
18500 arg2
= static_cast< int >(val2
);
18502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18503 result
= (arg1
)->PointFromPosition(arg2
);
18504 wxPyEndAllowThreads(__tstate
);
18505 if (PyErr_Occurred()) SWIG_fail
;
18507 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
18514 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18515 PyObject
*resultobj
= 0;
18516 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18522 PyObject
* obj0
= 0 ;
18523 PyObject
* obj1
= 0 ;
18524 char * kwnames
[] = {
18525 (char *) "self",(char *) "line", NULL
18528 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18529 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18530 if (!SWIG_IsOK(res1
)) {
18531 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18533 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18534 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18535 if (!SWIG_IsOK(ecode2
)) {
18536 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "2"" of type '" "int""'");
18538 arg2
= static_cast< int >(val2
);
18540 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18541 (arg1
)->ScrollToLine(arg2
);
18542 wxPyEndAllowThreads(__tstate
);
18543 if (PyErr_Occurred()) SWIG_fail
;
18545 resultobj
= SWIG_Py_Void();
18552 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18553 PyObject
*resultobj
= 0;
18554 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18560 PyObject
* obj0
= 0 ;
18561 PyObject
* obj1
= 0 ;
18562 char * kwnames
[] = {
18563 (char *) "self",(char *) "column", NULL
18566 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18567 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18568 if (!SWIG_IsOK(res1
)) {
18569 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18571 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18572 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18573 if (!SWIG_IsOK(ecode2
)) {
18574 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "2"" of type '" "int""'");
18576 arg2
= static_cast< int >(val2
);
18578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18579 (arg1
)->ScrollToColumn(arg2
);
18580 wxPyEndAllowThreads(__tstate
);
18581 if (PyErr_Occurred()) SWIG_fail
;
18583 resultobj
= SWIG_Py_Void();
18590 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SendMsg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18591 PyObject
*resultobj
= 0;
18592 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18594 long arg3
= (long) 0 ;
18595 long arg4
= (long) 0 ;
18605 PyObject
* obj0
= 0 ;
18606 PyObject
* obj1
= 0 ;
18607 PyObject
* obj2
= 0 ;
18608 PyObject
* obj3
= 0 ;
18609 char * kwnames
[] = {
18610 (char *) "self",(char *) "msg",(char *) "wp",(char *) "lp", NULL
18613 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:StyledTextCtrl_SendMsg",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18614 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18615 if (!SWIG_IsOK(res1
)) {
18616 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18618 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18619 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18620 if (!SWIG_IsOK(ecode2
)) {
18621 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "2"" of type '" "int""'");
18623 arg2
= static_cast< int >(val2
);
18625 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18626 if (!SWIG_IsOK(ecode3
)) {
18627 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "3"" of type '" "long""'");
18629 arg3
= static_cast< long >(val3
);
18632 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
18633 if (!SWIG_IsOK(ecode4
)) {
18634 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "4"" of type '" "long""'");
18636 arg4
= static_cast< long >(val4
);
18639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18640 result
= (long)(arg1
)->SendMsg(arg2
,arg3
,arg4
);
18641 wxPyEndAllowThreads(__tstate
);
18642 if (PyErr_Occurred()) SWIG_fail
;
18644 resultobj
= SWIG_From_long(static_cast< long >(result
));
18651 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18652 PyObject
*resultobj
= 0;
18653 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18654 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18659 PyObject
* obj0
= 0 ;
18660 PyObject
* obj1
= 0 ;
18661 char * kwnames
[] = {
18662 (char *) "self",(char *) "bar", NULL
18665 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetVScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18666 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18667 if (!SWIG_IsOK(res1
)) {
18668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18670 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18671 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18672 if (!SWIG_IsOK(res2
)) {
18673 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18675 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18678 (arg1
)->SetVScrollBar(arg2
);
18679 wxPyEndAllowThreads(__tstate
);
18680 if (PyErr_Occurred()) SWIG_fail
;
18682 resultobj
= SWIG_Py_Void();
18689 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18690 PyObject
*resultobj
= 0;
18691 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18692 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18697 PyObject
* obj0
= 0 ;
18698 PyObject
* obj1
= 0 ;
18699 char * kwnames
[] = {
18700 (char *) "self",(char *) "bar", NULL
18703 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18704 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18705 if (!SWIG_IsOK(res1
)) {
18706 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18708 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18709 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18710 if (!SWIG_IsOK(res2
)) {
18711 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18713 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18715 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18716 (arg1
)->SetHScrollBar(arg2
);
18717 wxPyEndAllowThreads(__tstate
);
18718 if (PyErr_Occurred()) SWIG_fail
;
18720 resultobj
= SWIG_Py_Void();
18727 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18728 PyObject
*resultobj
= 0;
18729 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18733 PyObject
*swig_obj
[1] ;
18735 if (!args
) SWIG_fail
;
18736 swig_obj
[0] = args
;
18737 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18738 if (!SWIG_IsOK(res1
)) {
18739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18741 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18744 result
= (bool)(arg1
)->GetLastKeydownProcessed();
18745 wxPyEndAllowThreads(__tstate
);
18746 if (PyErr_Occurred()) SWIG_fail
;
18749 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18757 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18758 PyObject
*resultobj
= 0;
18759 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18765 PyObject
* obj0
= 0 ;
18766 PyObject
* obj1
= 0 ;
18767 char * kwnames
[] = {
18768 (char *) "self",(char *) "val", NULL
18771 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLastKeydownProcessed",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18772 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18773 if (!SWIG_IsOK(res1
)) {
18774 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18776 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18777 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18778 if (!SWIG_IsOK(ecode2
)) {
18779 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "2"" of type '" "bool""'");
18781 arg2
= static_cast< bool >(val2
);
18783 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18784 (arg1
)->SetLastKeydownProcessed(arg2
);
18785 wxPyEndAllowThreads(__tstate
);
18786 if (PyErr_Occurred()) SWIG_fail
;
18788 resultobj
= SWIG_Py_Void();
18795 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SaveFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18796 PyObject
*resultobj
= 0;
18797 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18798 wxString
*arg2
= 0 ;
18802 bool temp2
= false ;
18803 PyObject
* obj0
= 0 ;
18804 PyObject
* obj1
= 0 ;
18805 char * kwnames
[] = {
18806 (char *) "self",(char *) "filename", NULL
18809 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18810 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18811 if (!SWIG_IsOK(res1
)) {
18812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SaveFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18814 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18816 arg2
= wxString_in_helper(obj1
);
18817 if (arg2
== NULL
) SWIG_fail
;
18821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18822 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
);
18823 wxPyEndAllowThreads(__tstate
);
18824 if (PyErr_Occurred()) SWIG_fail
;
18827 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18843 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LoadFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18844 PyObject
*resultobj
= 0;
18845 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18846 wxString
*arg2
= 0 ;
18850 bool temp2
= false ;
18851 PyObject
* obj0
= 0 ;
18852 PyObject
* obj1
= 0 ;
18853 char * kwnames
[] = {
18854 (char *) "self",(char *) "filename", NULL
18857 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18858 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18859 if (!SWIG_IsOK(res1
)) {
18860 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LoadFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18862 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18864 arg2
= wxString_in_helper(obj1
);
18865 if (arg2
== NULL
) SWIG_fail
;
18869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18870 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
);
18871 wxPyEndAllowThreads(__tstate
);
18872 if (PyErr_Occurred()) SWIG_fail
;
18875 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18891 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18892 PyObject
*resultobj
= 0;
18893 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18896 wxDragResult arg4
;
18897 wxDragResult result
;
18906 PyObject
* obj0
= 0 ;
18907 PyObject
* obj1
= 0 ;
18908 PyObject
* obj2
= 0 ;
18909 PyObject
* obj3
= 0 ;
18910 char * kwnames
[] = {
18911 (char *) "self",(char *) "x",(char *) "y",(char *) "def", NULL
18914 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18915 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18916 if (!SWIG_IsOK(res1
)) {
18917 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18919 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18920 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18921 if (!SWIG_IsOK(ecode2
)) {
18922 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "2"" of type '" "int""'");
18924 arg2
= static_cast< int >(val2
);
18925 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18926 if (!SWIG_IsOK(ecode3
)) {
18927 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "3"" of type '" "int""'");
18929 arg3
= static_cast< int >(val3
);
18930 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18931 if (!SWIG_IsOK(ecode4
)) {
18932 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
18934 arg4
= static_cast< wxDragResult
>(val4
);
18936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18937 result
= (wxDragResult
)(arg1
)->DoDragOver(arg2
,arg3
,arg4
);
18938 wxPyEndAllowThreads(__tstate
);
18939 if (PyErr_Occurred()) SWIG_fail
;
18941 resultobj
= SWIG_From_int(static_cast< int >(result
));
18948 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDropText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18949 PyObject
*resultobj
= 0;
18950 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18953 wxString
*arg4
= 0 ;
18961 bool temp4
= false ;
18962 PyObject
* obj0
= 0 ;
18963 PyObject
* obj1
= 0 ;
18964 PyObject
* obj2
= 0 ;
18965 PyObject
* obj3
= 0 ;
18966 char * kwnames
[] = {
18967 (char *) "self",(char *) "x",(char *) "y",(char *) "data", NULL
18970 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDropText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18971 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18972 if (!SWIG_IsOK(res1
)) {
18973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18975 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18976 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
18977 if (!SWIG_IsOK(ecode2
)) {
18978 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "2"" of type '" "long""'");
18980 arg2
= static_cast< long >(val2
);
18981 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18982 if (!SWIG_IsOK(ecode3
)) {
18983 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "3"" of type '" "long""'");
18985 arg3
= static_cast< long >(val3
);
18987 arg4
= wxString_in_helper(obj3
);
18988 if (arg4
== NULL
) SWIG_fail
;
18992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18993 result
= (bool)(arg1
)->DoDropText(arg2
,arg3
,(wxString
const &)*arg4
);
18994 wxPyEndAllowThreads(__tstate
);
18995 if (PyErr_Occurred()) SWIG_fail
;
18998 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19014 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19015 PyObject
*resultobj
= 0;
19016 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19022 PyObject
* obj0
= 0 ;
19023 PyObject
* obj1
= 0 ;
19024 char * kwnames
[] = {
19025 (char *) "self",(char *) "useAA", NULL
19028 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseAntiAliasing",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19029 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19030 if (!SWIG_IsOK(res1
)) {
19031 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19033 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19034 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19035 if (!SWIG_IsOK(ecode2
)) {
19036 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "2"" of type '" "bool""'");
19038 arg2
= static_cast< bool >(val2
);
19040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19041 (arg1
)->SetUseAntiAliasing(arg2
);
19042 wxPyEndAllowThreads(__tstate
);
19043 if (PyErr_Occurred()) SWIG_fail
;
19045 resultobj
= SWIG_Py_Void();
19052 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19053 PyObject
*resultobj
= 0;
19054 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19058 PyObject
*swig_obj
[1] ;
19060 if (!args
) SWIG_fail
;
19061 swig_obj
[0] = args
;
19062 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19063 if (!SWIG_IsOK(res1
)) {
19064 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19066 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19069 result
= (bool)(arg1
)->GetUseAntiAliasing();
19070 wxPyEndAllowThreads(__tstate
);
19071 if (PyErr_Occurred()) SWIG_fail
;
19074 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19082 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19083 PyObject
*resultobj
= 0;
19084 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19085 char *arg2
= (char *) 0 ;
19091 PyObject
* obj0
= 0 ;
19092 PyObject
* obj1
= 0 ;
19093 char * kwnames
[] = {
19094 (char *) "self",(char *) "text", NULL
19097 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19098 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19099 if (!SWIG_IsOK(res1
)) {
19100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19102 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19103 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19104 if (!SWIG_IsOK(res2
)) {
19105 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19109 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19110 (arg1
)->AddTextRaw((char const *)arg2
);
19111 wxPyEndAllowThreads(__tstate
);
19112 if (PyErr_Occurred()) SWIG_fail
;
19114 resultobj
= SWIG_Py_Void();
19115 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19118 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19123 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19124 PyObject
*resultobj
= 0;
19125 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19127 char *arg3
= (char *) 0 ;
19135 PyObject
* obj0
= 0 ;
19136 PyObject
* obj1
= 0 ;
19137 PyObject
* obj2
= 0 ;
19138 char * kwnames
[] = {
19139 (char *) "self",(char *) "pos",(char *) "text", NULL
19142 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertTextRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19143 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19144 if (!SWIG_IsOK(res1
)) {
19145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19147 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19148 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19149 if (!SWIG_IsOK(ecode2
)) {
19150 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "2"" of type '" "int""'");
19152 arg2
= static_cast< int >(val2
);
19153 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
19154 if (!SWIG_IsOK(res3
)) {
19155 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "3"" of type '" "char const *""'");
19159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19160 (arg1
)->InsertTextRaw(arg2
,(char const *)arg3
);
19161 wxPyEndAllowThreads(__tstate
);
19162 if (PyErr_Occurred()) SWIG_fail
;
19164 resultobj
= SWIG_Py_Void();
19165 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19168 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19173 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19174 PyObject
*resultobj
= 0;
19175 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19176 int *arg2
= (int *) 0 ;
19177 wxCharBuffer result
;
19181 int res2
= SWIG_TMPOBJ
;
19182 PyObject
*swig_obj
[1] ;
19185 if (!args
) SWIG_fail
;
19186 swig_obj
[0] = args
;
19187 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19188 if (!SWIG_IsOK(res1
)) {
19189 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19191 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19194 result
= (arg1
)->GetCurLineRaw(arg2
);
19195 wxPyEndAllowThreads(__tstate
);
19196 if (PyErr_Occurred()) SWIG_fail
;
19199 resultobj
= PyString_FromString((char*)(&result
)->data());
19201 if (SWIG_IsTmpObj(res2
)) {
19202 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
19204 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
19205 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
19213 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19214 PyObject
*resultobj
= 0;
19215 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19217 wxCharBuffer result
;
19222 PyObject
* obj0
= 0 ;
19223 PyObject
* obj1
= 0 ;
19224 char * kwnames
[] = {
19225 (char *) "self",(char *) "line", NULL
19228 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19229 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19230 if (!SWIG_IsOK(res1
)) {
19231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19234 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19235 if (!SWIG_IsOK(ecode2
)) {
19236 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "2"" of type '" "int""'");
19238 arg2
= static_cast< int >(val2
);
19240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19241 result
= (arg1
)->GetLineRaw(arg2
);
19242 wxPyEndAllowThreads(__tstate
);
19243 if (PyErr_Occurred()) SWIG_fail
;
19246 resultobj
= PyString_FromString((char*)(&result
)->data());
19254 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19255 PyObject
*resultobj
= 0;
19256 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19257 wxCharBuffer result
;
19260 PyObject
*swig_obj
[1] ;
19262 if (!args
) SWIG_fail
;
19263 swig_obj
[0] = args
;
19264 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19265 if (!SWIG_IsOK(res1
)) {
19266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19268 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19271 result
= (arg1
)->GetSelectedTextRaw();
19272 wxPyEndAllowThreads(__tstate
);
19273 if (PyErr_Occurred()) SWIG_fail
;
19276 resultobj
= PyString_FromString((char*)(&result
)->data());
19284 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRangeRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19285 PyObject
*resultobj
= 0;
19286 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19289 wxCharBuffer result
;
19296 PyObject
* obj0
= 0 ;
19297 PyObject
* obj1
= 0 ;
19298 PyObject
* obj2
= 0 ;
19299 char * kwnames
[] = {
19300 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
19303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRangeRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19305 if (!SWIG_IsOK(res1
)) {
19306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19308 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19309 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19310 if (!SWIG_IsOK(ecode2
)) {
19311 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "2"" of type '" "int""'");
19313 arg2
= static_cast< int >(val2
);
19314 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19315 if (!SWIG_IsOK(ecode3
)) {
19316 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "3"" of type '" "int""'");
19318 arg3
= static_cast< int >(val3
);
19320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19321 result
= (arg1
)->GetTextRangeRaw(arg2
,arg3
);
19322 wxPyEndAllowThreads(__tstate
);
19323 if (PyErr_Occurred()) SWIG_fail
;
19326 resultobj
= PyString_FromString((char*)(&result
)->data());
19334 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19335 PyObject
*resultobj
= 0;
19336 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19337 char *arg2
= (char *) 0 ;
19343 PyObject
* obj0
= 0 ;
19344 PyObject
* obj1
= 0 ;
19345 char * kwnames
[] = {
19346 (char *) "self",(char *) "text", NULL
19349 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19350 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19351 if (!SWIG_IsOK(res1
)) {
19352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19354 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19355 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19356 if (!SWIG_IsOK(res2
)) {
19357 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19361 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19362 (arg1
)->SetTextRaw((char const *)arg2
);
19363 wxPyEndAllowThreads(__tstate
);
19364 if (PyErr_Occurred()) SWIG_fail
;
19366 resultobj
= SWIG_Py_Void();
19367 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19370 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19375 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19376 PyObject
*resultobj
= 0;
19377 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19378 wxCharBuffer result
;
19381 PyObject
*swig_obj
[1] ;
19383 if (!args
) SWIG_fail
;
19384 swig_obj
[0] = args
;
19385 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19386 if (!SWIG_IsOK(res1
)) {
19387 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19389 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19391 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19392 result
= (arg1
)->GetTextRaw();
19393 wxPyEndAllowThreads(__tstate
);
19394 if (PyErr_Occurred()) SWIG_fail
;
19397 resultobj
= PyString_FromString((char*)(&result
)->data());
19405 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19406 PyObject
*resultobj
= 0;
19407 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19408 char *arg2
= (char *) 0 ;
19414 PyObject
* obj0
= 0 ;
19415 PyObject
* obj1
= 0 ;
19416 char * kwnames
[] = {
19417 (char *) "self",(char *) "text", NULL
19420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19422 if (!SWIG_IsOK(res1
)) {
19423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19425 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19426 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19427 if (!SWIG_IsOK(res2
)) {
19428 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19433 (arg1
)->AppendTextRaw((char const *)arg2
);
19434 wxPyEndAllowThreads(__tstate
);
19435 if (PyErr_Occurred()) SWIG_fail
;
19437 resultobj
= SWIG_Py_Void();
19438 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19441 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19446 SWIGINTERN PyObject
*StyledTextCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19448 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19449 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextCtrl
, SWIG_NewClientData(obj
));
19450 return SWIG_Py_Void();
19453 SWIGINTERN PyObject
*StyledTextCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19454 return SWIG_Python_InitShadowInstance(args
);
19457 SWIGINTERN PyObject
*_wrap_new_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19458 PyObject
*resultobj
= 0;
19459 wxEventType arg1
= (wxEventType
) 0 ;
19460 int arg2
= (int) 0 ;
19461 wxStyledTextEvent
*result
= 0 ;
19466 PyObject
* obj0
= 0 ;
19467 PyObject
* obj1
= 0 ;
19468 char * kwnames
[] = {
19469 (char *) "commandType",(char *) "id", NULL
19472 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_StyledTextEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19474 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19475 if (!SWIG_IsOK(ecode1
)) {
19476 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_StyledTextEvent" "', expected argument " "1"" of type '" "wxEventType""'");
19478 arg1
= static_cast< wxEventType
>(val1
);
19481 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19482 if (!SWIG_IsOK(ecode2
)) {
19483 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextEvent" "', expected argument " "2"" of type '" "int""'");
19485 arg2
= static_cast< int >(val2
);
19488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19489 result
= (wxStyledTextEvent
*)new wxStyledTextEvent(arg1
,arg2
);
19490 wxPyEndAllowThreads(__tstate
);
19491 if (PyErr_Occurred()) SWIG_fail
;
19493 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_NEW
| 0 );
19500 SWIGINTERN PyObject
*_wrap_delete_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19501 PyObject
*resultobj
= 0;
19502 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19505 PyObject
*swig_obj
[1] ;
19507 if (!args
) SWIG_fail
;
19508 swig_obj
[0] = args
;
19509 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_DISOWN
| 0 );
19510 if (!SWIG_IsOK(res1
)) {
19511 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_StyledTextEvent" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19513 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19518 wxPyEndAllowThreads(__tstate
);
19519 if (PyErr_Occurred()) SWIG_fail
;
19521 resultobj
= SWIG_Py_Void();
19528 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19529 PyObject
*resultobj
= 0;
19530 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19536 PyObject
* obj0
= 0 ;
19537 PyObject
* obj1
= 0 ;
19538 char * kwnames
[] = {
19539 (char *) "self",(char *) "pos", NULL
19542 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19543 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19544 if (!SWIG_IsOK(res1
)) {
19545 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19547 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19548 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19549 if (!SWIG_IsOK(ecode2
)) {
19550 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "2"" of type '" "int""'");
19552 arg2
= static_cast< int >(val2
);
19554 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19555 (arg1
)->SetPosition(arg2
);
19556 wxPyEndAllowThreads(__tstate
);
19557 if (PyErr_Occurred()) SWIG_fail
;
19559 resultobj
= SWIG_Py_Void();
19566 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19567 PyObject
*resultobj
= 0;
19568 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19574 PyObject
* obj0
= 0 ;
19575 PyObject
* obj1
= 0 ;
19576 char * kwnames
[] = {
19577 (char *) "self",(char *) "k", NULL
19580 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetKey",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19581 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19582 if (!SWIG_IsOK(res1
)) {
19583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19585 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19586 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19587 if (!SWIG_IsOK(ecode2
)) {
19588 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "2"" of type '" "int""'");
19590 arg2
= static_cast< int >(val2
);
19592 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19593 (arg1
)->SetKey(arg2
);
19594 wxPyEndAllowThreads(__tstate
);
19595 if (PyErr_Occurred()) SWIG_fail
;
19597 resultobj
= SWIG_Py_Void();
19604 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19605 PyObject
*resultobj
= 0;
19606 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19612 PyObject
* obj0
= 0 ;
19613 PyObject
* obj1
= 0 ;
19614 char * kwnames
[] = {
19615 (char *) "self",(char *) "m", NULL
19618 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModifiers",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19619 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19620 if (!SWIG_IsOK(res1
)) {
19621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19623 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19624 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19625 if (!SWIG_IsOK(ecode2
)) {
19626 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "2"" of type '" "int""'");
19628 arg2
= static_cast< int >(val2
);
19630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19631 (arg1
)->SetModifiers(arg2
);
19632 wxPyEndAllowThreads(__tstate
);
19633 if (PyErr_Occurred()) SWIG_fail
;
19635 resultobj
= SWIG_Py_Void();
19642 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19643 PyObject
*resultobj
= 0;
19644 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19650 PyObject
* obj0
= 0 ;
19651 PyObject
* obj1
= 0 ;
19652 char * kwnames
[] = {
19653 (char *) "self",(char *) "t", NULL
19656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModificationType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19658 if (!SWIG_IsOK(res1
)) {
19659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19661 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19663 if (!SWIG_IsOK(ecode2
)) {
19664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "2"" of type '" "int""'");
19666 arg2
= static_cast< int >(val2
);
19668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19669 (arg1
)->SetModificationType(arg2
);
19670 wxPyEndAllowThreads(__tstate
);
19671 if (PyErr_Occurred()) SWIG_fail
;
19673 resultobj
= SWIG_Py_Void();
19680 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19681 PyObject
*resultobj
= 0;
19682 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19683 wxString
*arg2
= 0 ;
19686 bool temp2
= false ;
19687 PyObject
* obj0
= 0 ;
19688 PyObject
* obj1
= 0 ;
19689 char * kwnames
[] = {
19690 (char *) "self",(char *) "t", NULL
19693 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19694 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19695 if (!SWIG_IsOK(res1
)) {
19696 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19698 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19700 arg2
= wxString_in_helper(obj1
);
19701 if (arg2
== NULL
) SWIG_fail
;
19705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19706 (arg1
)->SetText((wxString
const &)*arg2
);
19707 wxPyEndAllowThreads(__tstate
);
19708 if (PyErr_Occurred()) SWIG_fail
;
19710 resultobj
= SWIG_Py_Void();
19725 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19726 PyObject
*resultobj
= 0;
19727 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19733 PyObject
* obj0
= 0 ;
19734 PyObject
* obj1
= 0 ;
19735 char * kwnames
[] = {
19736 (char *) "self",(char *) "len", NULL
19739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19741 if (!SWIG_IsOK(res1
)) {
19742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19744 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19745 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19746 if (!SWIG_IsOK(ecode2
)) {
19747 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "2"" of type '" "int""'");
19749 arg2
= static_cast< int >(val2
);
19751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19752 (arg1
)->SetLength(arg2
);
19753 wxPyEndAllowThreads(__tstate
);
19754 if (PyErr_Occurred()) SWIG_fail
;
19756 resultobj
= SWIG_Py_Void();
19763 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19764 PyObject
*resultobj
= 0;
19765 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19771 PyObject
* obj0
= 0 ;
19772 PyObject
* obj1
= 0 ;
19773 char * kwnames
[] = {
19774 (char *) "self",(char *) "num", NULL
19777 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLinesAdded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19778 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19779 if (!SWIG_IsOK(res1
)) {
19780 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19782 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19783 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19784 if (!SWIG_IsOK(ecode2
)) {
19785 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "2"" of type '" "int""'");
19787 arg2
= static_cast< int >(val2
);
19789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19790 (arg1
)->SetLinesAdded(arg2
);
19791 wxPyEndAllowThreads(__tstate
);
19792 if (PyErr_Occurred()) SWIG_fail
;
19794 resultobj
= SWIG_Py_Void();
19801 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19802 PyObject
*resultobj
= 0;
19803 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19809 PyObject
* obj0
= 0 ;
19810 PyObject
* obj1
= 0 ;
19811 char * kwnames
[] = {
19812 (char *) "self",(char *) "val", NULL
19815 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19816 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19817 if (!SWIG_IsOK(res1
)) {
19818 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19820 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19821 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19822 if (!SWIG_IsOK(ecode2
)) {
19823 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "2"" of type '" "int""'");
19825 arg2
= static_cast< int >(val2
);
19827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19828 (arg1
)->SetLine(arg2
);
19829 wxPyEndAllowThreads(__tstate
);
19830 if (PyErr_Occurred()) SWIG_fail
;
19832 resultobj
= SWIG_Py_Void();
19839 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19840 PyObject
*resultobj
= 0;
19841 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19847 PyObject
* obj0
= 0 ;
19848 PyObject
* obj1
= 0 ;
19849 char * kwnames
[] = {
19850 (char *) "self",(char *) "val", NULL
19853 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelNow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19854 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19855 if (!SWIG_IsOK(res1
)) {
19856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19858 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19859 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19860 if (!SWIG_IsOK(ecode2
)) {
19861 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "2"" of type '" "int""'");
19863 arg2
= static_cast< int >(val2
);
19865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19866 (arg1
)->SetFoldLevelNow(arg2
);
19867 wxPyEndAllowThreads(__tstate
);
19868 if (PyErr_Occurred()) SWIG_fail
;
19870 resultobj
= SWIG_Py_Void();
19877 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19878 PyObject
*resultobj
= 0;
19879 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19885 PyObject
* obj0
= 0 ;
19886 PyObject
* obj1
= 0 ;
19887 char * kwnames
[] = {
19888 (char *) "self",(char *) "val", NULL
19891 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelPrev",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19892 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19893 if (!SWIG_IsOK(res1
)) {
19894 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19896 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19897 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19898 if (!SWIG_IsOK(ecode2
)) {
19899 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "2"" of type '" "int""'");
19901 arg2
= static_cast< int >(val2
);
19903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19904 (arg1
)->SetFoldLevelPrev(arg2
);
19905 wxPyEndAllowThreads(__tstate
);
19906 if (PyErr_Occurred()) SWIG_fail
;
19908 resultobj
= SWIG_Py_Void();
19915 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19916 PyObject
*resultobj
= 0;
19917 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19923 PyObject
* obj0
= 0 ;
19924 PyObject
* obj1
= 0 ;
19925 char * kwnames
[] = {
19926 (char *) "self",(char *) "val", NULL
19929 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19930 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19931 if (!SWIG_IsOK(res1
)) {
19932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19934 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19935 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19936 if (!SWIG_IsOK(ecode2
)) {
19937 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "2"" of type '" "int""'");
19939 arg2
= static_cast< int >(val2
);
19941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19942 (arg1
)->SetMargin(arg2
);
19943 wxPyEndAllowThreads(__tstate
);
19944 if (PyErr_Occurred()) SWIG_fail
;
19946 resultobj
= SWIG_Py_Void();
19953 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19954 PyObject
*resultobj
= 0;
19955 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19961 PyObject
* obj0
= 0 ;
19962 PyObject
* obj1
= 0 ;
19963 char * kwnames
[] = {
19964 (char *) "self",(char *) "val", NULL
19967 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19968 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19969 if (!SWIG_IsOK(res1
)) {
19970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19972 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19973 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19974 if (!SWIG_IsOK(ecode2
)) {
19975 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "2"" of type '" "int""'");
19977 arg2
= static_cast< int >(val2
);
19979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19980 (arg1
)->SetMessage(arg2
);
19981 wxPyEndAllowThreads(__tstate
);
19982 if (PyErr_Occurred()) SWIG_fail
;
19984 resultobj
= SWIG_Py_Void();
19991 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19992 PyObject
*resultobj
= 0;
19993 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19999 PyObject
* obj0
= 0 ;
20000 PyObject
* obj1
= 0 ;
20001 char * kwnames
[] = {
20002 (char *) "self",(char *) "val", NULL
20005 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetWParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20006 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20007 if (!SWIG_IsOK(res1
)) {
20008 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20010 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20011 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20012 if (!SWIG_IsOK(ecode2
)) {
20013 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "2"" of type '" "int""'");
20015 arg2
= static_cast< int >(val2
);
20017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20018 (arg1
)->SetWParam(arg2
);
20019 wxPyEndAllowThreads(__tstate
);
20020 if (PyErr_Occurred()) SWIG_fail
;
20022 resultobj
= SWIG_Py_Void();
20029 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20030 PyObject
*resultobj
= 0;
20031 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20037 PyObject
* obj0
= 0 ;
20038 PyObject
* obj1
= 0 ;
20039 char * kwnames
[] = {
20040 (char *) "self",(char *) "val", NULL
20043 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20044 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20045 if (!SWIG_IsOK(res1
)) {
20046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20048 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20049 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20050 if (!SWIG_IsOK(ecode2
)) {
20051 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "2"" of type '" "int""'");
20053 arg2
= static_cast< int >(val2
);
20055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20056 (arg1
)->SetLParam(arg2
);
20057 wxPyEndAllowThreads(__tstate
);
20058 if (PyErr_Occurred()) SWIG_fail
;
20060 resultobj
= SWIG_Py_Void();
20067 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetListType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20068 PyObject
*resultobj
= 0;
20069 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20075 PyObject
* obj0
= 0 ;
20076 PyObject
* obj1
= 0 ;
20077 char * kwnames
[] = {
20078 (char *) "self",(char *) "val", NULL
20081 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetListType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20082 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20083 if (!SWIG_IsOK(res1
)) {
20084 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20086 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20087 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20088 if (!SWIG_IsOK(ecode2
)) {
20089 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "2"" of type '" "int""'");
20091 arg2
= static_cast< int >(val2
);
20093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20094 (arg1
)->SetListType(arg2
);
20095 wxPyEndAllowThreads(__tstate
);
20096 if (PyErr_Occurred()) SWIG_fail
;
20098 resultobj
= SWIG_Py_Void();
20105 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20106 PyObject
*resultobj
= 0;
20107 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20113 PyObject
* obj0
= 0 ;
20114 PyObject
* obj1
= 0 ;
20115 char * kwnames
[] = {
20116 (char *) "self",(char *) "val", NULL
20119 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20120 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20121 if (!SWIG_IsOK(res1
)) {
20122 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetX" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20124 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20125 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20126 if (!SWIG_IsOK(ecode2
)) {
20127 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetX" "', expected argument " "2"" of type '" "int""'");
20129 arg2
= static_cast< int >(val2
);
20131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20132 (arg1
)->SetX(arg2
);
20133 wxPyEndAllowThreads(__tstate
);
20134 if (PyErr_Occurred()) SWIG_fail
;
20136 resultobj
= SWIG_Py_Void();
20143 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20144 PyObject
*resultobj
= 0;
20145 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20151 PyObject
* obj0
= 0 ;
20152 PyObject
* obj1
= 0 ;
20153 char * kwnames
[] = {
20154 (char *) "self",(char *) "val", NULL
20157 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20158 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20159 if (!SWIG_IsOK(res1
)) {
20160 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetY" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20162 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20163 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20164 if (!SWIG_IsOK(ecode2
)) {
20165 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetY" "', expected argument " "2"" of type '" "int""'");
20167 arg2
= static_cast< int >(val2
);
20169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20170 (arg1
)->SetY(arg2
);
20171 wxPyEndAllowThreads(__tstate
);
20172 if (PyErr_Occurred()) SWIG_fail
;
20174 resultobj
= SWIG_Py_Void();
20181 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20182 PyObject
*resultobj
= 0;
20183 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20184 wxString
*arg2
= 0 ;
20187 bool temp2
= false ;
20188 PyObject
* obj0
= 0 ;
20189 PyObject
* obj1
= 0 ;
20190 char * kwnames
[] = {
20191 (char *) "self",(char *) "val", NULL
20194 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20195 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20196 if (!SWIG_IsOK(res1
)) {
20197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20199 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20201 arg2
= wxString_in_helper(obj1
);
20202 if (arg2
== NULL
) SWIG_fail
;
20206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20207 (arg1
)->SetDragText((wxString
const &)*arg2
);
20208 wxPyEndAllowThreads(__tstate
);
20209 if (PyErr_Occurred()) SWIG_fail
;
20211 resultobj
= SWIG_Py_Void();
20226 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20227 PyObject
*resultobj
= 0;
20228 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20234 PyObject
* obj0
= 0 ;
20235 PyObject
* obj1
= 0 ;
20236 char * kwnames
[] = {
20237 (char *) "self",(char *) "val", NULL
20240 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragAllowMove",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20241 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20242 if (!SWIG_IsOK(res1
)) {
20243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20245 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20246 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20247 if (!SWIG_IsOK(ecode2
)) {
20248 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "2"" of type '" "bool""'");
20250 arg2
= static_cast< bool >(val2
);
20252 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20253 (arg1
)->SetDragAllowMove(arg2
);
20254 wxPyEndAllowThreads(__tstate
);
20255 if (PyErr_Occurred()) SWIG_fail
;
20257 resultobj
= SWIG_Py_Void();
20264 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20265 PyObject
*resultobj
= 0;
20266 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20267 wxDragResult arg2
;
20272 PyObject
* obj0
= 0 ;
20273 PyObject
* obj1
= 0 ;
20274 char * kwnames
[] = {
20275 (char *) "self",(char *) "val", NULL
20278 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragResult",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20279 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20280 if (!SWIG_IsOK(res1
)) {
20281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20283 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20284 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20285 if (!SWIG_IsOK(ecode2
)) {
20286 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "2"" of type '" "wxDragResult""'");
20288 arg2
= static_cast< wxDragResult
>(val2
);
20290 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20291 (arg1
)->SetDragResult(arg2
);
20292 wxPyEndAllowThreads(__tstate
);
20293 if (PyErr_Occurred()) SWIG_fail
;
20295 resultobj
= SWIG_Py_Void();
20302 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20303 PyObject
*resultobj
= 0;
20304 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20308 PyObject
*swig_obj
[1] ;
20310 if (!args
) SWIG_fail
;
20311 swig_obj
[0] = args
;
20312 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20313 if (!SWIG_IsOK(res1
)) {
20314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20316 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20319 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetPosition();
20320 wxPyEndAllowThreads(__tstate
);
20321 if (PyErr_Occurred()) SWIG_fail
;
20323 resultobj
= SWIG_From_int(static_cast< int >(result
));
20330 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20331 PyObject
*resultobj
= 0;
20332 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20336 PyObject
*swig_obj
[1] ;
20338 if (!args
) SWIG_fail
;
20339 swig_obj
[0] = args
;
20340 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20341 if (!SWIG_IsOK(res1
)) {
20342 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20344 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20347 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetKey();
20348 wxPyEndAllowThreads(__tstate
);
20349 if (PyErr_Occurred()) SWIG_fail
;
20351 resultobj
= SWIG_From_int(static_cast< int >(result
));
20358 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20359 PyObject
*resultobj
= 0;
20360 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20364 PyObject
*swig_obj
[1] ;
20366 if (!args
) SWIG_fail
;
20367 swig_obj
[0] = args
;
20368 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20369 if (!SWIG_IsOK(res1
)) {
20370 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20372 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20375 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModifiers();
20376 wxPyEndAllowThreads(__tstate
);
20377 if (PyErr_Occurred()) SWIG_fail
;
20379 resultobj
= SWIG_From_int(static_cast< int >(result
));
20386 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20387 PyObject
*resultobj
= 0;
20388 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20392 PyObject
*swig_obj
[1] ;
20394 if (!args
) SWIG_fail
;
20395 swig_obj
[0] = args
;
20396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20397 if (!SWIG_IsOK(res1
)) {
20398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20400 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20403 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModificationType();
20404 wxPyEndAllowThreads(__tstate
);
20405 if (PyErr_Occurred()) SWIG_fail
;
20407 resultobj
= SWIG_From_int(static_cast< int >(result
));
20414 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20415 PyObject
*resultobj
= 0;
20416 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20420 PyObject
*swig_obj
[1] ;
20422 if (!args
) SWIG_fail
;
20423 swig_obj
[0] = args
;
20424 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20425 if (!SWIG_IsOK(res1
)) {
20426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetText" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20428 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20430 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20431 result
= ((wxStyledTextEvent
const *)arg1
)->GetText();
20432 wxPyEndAllowThreads(__tstate
);
20433 if (PyErr_Occurred()) SWIG_fail
;
20437 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20439 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20448 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20449 PyObject
*resultobj
= 0;
20450 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20454 PyObject
*swig_obj
[1] ;
20456 if (!args
) SWIG_fail
;
20457 swig_obj
[0] = args
;
20458 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20459 if (!SWIG_IsOK(res1
)) {
20460 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20462 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20465 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLength();
20466 wxPyEndAllowThreads(__tstate
);
20467 if (PyErr_Occurred()) SWIG_fail
;
20469 resultobj
= SWIG_From_int(static_cast< int >(result
));
20476 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20477 PyObject
*resultobj
= 0;
20478 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20482 PyObject
*swig_obj
[1] ;
20484 if (!args
) SWIG_fail
;
20485 swig_obj
[0] = args
;
20486 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20487 if (!SWIG_IsOK(res1
)) {
20488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20490 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20493 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLinesAdded();
20494 wxPyEndAllowThreads(__tstate
);
20495 if (PyErr_Occurred()) SWIG_fail
;
20497 resultobj
= SWIG_From_int(static_cast< int >(result
));
20504 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20505 PyObject
*resultobj
= 0;
20506 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20510 PyObject
*swig_obj
[1] ;
20512 if (!args
) SWIG_fail
;
20513 swig_obj
[0] = args
;
20514 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20515 if (!SWIG_IsOK(res1
)) {
20516 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20518 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20520 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20521 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLine();
20522 wxPyEndAllowThreads(__tstate
);
20523 if (PyErr_Occurred()) SWIG_fail
;
20525 resultobj
= SWIG_From_int(static_cast< int >(result
));
20532 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20533 PyObject
*resultobj
= 0;
20534 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20538 PyObject
*swig_obj
[1] ;
20540 if (!args
) SWIG_fail
;
20541 swig_obj
[0] = args
;
20542 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20543 if (!SWIG_IsOK(res1
)) {
20544 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20546 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20549 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelNow();
20550 wxPyEndAllowThreads(__tstate
);
20551 if (PyErr_Occurred()) SWIG_fail
;
20553 resultobj
= SWIG_From_int(static_cast< int >(result
));
20560 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20561 PyObject
*resultobj
= 0;
20562 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20566 PyObject
*swig_obj
[1] ;
20568 if (!args
) SWIG_fail
;
20569 swig_obj
[0] = args
;
20570 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20571 if (!SWIG_IsOK(res1
)) {
20572 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20574 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20577 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelPrev();
20578 wxPyEndAllowThreads(__tstate
);
20579 if (PyErr_Occurred()) SWIG_fail
;
20581 resultobj
= SWIG_From_int(static_cast< int >(result
));
20588 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20589 PyObject
*resultobj
= 0;
20590 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20594 PyObject
*swig_obj
[1] ;
20596 if (!args
) SWIG_fail
;
20597 swig_obj
[0] = args
;
20598 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20599 if (!SWIG_IsOK(res1
)) {
20600 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20602 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20604 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20605 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMargin();
20606 wxPyEndAllowThreads(__tstate
);
20607 if (PyErr_Occurred()) SWIG_fail
;
20609 resultobj
= SWIG_From_int(static_cast< int >(result
));
20616 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20617 PyObject
*resultobj
= 0;
20618 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20622 PyObject
*swig_obj
[1] ;
20624 if (!args
) SWIG_fail
;
20625 swig_obj
[0] = args
;
20626 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20627 if (!SWIG_IsOK(res1
)) {
20628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20630 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20632 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20633 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMessage();
20634 wxPyEndAllowThreads(__tstate
);
20635 if (PyErr_Occurred()) SWIG_fail
;
20637 resultobj
= SWIG_From_int(static_cast< int >(result
));
20644 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20645 PyObject
*resultobj
= 0;
20646 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20650 PyObject
*swig_obj
[1] ;
20652 if (!args
) SWIG_fail
;
20653 swig_obj
[0] = args
;
20654 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20655 if (!SWIG_IsOK(res1
)) {
20656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20658 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20661 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetWParam();
20662 wxPyEndAllowThreads(__tstate
);
20663 if (PyErr_Occurred()) SWIG_fail
;
20665 resultobj
= SWIG_From_int(static_cast< int >(result
));
20672 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20673 PyObject
*resultobj
= 0;
20674 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20678 PyObject
*swig_obj
[1] ;
20680 if (!args
) SWIG_fail
;
20681 swig_obj
[0] = args
;
20682 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20683 if (!SWIG_IsOK(res1
)) {
20684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20686 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20689 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLParam();
20690 wxPyEndAllowThreads(__tstate
);
20691 if (PyErr_Occurred()) SWIG_fail
;
20693 resultobj
= SWIG_From_int(static_cast< int >(result
));
20700 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetListType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20701 PyObject
*resultobj
= 0;
20702 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20706 PyObject
*swig_obj
[1] ;
20708 if (!args
) SWIG_fail
;
20709 swig_obj
[0] = args
;
20710 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20711 if (!SWIG_IsOK(res1
)) {
20712 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20714 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20716 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20717 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetListType();
20718 wxPyEndAllowThreads(__tstate
);
20719 if (PyErr_Occurred()) SWIG_fail
;
20721 resultobj
= SWIG_From_int(static_cast< int >(result
));
20728 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20729 PyObject
*resultobj
= 0;
20730 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20734 PyObject
*swig_obj
[1] ;
20736 if (!args
) SWIG_fail
;
20737 swig_obj
[0] = args
;
20738 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20739 if (!SWIG_IsOK(res1
)) {
20740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetX" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20742 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20745 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetX();
20746 wxPyEndAllowThreads(__tstate
);
20747 if (PyErr_Occurred()) SWIG_fail
;
20749 resultobj
= SWIG_From_int(static_cast< int >(result
));
20756 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20757 PyObject
*resultobj
= 0;
20758 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20762 PyObject
*swig_obj
[1] ;
20764 if (!args
) SWIG_fail
;
20765 swig_obj
[0] = args
;
20766 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20767 if (!SWIG_IsOK(res1
)) {
20768 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetY" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20770 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20773 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetY();
20774 wxPyEndAllowThreads(__tstate
);
20775 if (PyErr_Occurred()) SWIG_fail
;
20777 resultobj
= SWIG_From_int(static_cast< int >(result
));
20784 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20785 PyObject
*resultobj
= 0;
20786 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20790 PyObject
*swig_obj
[1] ;
20792 if (!args
) SWIG_fail
;
20793 swig_obj
[0] = args
;
20794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20795 if (!SWIG_IsOK(res1
)) {
20796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20798 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20801 result
= (arg1
)->GetDragText();
20802 wxPyEndAllowThreads(__tstate
);
20803 if (PyErr_Occurred()) SWIG_fail
;
20807 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20809 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20818 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20819 PyObject
*resultobj
= 0;
20820 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20824 PyObject
*swig_obj
[1] ;
20826 if (!args
) SWIG_fail
;
20827 swig_obj
[0] = args
;
20828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20829 if (!SWIG_IsOK(res1
)) {
20830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20832 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20835 result
= (bool)(arg1
)->GetDragAllowMove();
20836 wxPyEndAllowThreads(__tstate
);
20837 if (PyErr_Occurred()) SWIG_fail
;
20840 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20848 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20849 PyObject
*resultobj
= 0;
20850 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20851 wxDragResult result
;
20854 PyObject
*swig_obj
[1] ;
20856 if (!args
) SWIG_fail
;
20857 swig_obj
[0] = args
;
20858 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20859 if (!SWIG_IsOK(res1
)) {
20860 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20862 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20865 result
= (wxDragResult
)(arg1
)->GetDragResult();
20866 wxPyEndAllowThreads(__tstate
);
20867 if (PyErr_Occurred()) SWIG_fail
;
20869 resultobj
= SWIG_From_int(static_cast< int >(result
));
20876 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetShift(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20877 PyObject
*resultobj
= 0;
20878 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20882 PyObject
*swig_obj
[1] ;
20884 if (!args
) SWIG_fail
;
20885 swig_obj
[0] = args
;
20886 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20887 if (!SWIG_IsOK(res1
)) {
20888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetShift" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20890 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20893 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetShift();
20894 wxPyEndAllowThreads(__tstate
);
20895 if (PyErr_Occurred()) SWIG_fail
;
20898 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20906 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20907 PyObject
*resultobj
= 0;
20908 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20912 PyObject
*swig_obj
[1] ;
20914 if (!args
) SWIG_fail
;
20915 swig_obj
[0] = args
;
20916 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20917 if (!SWIG_IsOK(res1
)) {
20918 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetControl" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20920 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20923 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetControl();
20924 wxPyEndAllowThreads(__tstate
);
20925 if (PyErr_Occurred()) SWIG_fail
;
20928 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20936 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetAlt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20937 PyObject
*resultobj
= 0;
20938 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20942 PyObject
*swig_obj
[1] ;
20944 if (!args
) SWIG_fail
;
20945 swig_obj
[0] = args
;
20946 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20947 if (!SWIG_IsOK(res1
)) {
20948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetAlt" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20950 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20952 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20953 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetAlt();
20954 wxPyEndAllowThreads(__tstate
);
20955 if (PyErr_Occurred()) SWIG_fail
;
20958 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20966 SWIGINTERN PyObject
*StyledTextEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20968 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20969 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextEvent
, SWIG_NewClientData(obj
));
20970 return SWIG_Py_Void();
20973 SWIGINTERN PyObject
*StyledTextEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20974 return SWIG_Python_InitShadowInstance(args
);
20977 static PyMethodDef SwigMethods
[] = {
20978 { (char *)"new_StyledTextCtrl", (PyCFunction
) _wrap_new_StyledTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20979 { (char *)"new_PreStyledTextCtrl", (PyCFunction
)_wrap_new_PreStyledTextCtrl
, METH_NOARGS
, NULL
},
20980 { (char *)"StyledTextCtrl_Create", (PyCFunction
) _wrap_StyledTextCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20981 { (char *)"StyledTextCtrl_AddText", (PyCFunction
) _wrap_StyledTextCtrl_AddText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20982 { (char *)"StyledTextCtrl_AddStyledText", (PyCFunction
) _wrap_StyledTextCtrl_AddStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20983 { (char *)"StyledTextCtrl_InsertText", (PyCFunction
) _wrap_StyledTextCtrl_InsertText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20984 { (char *)"StyledTextCtrl_ClearAll", (PyCFunction
)_wrap_StyledTextCtrl_ClearAll
, METH_O
, NULL
},
20985 { (char *)"StyledTextCtrl_ClearDocumentStyle", (PyCFunction
)_wrap_StyledTextCtrl_ClearDocumentStyle
, METH_O
, NULL
},
20986 { (char *)"StyledTextCtrl_GetLength", (PyCFunction
)_wrap_StyledTextCtrl_GetLength
, METH_O
, NULL
},
20987 { (char *)"StyledTextCtrl_GetCharAt", (PyCFunction
) _wrap_StyledTextCtrl_GetCharAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20988 { (char *)"StyledTextCtrl_GetCurrentPos", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentPos
, METH_O
, NULL
},
20989 { (char *)"StyledTextCtrl_GetAnchor", (PyCFunction
)_wrap_StyledTextCtrl_GetAnchor
, METH_O
, NULL
},
20990 { (char *)"StyledTextCtrl_GetStyleAt", (PyCFunction
) _wrap_StyledTextCtrl_GetStyleAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20991 { (char *)"StyledTextCtrl_Redo", (PyCFunction
)_wrap_StyledTextCtrl_Redo
, METH_O
, NULL
},
20992 { (char *)"StyledTextCtrl_SetUndoCollection", (PyCFunction
) _wrap_StyledTextCtrl_SetUndoCollection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20993 { (char *)"StyledTextCtrl_SelectAll", (PyCFunction
)_wrap_StyledTextCtrl_SelectAll
, METH_O
, NULL
},
20994 { (char *)"StyledTextCtrl_SetSavePoint", (PyCFunction
)_wrap_StyledTextCtrl_SetSavePoint
, METH_O
, NULL
},
20995 { (char *)"StyledTextCtrl_GetStyledText", (PyCFunction
) _wrap_StyledTextCtrl_GetStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20996 { (char *)"StyledTextCtrl_CanRedo", (PyCFunction
)_wrap_StyledTextCtrl_CanRedo
, METH_O
, NULL
},
20997 { (char *)"StyledTextCtrl_MarkerLineFromHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerLineFromHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20998 { (char *)"StyledTextCtrl_MarkerDeleteHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20999 { (char *)"StyledTextCtrl_GetUndoCollection", (PyCFunction
)_wrap_StyledTextCtrl_GetUndoCollection
, METH_O
, NULL
},
21000 { (char *)"StyledTextCtrl_GetViewWhiteSpace", (PyCFunction
)_wrap_StyledTextCtrl_GetViewWhiteSpace
, METH_O
, NULL
},
21001 { (char *)"StyledTextCtrl_SetViewWhiteSpace", (PyCFunction
) _wrap_StyledTextCtrl_SetViewWhiteSpace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21002 { (char *)"StyledTextCtrl_PositionFromPoint", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21003 { (char *)"StyledTextCtrl_PositionFromPointClose", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPointClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21004 { (char *)"StyledTextCtrl_GotoLine", (PyCFunction
) _wrap_StyledTextCtrl_GotoLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21005 { (char *)"StyledTextCtrl_GotoPos", (PyCFunction
) _wrap_StyledTextCtrl_GotoPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21006 { (char *)"StyledTextCtrl_SetAnchor", (PyCFunction
) _wrap_StyledTextCtrl_SetAnchor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21007 { (char *)"StyledTextCtrl_GetCurLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLine
, METH_O
, NULL
},
21008 { (char *)"StyledTextCtrl_GetEndStyled", (PyCFunction
)_wrap_StyledTextCtrl_GetEndStyled
, METH_O
, NULL
},
21009 { (char *)"StyledTextCtrl_ConvertEOLs", (PyCFunction
) _wrap_StyledTextCtrl_ConvertEOLs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21010 { (char *)"StyledTextCtrl_GetEOLMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEOLMode
, METH_O
, NULL
},
21011 { (char *)"StyledTextCtrl_SetEOLMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEOLMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21012 { (char *)"StyledTextCtrl_StartStyling", (PyCFunction
) _wrap_StyledTextCtrl_StartStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21013 { (char *)"StyledTextCtrl_SetStyling", (PyCFunction
) _wrap_StyledTextCtrl_SetStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21014 { (char *)"StyledTextCtrl_GetBufferedDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetBufferedDraw
, METH_O
, NULL
},
21015 { (char *)"StyledTextCtrl_SetBufferedDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetBufferedDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21016 { (char *)"StyledTextCtrl_SetTabWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetTabWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21017 { (char *)"StyledTextCtrl_GetTabWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetTabWidth
, METH_O
, NULL
},
21018 { (char *)"StyledTextCtrl_SetCodePage", (PyCFunction
) _wrap_StyledTextCtrl_SetCodePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21019 { (char *)"StyledTextCtrl_MarkerDefine", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21020 { (char *)"StyledTextCtrl_MarkerSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21021 { (char *)"StyledTextCtrl_MarkerSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21022 { (char *)"StyledTextCtrl_MarkerAdd", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAdd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21023 { (char *)"StyledTextCtrl_MarkerDelete", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDelete
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21024 { (char *)"StyledTextCtrl_MarkerDeleteAll", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21025 { (char *)"StyledTextCtrl_MarkerGet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerGet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21026 { (char *)"StyledTextCtrl_MarkerNext", (PyCFunction
) _wrap_StyledTextCtrl_MarkerNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21027 { (char *)"StyledTextCtrl_MarkerPrevious", (PyCFunction
) _wrap_StyledTextCtrl_MarkerPrevious
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21028 { (char *)"StyledTextCtrl_MarkerDefineBitmap", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefineBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21029 { (char *)"StyledTextCtrl_MarkerAddSet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAddSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21030 { (char *)"StyledTextCtrl_SetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21031 { (char *)"StyledTextCtrl_GetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21032 { (char *)"StyledTextCtrl_SetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21033 { (char *)"StyledTextCtrl_GetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21034 { (char *)"StyledTextCtrl_SetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21035 { (char *)"StyledTextCtrl_GetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21036 { (char *)"StyledTextCtrl_SetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21037 { (char *)"StyledTextCtrl_GetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21038 { (char *)"StyledTextCtrl_StyleClearAll", (PyCFunction
)_wrap_StyledTextCtrl_StyleClearAll
, METH_O
, NULL
},
21039 { (char *)"StyledTextCtrl_StyleSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21040 { (char *)"StyledTextCtrl_StyleSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21041 { (char *)"StyledTextCtrl_StyleSetBold", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21042 { (char *)"StyledTextCtrl_StyleSetItalic", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetItalic
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21043 { (char *)"StyledTextCtrl_StyleSetSize", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21044 { (char *)"StyledTextCtrl_StyleSetFaceName", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFaceName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21045 { (char *)"StyledTextCtrl_StyleSetEOLFilled", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetEOLFilled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21046 { (char *)"StyledTextCtrl_StyleResetDefault", (PyCFunction
)_wrap_StyledTextCtrl_StyleResetDefault
, METH_O
, NULL
},
21047 { (char *)"StyledTextCtrl_StyleSetUnderline", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21048 { (char *)"StyledTextCtrl_StyleSetCase", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21049 { (char *)"StyledTextCtrl_StyleSetHotSpot", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetHotSpot
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21050 { (char *)"StyledTextCtrl_SetSelForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21051 { (char *)"StyledTextCtrl_SetSelBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21052 { (char *)"StyledTextCtrl_SetCaretForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21053 { (char *)"StyledTextCtrl_CmdKeyAssign", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyAssign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21054 { (char *)"StyledTextCtrl_CmdKeyClear", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyClear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21055 { (char *)"StyledTextCtrl_CmdKeyClearAll", (PyCFunction
)_wrap_StyledTextCtrl_CmdKeyClearAll
, METH_O
, NULL
},
21056 { (char *)"StyledTextCtrl_SetStyleBytes", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBytes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21057 { (char *)"StyledTextCtrl_StyleSetVisible", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21058 { (char *)"StyledTextCtrl_GetCaretPeriod", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretPeriod
, METH_O
, NULL
},
21059 { (char *)"StyledTextCtrl_SetCaretPeriod", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretPeriod
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21060 { (char *)"StyledTextCtrl_SetWordChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWordChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21061 { (char *)"StyledTextCtrl_BeginUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_BeginUndoAction
, METH_O
, NULL
},
21062 { (char *)"StyledTextCtrl_EndUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_EndUndoAction
, METH_O
, NULL
},
21063 { (char *)"StyledTextCtrl_IndicatorSetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21064 { (char *)"StyledTextCtrl_IndicatorGetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21065 { (char *)"StyledTextCtrl_IndicatorSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21066 { (char *)"StyledTextCtrl_IndicatorGetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21067 { (char *)"StyledTextCtrl_SetWhitespaceForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21068 { (char *)"StyledTextCtrl_SetWhitespaceBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21069 { (char *)"StyledTextCtrl_SetStyleBits", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21070 { (char *)"StyledTextCtrl_GetStyleBits", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBits
, METH_O
, NULL
},
21071 { (char *)"StyledTextCtrl_SetLineState", (PyCFunction
) _wrap_StyledTextCtrl_SetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21072 { (char *)"StyledTextCtrl_GetLineState", (PyCFunction
) _wrap_StyledTextCtrl_GetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21073 { (char *)"StyledTextCtrl_GetMaxLineState", (PyCFunction
)_wrap_StyledTextCtrl_GetMaxLineState
, METH_O
, NULL
},
21074 { (char *)"StyledTextCtrl_GetCaretLineVisible", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineVisible
, METH_O
, NULL
},
21075 { (char *)"StyledTextCtrl_SetCaretLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21076 { (char *)"StyledTextCtrl_GetCaretLineBack", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineBack
, METH_O
, NULL
},
21077 { (char *)"StyledTextCtrl_SetCaretLineBack", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineBack
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21078 { (char *)"StyledTextCtrl_StyleSetChangeable", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetChangeable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21079 { (char *)"StyledTextCtrl_AutoCompShow", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21080 { (char *)"StyledTextCtrl_AutoCompCancel", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompCancel
, METH_O
, NULL
},
21081 { (char *)"StyledTextCtrl_AutoCompActive", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompActive
, METH_O
, NULL
},
21082 { (char *)"StyledTextCtrl_AutoCompPosStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompPosStart
, METH_O
, NULL
},
21083 { (char *)"StyledTextCtrl_AutoCompComplete", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompComplete
, METH_O
, NULL
},
21084 { (char *)"StyledTextCtrl_AutoCompStops", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompStops
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21085 { (char *)"StyledTextCtrl_AutoCompSetSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21086 { (char *)"StyledTextCtrl_AutoCompGetSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetSeparator
, METH_O
, NULL
},
21087 { (char *)"StyledTextCtrl_AutoCompSelect", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSelect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21088 { (char *)"StyledTextCtrl_AutoCompSetCancelAtStart", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetCancelAtStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21089 { (char *)"StyledTextCtrl_AutoCompGetCancelAtStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCancelAtStart
, METH_O
, NULL
},
21090 { (char *)"StyledTextCtrl_AutoCompSetFillUps", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetFillUps
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21091 { (char *)"StyledTextCtrl_AutoCompSetChooseSingle", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetChooseSingle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21092 { (char *)"StyledTextCtrl_AutoCompGetChooseSingle", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetChooseSingle
, METH_O
, NULL
},
21093 { (char *)"StyledTextCtrl_AutoCompSetIgnoreCase", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetIgnoreCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21094 { (char *)"StyledTextCtrl_AutoCompGetIgnoreCase", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetIgnoreCase
, METH_O
, NULL
},
21095 { (char *)"StyledTextCtrl_UserListShow", (PyCFunction
) _wrap_StyledTextCtrl_UserListShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21096 { (char *)"StyledTextCtrl_AutoCompSetAutoHide", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetAutoHide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21097 { (char *)"StyledTextCtrl_AutoCompGetAutoHide", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetAutoHide
, METH_O
, NULL
},
21098 { (char *)"StyledTextCtrl_AutoCompSetDropRestOfWord", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetDropRestOfWord
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21099 { (char *)"StyledTextCtrl_AutoCompGetDropRestOfWord", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord
, METH_O
, NULL
},
21100 { (char *)"StyledTextCtrl_RegisterImage", (PyCFunction
) _wrap_StyledTextCtrl_RegisterImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21101 { (char *)"StyledTextCtrl_ClearRegisteredImages", (PyCFunction
)_wrap_StyledTextCtrl_ClearRegisteredImages
, METH_O
, NULL
},
21102 { (char *)"StyledTextCtrl_AutoCompGetTypeSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetTypeSeparator
, METH_O
, NULL
},
21103 { (char *)"StyledTextCtrl_AutoCompSetTypeSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetTypeSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21104 { (char *)"StyledTextCtrl_AutoCompSetMaxWidth", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21105 { (char *)"StyledTextCtrl_AutoCompGetMaxWidth", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxWidth
, METH_O
, NULL
},
21106 { (char *)"StyledTextCtrl_AutoCompSetMaxHeight", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21107 { (char *)"StyledTextCtrl_AutoCompGetMaxHeight", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxHeight
, METH_O
, NULL
},
21108 { (char *)"StyledTextCtrl_SetIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21109 { (char *)"StyledTextCtrl_GetIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetIndent
, METH_O
, NULL
},
21110 { (char *)"StyledTextCtrl_SetUseTabs", (PyCFunction
) _wrap_StyledTextCtrl_SetUseTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21111 { (char *)"StyledTextCtrl_GetUseTabs", (PyCFunction
)_wrap_StyledTextCtrl_GetUseTabs
, METH_O
, NULL
},
21112 { (char *)"StyledTextCtrl_SetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_SetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21113 { (char *)"StyledTextCtrl_GetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21114 { (char *)"StyledTextCtrl_GetLineIndentPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21115 { (char *)"StyledTextCtrl_GetColumn", (PyCFunction
) _wrap_StyledTextCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21116 { (char *)"StyledTextCtrl_SetUseHorizontalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseHorizontalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21117 { (char *)"StyledTextCtrl_GetUseHorizontalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseHorizontalScrollBar
, METH_O
, NULL
},
21118 { (char *)"StyledTextCtrl_SetIndentationGuides", (PyCFunction
) _wrap_StyledTextCtrl_SetIndentationGuides
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21119 { (char *)"StyledTextCtrl_GetIndentationGuides", (PyCFunction
)_wrap_StyledTextCtrl_GetIndentationGuides
, METH_O
, NULL
},
21120 { (char *)"StyledTextCtrl_SetHighlightGuide", (PyCFunction
) _wrap_StyledTextCtrl_SetHighlightGuide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21121 { (char *)"StyledTextCtrl_GetHighlightGuide", (PyCFunction
)_wrap_StyledTextCtrl_GetHighlightGuide
, METH_O
, NULL
},
21122 { (char *)"StyledTextCtrl_GetLineEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21123 { (char *)"StyledTextCtrl_GetCodePage", (PyCFunction
)_wrap_StyledTextCtrl_GetCodePage
, METH_O
, NULL
},
21124 { (char *)"StyledTextCtrl_GetCaretForeground", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretForeground
, METH_O
, NULL
},
21125 { (char *)"StyledTextCtrl_GetReadOnly", (PyCFunction
)_wrap_StyledTextCtrl_GetReadOnly
, METH_O
, NULL
},
21126 { (char *)"StyledTextCtrl_SetCurrentPos", (PyCFunction
) _wrap_StyledTextCtrl_SetCurrentPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21127 { (char *)"StyledTextCtrl_SetSelectionStart", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21128 { (char *)"StyledTextCtrl_GetSelectionStart", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionStart
, METH_O
, NULL
},
21129 { (char *)"StyledTextCtrl_SetSelectionEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21130 { (char *)"StyledTextCtrl_GetSelectionEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionEnd
, METH_O
, NULL
},
21131 { (char *)"StyledTextCtrl_SetPrintMagnification", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintMagnification
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21132 { (char *)"StyledTextCtrl_GetPrintMagnification", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintMagnification
, METH_O
, NULL
},
21133 { (char *)"StyledTextCtrl_SetPrintColourMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintColourMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21134 { (char *)"StyledTextCtrl_GetPrintColourMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintColourMode
, METH_O
, NULL
},
21135 { (char *)"StyledTextCtrl_FindText", (PyCFunction
) _wrap_StyledTextCtrl_FindText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21136 { (char *)"StyledTextCtrl_FormatRange", (PyCFunction
) _wrap_StyledTextCtrl_FormatRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21137 { (char *)"StyledTextCtrl_GetFirstVisibleLine", (PyCFunction
)_wrap_StyledTextCtrl_GetFirstVisibleLine
, METH_O
, NULL
},
21138 { (char *)"StyledTextCtrl_GetLine", (PyCFunction
) _wrap_StyledTextCtrl_GetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21139 { (char *)"StyledTextCtrl_GetLineCount", (PyCFunction
)_wrap_StyledTextCtrl_GetLineCount
, METH_O
, NULL
},
21140 { (char *)"StyledTextCtrl_SetMarginLeft", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21141 { (char *)"StyledTextCtrl_GetMarginLeft", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginLeft
, METH_O
, NULL
},
21142 { (char *)"StyledTextCtrl_SetMarginRight", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21143 { (char *)"StyledTextCtrl_GetMarginRight", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginRight
, METH_O
, NULL
},
21144 { (char *)"StyledTextCtrl_GetModify", (PyCFunction
)_wrap_StyledTextCtrl_GetModify
, METH_O
, NULL
},
21145 { (char *)"StyledTextCtrl_SetSelection", (PyCFunction
) _wrap_StyledTextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21146 { (char *)"StyledTextCtrl_GetSelectedText", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedText
, METH_O
, NULL
},
21147 { (char *)"StyledTextCtrl_GetTextRange", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21148 { (char *)"StyledTextCtrl_HideSelection", (PyCFunction
) _wrap_StyledTextCtrl_HideSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21149 { (char *)"StyledTextCtrl_LineFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_LineFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21150 { (char *)"StyledTextCtrl_PositionFromLine", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21151 { (char *)"StyledTextCtrl_LineScroll", (PyCFunction
) _wrap_StyledTextCtrl_LineScroll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21152 { (char *)"StyledTextCtrl_EnsureCaretVisible", (PyCFunction
)_wrap_StyledTextCtrl_EnsureCaretVisible
, METH_O
, NULL
},
21153 { (char *)"StyledTextCtrl_ReplaceSelection", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21154 { (char *)"StyledTextCtrl_SetReadOnly", (PyCFunction
) _wrap_StyledTextCtrl_SetReadOnly
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21155 { (char *)"StyledTextCtrl_CanPaste", (PyCFunction
)_wrap_StyledTextCtrl_CanPaste
, METH_O
, NULL
},
21156 { (char *)"StyledTextCtrl_CanUndo", (PyCFunction
)_wrap_StyledTextCtrl_CanUndo
, METH_O
, NULL
},
21157 { (char *)"StyledTextCtrl_EmptyUndoBuffer", (PyCFunction
)_wrap_StyledTextCtrl_EmptyUndoBuffer
, METH_O
, NULL
},
21158 { (char *)"StyledTextCtrl_Undo", (PyCFunction
)_wrap_StyledTextCtrl_Undo
, METH_O
, NULL
},
21159 { (char *)"StyledTextCtrl_Cut", (PyCFunction
)_wrap_StyledTextCtrl_Cut
, METH_O
, NULL
},
21160 { (char *)"StyledTextCtrl_Copy", (PyCFunction
)_wrap_StyledTextCtrl_Copy
, METH_O
, NULL
},
21161 { (char *)"StyledTextCtrl_Paste", (PyCFunction
)_wrap_StyledTextCtrl_Paste
, METH_O
, NULL
},
21162 { (char *)"StyledTextCtrl_Clear", (PyCFunction
)_wrap_StyledTextCtrl_Clear
, METH_O
, NULL
},
21163 { (char *)"StyledTextCtrl_SetText", (PyCFunction
) _wrap_StyledTextCtrl_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21164 { (char *)"StyledTextCtrl_GetText", (PyCFunction
)_wrap_StyledTextCtrl_GetText
, METH_O
, NULL
},
21165 { (char *)"StyledTextCtrl_GetTextLength", (PyCFunction
)_wrap_StyledTextCtrl_GetTextLength
, METH_O
, NULL
},
21166 { (char *)"StyledTextCtrl_SetOvertype", (PyCFunction
) _wrap_StyledTextCtrl_SetOvertype
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21167 { (char *)"StyledTextCtrl_GetOvertype", (PyCFunction
)_wrap_StyledTextCtrl_GetOvertype
, METH_O
, NULL
},
21168 { (char *)"StyledTextCtrl_SetCaretWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21169 { (char *)"StyledTextCtrl_GetCaretWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretWidth
, METH_O
, NULL
},
21170 { (char *)"StyledTextCtrl_SetTargetStart", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21171 { (char *)"StyledTextCtrl_GetTargetStart", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetStart
, METH_O
, NULL
},
21172 { (char *)"StyledTextCtrl_SetTargetEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21173 { (char *)"StyledTextCtrl_GetTargetEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetEnd
, METH_O
, NULL
},
21174 { (char *)"StyledTextCtrl_ReplaceTarget", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21175 { (char *)"StyledTextCtrl_ReplaceTargetRE", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTargetRE
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21176 { (char *)"StyledTextCtrl_SearchInTarget", (PyCFunction
) _wrap_StyledTextCtrl_SearchInTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21177 { (char *)"StyledTextCtrl_SetSearchFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetSearchFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21178 { (char *)"StyledTextCtrl_GetSearchFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetSearchFlags
, METH_O
, NULL
},
21179 { (char *)"StyledTextCtrl_CallTipShow", (PyCFunction
) _wrap_StyledTextCtrl_CallTipShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21180 { (char *)"StyledTextCtrl_CallTipCancel", (PyCFunction
)_wrap_StyledTextCtrl_CallTipCancel
, METH_O
, NULL
},
21181 { (char *)"StyledTextCtrl_CallTipActive", (PyCFunction
)_wrap_StyledTextCtrl_CallTipActive
, METH_O
, NULL
},
21182 { (char *)"StyledTextCtrl_CallTipPosAtStart", (PyCFunction
)_wrap_StyledTextCtrl_CallTipPosAtStart
, METH_O
, NULL
},
21183 { (char *)"StyledTextCtrl_CallTipSetHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21184 { (char *)"StyledTextCtrl_CallTipSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21185 { (char *)"StyledTextCtrl_CallTipSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21186 { (char *)"StyledTextCtrl_CallTipSetForegroundHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForegroundHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21187 { (char *)"StyledTextCtrl_VisibleFromDocLine", (PyCFunction
) _wrap_StyledTextCtrl_VisibleFromDocLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21188 { (char *)"StyledTextCtrl_DocLineFromVisible", (PyCFunction
) _wrap_StyledTextCtrl_DocLineFromVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21189 { (char *)"StyledTextCtrl_WrapCount", (PyCFunction
) _wrap_StyledTextCtrl_WrapCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21190 { (char *)"StyledTextCtrl_SetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21191 { (char *)"StyledTextCtrl_GetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21192 { (char *)"StyledTextCtrl_GetLastChild", (PyCFunction
) _wrap_StyledTextCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21193 { (char *)"StyledTextCtrl_GetFoldParent", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21194 { (char *)"StyledTextCtrl_ShowLines", (PyCFunction
) _wrap_StyledTextCtrl_ShowLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21195 { (char *)"StyledTextCtrl_HideLines", (PyCFunction
) _wrap_StyledTextCtrl_HideLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21196 { (char *)"StyledTextCtrl_GetLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_GetLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21197 { (char *)"StyledTextCtrl_SetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21198 { (char *)"StyledTextCtrl_GetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21199 { (char *)"StyledTextCtrl_ToggleFold", (PyCFunction
) _wrap_StyledTextCtrl_ToggleFold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21200 { (char *)"StyledTextCtrl_EnsureVisible", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21201 { (char *)"StyledTextCtrl_SetFoldFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21202 { (char *)"StyledTextCtrl_EnsureVisibleEnforcePolicy", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21203 { (char *)"StyledTextCtrl_SetTabIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetTabIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21204 { (char *)"StyledTextCtrl_GetTabIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetTabIndents
, METH_O
, NULL
},
21205 { (char *)"StyledTextCtrl_SetBackSpaceUnIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetBackSpaceUnIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21206 { (char *)"StyledTextCtrl_GetBackSpaceUnIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetBackSpaceUnIndents
, METH_O
, NULL
},
21207 { (char *)"StyledTextCtrl_SetMouseDwellTime", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDwellTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21208 { (char *)"StyledTextCtrl_GetMouseDwellTime", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDwellTime
, METH_O
, NULL
},
21209 { (char *)"StyledTextCtrl_WordStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21210 { (char *)"StyledTextCtrl_WordEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21211 { (char *)"StyledTextCtrl_SetWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21212 { (char *)"StyledTextCtrl_GetWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapMode
, METH_O
, NULL
},
21213 { (char *)"StyledTextCtrl_SetWrapVisualFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21214 { (char *)"StyledTextCtrl_GetWrapVisualFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlags
, METH_O
, NULL
},
21215 { (char *)"StyledTextCtrl_SetWrapVisualFlagsLocation", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlagsLocation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21216 { (char *)"StyledTextCtrl_GetWrapVisualFlagsLocation", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation
, METH_O
, NULL
},
21217 { (char *)"StyledTextCtrl_SetWrapStartIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapStartIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21218 { (char *)"StyledTextCtrl_GetWrapStartIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapStartIndent
, METH_O
, NULL
},
21219 { (char *)"StyledTextCtrl_SetLayoutCache", (PyCFunction
) _wrap_StyledTextCtrl_SetLayoutCache
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21220 { (char *)"StyledTextCtrl_GetLayoutCache", (PyCFunction
)_wrap_StyledTextCtrl_GetLayoutCache
, METH_O
, NULL
},
21221 { (char *)"StyledTextCtrl_SetScrollWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetScrollWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21222 { (char *)"StyledTextCtrl_GetScrollWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetScrollWidth
, METH_O
, NULL
},
21223 { (char *)"StyledTextCtrl_TextWidth", (PyCFunction
) _wrap_StyledTextCtrl_TextWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21224 { (char *)"StyledTextCtrl_SetEndAtLastLine", (PyCFunction
) _wrap_StyledTextCtrl_SetEndAtLastLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21225 { (char *)"StyledTextCtrl_GetEndAtLastLine", (PyCFunction
)_wrap_StyledTextCtrl_GetEndAtLastLine
, METH_O
, NULL
},
21226 { (char *)"StyledTextCtrl_TextHeight", (PyCFunction
) _wrap_StyledTextCtrl_TextHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21227 { (char *)"StyledTextCtrl_SetUseVerticalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseVerticalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21228 { (char *)"StyledTextCtrl_GetUseVerticalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseVerticalScrollBar
, METH_O
, NULL
},
21229 { (char *)"StyledTextCtrl_AppendText", (PyCFunction
) _wrap_StyledTextCtrl_AppendText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21230 { (char *)"StyledTextCtrl_GetTwoPhaseDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetTwoPhaseDraw
, METH_O
, NULL
},
21231 { (char *)"StyledTextCtrl_SetTwoPhaseDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetTwoPhaseDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21232 { (char *)"StyledTextCtrl_TargetFromSelection", (PyCFunction
)_wrap_StyledTextCtrl_TargetFromSelection
, METH_O
, NULL
},
21233 { (char *)"StyledTextCtrl_LinesJoin", (PyCFunction
)_wrap_StyledTextCtrl_LinesJoin
, METH_O
, NULL
},
21234 { (char *)"StyledTextCtrl_LinesSplit", (PyCFunction
) _wrap_StyledTextCtrl_LinesSplit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21235 { (char *)"StyledTextCtrl_SetFoldMarginColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21236 { (char *)"StyledTextCtrl_SetFoldMarginHiColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginHiColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21237 { (char *)"StyledTextCtrl_LineDown", (PyCFunction
)_wrap_StyledTextCtrl_LineDown
, METH_O
, NULL
},
21238 { (char *)"StyledTextCtrl_LineDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownExtend
, METH_O
, NULL
},
21239 { (char *)"StyledTextCtrl_LineUp", (PyCFunction
)_wrap_StyledTextCtrl_LineUp
, METH_O
, NULL
},
21240 { (char *)"StyledTextCtrl_LineUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpExtend
, METH_O
, NULL
},
21241 { (char *)"StyledTextCtrl_CharLeft", (PyCFunction
)_wrap_StyledTextCtrl_CharLeft
, METH_O
, NULL
},
21242 { (char *)"StyledTextCtrl_CharLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftExtend
, METH_O
, NULL
},
21243 { (char *)"StyledTextCtrl_CharRight", (PyCFunction
)_wrap_StyledTextCtrl_CharRight
, METH_O
, NULL
},
21244 { (char *)"StyledTextCtrl_CharRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightExtend
, METH_O
, NULL
},
21245 { (char *)"StyledTextCtrl_WordLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordLeft
, METH_O
, NULL
},
21246 { (char *)"StyledTextCtrl_WordLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftExtend
, METH_O
, NULL
},
21247 { (char *)"StyledTextCtrl_WordRight", (PyCFunction
)_wrap_StyledTextCtrl_WordRight
, METH_O
, NULL
},
21248 { (char *)"StyledTextCtrl_WordRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightExtend
, METH_O
, NULL
},
21249 { (char *)"StyledTextCtrl_Home", (PyCFunction
)_wrap_StyledTextCtrl_Home
, METH_O
, NULL
},
21250 { (char *)"StyledTextCtrl_HomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeExtend
, METH_O
, NULL
},
21251 { (char *)"StyledTextCtrl_LineEnd", (PyCFunction
)_wrap_StyledTextCtrl_LineEnd
, METH_O
, NULL
},
21252 { (char *)"StyledTextCtrl_LineEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndExtend
, METH_O
, NULL
},
21253 { (char *)"StyledTextCtrl_DocumentStart", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStart
, METH_O
, NULL
},
21254 { (char *)"StyledTextCtrl_DocumentStartExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStartExtend
, METH_O
, NULL
},
21255 { (char *)"StyledTextCtrl_DocumentEnd", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEnd
, METH_O
, NULL
},
21256 { (char *)"StyledTextCtrl_DocumentEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEndExtend
, METH_O
, NULL
},
21257 { (char *)"StyledTextCtrl_PageUp", (PyCFunction
)_wrap_StyledTextCtrl_PageUp
, METH_O
, NULL
},
21258 { (char *)"StyledTextCtrl_PageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpExtend
, METH_O
, NULL
},
21259 { (char *)"StyledTextCtrl_PageDown", (PyCFunction
)_wrap_StyledTextCtrl_PageDown
, METH_O
, NULL
},
21260 { (char *)"StyledTextCtrl_PageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownExtend
, METH_O
, NULL
},
21261 { (char *)"StyledTextCtrl_EditToggleOvertype", (PyCFunction
)_wrap_StyledTextCtrl_EditToggleOvertype
, METH_O
, NULL
},
21262 { (char *)"StyledTextCtrl_Cancel", (PyCFunction
)_wrap_StyledTextCtrl_Cancel
, METH_O
, NULL
},
21263 { (char *)"StyledTextCtrl_DeleteBack", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBack
, METH_O
, NULL
},
21264 { (char *)"StyledTextCtrl_Tab", (PyCFunction
)_wrap_StyledTextCtrl_Tab
, METH_O
, NULL
},
21265 { (char *)"StyledTextCtrl_BackTab", (PyCFunction
)_wrap_StyledTextCtrl_BackTab
, METH_O
, NULL
},
21266 { (char *)"StyledTextCtrl_NewLine", (PyCFunction
)_wrap_StyledTextCtrl_NewLine
, METH_O
, NULL
},
21267 { (char *)"StyledTextCtrl_FormFeed", (PyCFunction
)_wrap_StyledTextCtrl_FormFeed
, METH_O
, NULL
},
21268 { (char *)"StyledTextCtrl_VCHome", (PyCFunction
)_wrap_StyledTextCtrl_VCHome
, METH_O
, NULL
},
21269 { (char *)"StyledTextCtrl_VCHomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeExtend
, METH_O
, NULL
},
21270 { (char *)"StyledTextCtrl_ZoomIn", (PyCFunction
)_wrap_StyledTextCtrl_ZoomIn
, METH_O
, NULL
},
21271 { (char *)"StyledTextCtrl_ZoomOut", (PyCFunction
)_wrap_StyledTextCtrl_ZoomOut
, METH_O
, NULL
},
21272 { (char *)"StyledTextCtrl_DelWordLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelWordLeft
, METH_O
, NULL
},
21273 { (char *)"StyledTextCtrl_DelWordRight", (PyCFunction
)_wrap_StyledTextCtrl_DelWordRight
, METH_O
, NULL
},
21274 { (char *)"StyledTextCtrl_LineCut", (PyCFunction
)_wrap_StyledTextCtrl_LineCut
, METH_O
, NULL
},
21275 { (char *)"StyledTextCtrl_LineDelete", (PyCFunction
)_wrap_StyledTextCtrl_LineDelete
, METH_O
, NULL
},
21276 { (char *)"StyledTextCtrl_LineTranspose", (PyCFunction
)_wrap_StyledTextCtrl_LineTranspose
, METH_O
, NULL
},
21277 { (char *)"StyledTextCtrl_LineDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_LineDuplicate
, METH_O
, NULL
},
21278 { (char *)"StyledTextCtrl_LowerCase", (PyCFunction
)_wrap_StyledTextCtrl_LowerCase
, METH_O
, NULL
},
21279 { (char *)"StyledTextCtrl_UpperCase", (PyCFunction
)_wrap_StyledTextCtrl_UpperCase
, METH_O
, NULL
},
21280 { (char *)"StyledTextCtrl_LineScrollDown", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollDown
, METH_O
, NULL
},
21281 { (char *)"StyledTextCtrl_LineScrollUp", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollUp
, METH_O
, NULL
},
21282 { (char *)"StyledTextCtrl_DeleteBackNotLine", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBackNotLine
, METH_O
, NULL
},
21283 { (char *)"StyledTextCtrl_HomeDisplay", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplay
, METH_O
, NULL
},
21284 { (char *)"StyledTextCtrl_HomeDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplayExtend
, METH_O
, NULL
},
21285 { (char *)"StyledTextCtrl_LineEndDisplay", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplay
, METH_O
, NULL
},
21286 { (char *)"StyledTextCtrl_LineEndDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplayExtend
, METH_O
, NULL
},
21287 { (char *)"StyledTextCtrl_HomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrap
, METH_O
, NULL
},
21288 { (char *)"StyledTextCtrl_HomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrapExtend
, METH_O
, NULL
},
21289 { (char *)"StyledTextCtrl_LineEndWrap", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrap
, METH_O
, NULL
},
21290 { (char *)"StyledTextCtrl_LineEndWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrapExtend
, METH_O
, NULL
},
21291 { (char *)"StyledTextCtrl_VCHomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrap
, METH_O
, NULL
},
21292 { (char *)"StyledTextCtrl_VCHomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrapExtend
, METH_O
, NULL
},
21293 { (char *)"StyledTextCtrl_LineCopy", (PyCFunction
)_wrap_StyledTextCtrl_LineCopy
, METH_O
, NULL
},
21294 { (char *)"StyledTextCtrl_MoveCaretInsideView", (PyCFunction
)_wrap_StyledTextCtrl_MoveCaretInsideView
, METH_O
, NULL
},
21295 { (char *)"StyledTextCtrl_LineLength", (PyCFunction
) _wrap_StyledTextCtrl_LineLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21296 { (char *)"StyledTextCtrl_BraceHighlight", (PyCFunction
) _wrap_StyledTextCtrl_BraceHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21297 { (char *)"StyledTextCtrl_BraceBadLight", (PyCFunction
) _wrap_StyledTextCtrl_BraceBadLight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21298 { (char *)"StyledTextCtrl_BraceMatch", (PyCFunction
) _wrap_StyledTextCtrl_BraceMatch
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21299 { (char *)"StyledTextCtrl_GetViewEOL", (PyCFunction
)_wrap_StyledTextCtrl_GetViewEOL
, METH_O
, NULL
},
21300 { (char *)"StyledTextCtrl_SetViewEOL", (PyCFunction
) _wrap_StyledTextCtrl_SetViewEOL
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21301 { (char *)"StyledTextCtrl_GetDocPointer", (PyCFunction
)_wrap_StyledTextCtrl_GetDocPointer
, METH_O
, NULL
},
21302 { (char *)"StyledTextCtrl_SetDocPointer", (PyCFunction
) _wrap_StyledTextCtrl_SetDocPointer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21303 { (char *)"StyledTextCtrl_SetModEventMask", (PyCFunction
) _wrap_StyledTextCtrl_SetModEventMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21304 { (char *)"StyledTextCtrl_GetEdgeColumn", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColumn
, METH_O
, NULL
},
21305 { (char *)"StyledTextCtrl_SetEdgeColumn", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21306 { (char *)"StyledTextCtrl_GetEdgeMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeMode
, METH_O
, NULL
},
21307 { (char *)"StyledTextCtrl_SetEdgeMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21308 { (char *)"StyledTextCtrl_GetEdgeColour", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColour
, METH_O
, NULL
},
21309 { (char *)"StyledTextCtrl_SetEdgeColour", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21310 { (char *)"StyledTextCtrl_SearchAnchor", (PyCFunction
)_wrap_StyledTextCtrl_SearchAnchor
, METH_O
, NULL
},
21311 { (char *)"StyledTextCtrl_SearchNext", (PyCFunction
) _wrap_StyledTextCtrl_SearchNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21312 { (char *)"StyledTextCtrl_SearchPrev", (PyCFunction
) _wrap_StyledTextCtrl_SearchPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21313 { (char *)"StyledTextCtrl_LinesOnScreen", (PyCFunction
)_wrap_StyledTextCtrl_LinesOnScreen
, METH_O
, NULL
},
21314 { (char *)"StyledTextCtrl_UsePopUp", (PyCFunction
) _wrap_StyledTextCtrl_UsePopUp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21315 { (char *)"StyledTextCtrl_SelectionIsRectangle", (PyCFunction
)_wrap_StyledTextCtrl_SelectionIsRectangle
, METH_O
, NULL
},
21316 { (char *)"StyledTextCtrl_SetZoom", (PyCFunction
) _wrap_StyledTextCtrl_SetZoom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21317 { (char *)"StyledTextCtrl_GetZoom", (PyCFunction
)_wrap_StyledTextCtrl_GetZoom
, METH_O
, NULL
},
21318 { (char *)"StyledTextCtrl_CreateDocument", (PyCFunction
)_wrap_StyledTextCtrl_CreateDocument
, METH_O
, NULL
},
21319 { (char *)"StyledTextCtrl_AddRefDocument", (PyCFunction
) _wrap_StyledTextCtrl_AddRefDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21320 { (char *)"StyledTextCtrl_ReleaseDocument", (PyCFunction
) _wrap_StyledTextCtrl_ReleaseDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21321 { (char *)"StyledTextCtrl_GetModEventMask", (PyCFunction
)_wrap_StyledTextCtrl_GetModEventMask
, METH_O
, NULL
},
21322 { (char *)"StyledTextCtrl_SetSTCFocus", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21323 { (char *)"StyledTextCtrl_GetSTCFocus", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCFocus
, METH_O
, NULL
},
21324 { (char *)"StyledTextCtrl_SetStatus", (PyCFunction
) _wrap_StyledTextCtrl_SetStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21325 { (char *)"StyledTextCtrl_GetStatus", (PyCFunction
)_wrap_StyledTextCtrl_GetStatus
, METH_O
, NULL
},
21326 { (char *)"StyledTextCtrl_SetMouseDownCaptures", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDownCaptures
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21327 { (char *)"StyledTextCtrl_GetMouseDownCaptures", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDownCaptures
, METH_O
, NULL
},
21328 { (char *)"StyledTextCtrl_SetSTCCursor", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21329 { (char *)"StyledTextCtrl_GetSTCCursor", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCCursor
, METH_O
, NULL
},
21330 { (char *)"StyledTextCtrl_SetControlCharSymbol", (PyCFunction
) _wrap_StyledTextCtrl_SetControlCharSymbol
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21331 { (char *)"StyledTextCtrl_GetControlCharSymbol", (PyCFunction
)_wrap_StyledTextCtrl_GetControlCharSymbol
, METH_O
, NULL
},
21332 { (char *)"StyledTextCtrl_WordPartLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeft
, METH_O
, NULL
},
21333 { (char *)"StyledTextCtrl_WordPartLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeftExtend
, METH_O
, NULL
},
21334 { (char *)"StyledTextCtrl_WordPartRight", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRight
, METH_O
, NULL
},
21335 { (char *)"StyledTextCtrl_WordPartRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRightExtend
, METH_O
, NULL
},
21336 { (char *)"StyledTextCtrl_SetVisiblePolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetVisiblePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21337 { (char *)"StyledTextCtrl_DelLineLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelLineLeft
, METH_O
, NULL
},
21338 { (char *)"StyledTextCtrl_DelLineRight", (PyCFunction
)_wrap_StyledTextCtrl_DelLineRight
, METH_O
, NULL
},
21339 { (char *)"StyledTextCtrl_SetXOffset", (PyCFunction
) _wrap_StyledTextCtrl_SetXOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21340 { (char *)"StyledTextCtrl_GetXOffset", (PyCFunction
)_wrap_StyledTextCtrl_GetXOffset
, METH_O
, NULL
},
21341 { (char *)"StyledTextCtrl_ChooseCaretX", (PyCFunction
)_wrap_StyledTextCtrl_ChooseCaretX
, METH_O
, NULL
},
21342 { (char *)"StyledTextCtrl_SetXCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetXCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21343 { (char *)"StyledTextCtrl_SetYCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetYCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21344 { (char *)"StyledTextCtrl_SetPrintWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21345 { (char *)"StyledTextCtrl_GetPrintWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintWrapMode
, METH_O
, NULL
},
21346 { (char *)"StyledTextCtrl_SetHotspotActiveForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21347 { (char *)"StyledTextCtrl_SetHotspotActiveBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21348 { (char *)"StyledTextCtrl_SetHotspotActiveUnderline", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21349 { (char *)"StyledTextCtrl_SetHotspotSingleLine", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotSingleLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21350 { (char *)"StyledTextCtrl_ParaDown", (PyCFunction
)_wrap_StyledTextCtrl_ParaDown
, METH_O
, NULL
},
21351 { (char *)"StyledTextCtrl_ParaDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaDownExtend
, METH_O
, NULL
},
21352 { (char *)"StyledTextCtrl_ParaUp", (PyCFunction
)_wrap_StyledTextCtrl_ParaUp
, METH_O
, NULL
},
21353 { (char *)"StyledTextCtrl_ParaUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaUpExtend
, METH_O
, NULL
},
21354 { (char *)"StyledTextCtrl_PositionBefore", (PyCFunction
) _wrap_StyledTextCtrl_PositionBefore
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21355 { (char *)"StyledTextCtrl_PositionAfter", (PyCFunction
) _wrap_StyledTextCtrl_PositionAfter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21356 { (char *)"StyledTextCtrl_CopyRange", (PyCFunction
) _wrap_StyledTextCtrl_CopyRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21357 { (char *)"StyledTextCtrl_CopyText", (PyCFunction
) _wrap_StyledTextCtrl_CopyText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21358 { (char *)"StyledTextCtrl_SetSelectionMode", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21359 { (char *)"StyledTextCtrl_GetSelectionMode", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionMode
, METH_O
, NULL
},
21360 { (char *)"StyledTextCtrl_GetLineSelStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21361 { (char *)"StyledTextCtrl_GetLineSelEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21362 { (char *)"StyledTextCtrl_LineDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownRectExtend
, METH_O
, NULL
},
21363 { (char *)"StyledTextCtrl_LineUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpRectExtend
, METH_O
, NULL
},
21364 { (char *)"StyledTextCtrl_CharLeftRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftRectExtend
, METH_O
, NULL
},
21365 { (char *)"StyledTextCtrl_CharRightRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightRectExtend
, METH_O
, NULL
},
21366 { (char *)"StyledTextCtrl_HomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeRectExtend
, METH_O
, NULL
},
21367 { (char *)"StyledTextCtrl_VCHomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeRectExtend
, METH_O
, NULL
},
21368 { (char *)"StyledTextCtrl_LineEndRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndRectExtend
, METH_O
, NULL
},
21369 { (char *)"StyledTextCtrl_PageUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpRectExtend
, METH_O
, NULL
},
21370 { (char *)"StyledTextCtrl_PageDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownRectExtend
, METH_O
, NULL
},
21371 { (char *)"StyledTextCtrl_StutteredPageUp", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUp
, METH_O
, NULL
},
21372 { (char *)"StyledTextCtrl_StutteredPageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUpExtend
, METH_O
, NULL
},
21373 { (char *)"StyledTextCtrl_StutteredPageDown", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDown
, METH_O
, NULL
},
21374 { (char *)"StyledTextCtrl_StutteredPageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDownExtend
, METH_O
, NULL
},
21375 { (char *)"StyledTextCtrl_WordLeftEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEnd
, METH_O
, NULL
},
21376 { (char *)"StyledTextCtrl_WordLeftEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEndExtend
, METH_O
, NULL
},
21377 { (char *)"StyledTextCtrl_WordRightEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEnd
, METH_O
, NULL
},
21378 { (char *)"StyledTextCtrl_WordRightEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEndExtend
, METH_O
, NULL
},
21379 { (char *)"StyledTextCtrl_SetWhitespaceChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21380 { (char *)"StyledTextCtrl_SetCharsDefault", (PyCFunction
)_wrap_StyledTextCtrl_SetCharsDefault
, METH_O
, NULL
},
21381 { (char *)"StyledTextCtrl_AutoCompGetCurrent", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCurrent
, METH_O
, NULL
},
21382 { (char *)"StyledTextCtrl_Allocate", (PyCFunction
) _wrap_StyledTextCtrl_Allocate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21383 { (char *)"StyledTextCtrl_FindColumn", (PyCFunction
) _wrap_StyledTextCtrl_FindColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21384 { (char *)"StyledTextCtrl_GetCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretSticky
, METH_O
, NULL
},
21385 { (char *)"StyledTextCtrl_SetCaretSticky", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretSticky
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21386 { (char *)"StyledTextCtrl_ToggleCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_ToggleCaretSticky
, METH_O
, NULL
},
21387 { (char *)"StyledTextCtrl_SetPasteConvertEndings", (PyCFunction
) _wrap_StyledTextCtrl_SetPasteConvertEndings
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21388 { (char *)"StyledTextCtrl_GetPasteConvertEndings", (PyCFunction
)_wrap_StyledTextCtrl_GetPasteConvertEndings
, METH_O
, NULL
},
21389 { (char *)"StyledTextCtrl_SelectionDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_SelectionDuplicate
, METH_O
, NULL
},
21390 { (char *)"StyledTextCtrl_StartRecord", (PyCFunction
)_wrap_StyledTextCtrl_StartRecord
, METH_O
, NULL
},
21391 { (char *)"StyledTextCtrl_StopRecord", (PyCFunction
)_wrap_StyledTextCtrl_StopRecord
, METH_O
, NULL
},
21392 { (char *)"StyledTextCtrl_SetLexer", (PyCFunction
) _wrap_StyledTextCtrl_SetLexer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21393 { (char *)"StyledTextCtrl_GetLexer", (PyCFunction
)_wrap_StyledTextCtrl_GetLexer
, METH_O
, NULL
},
21394 { (char *)"StyledTextCtrl_Colourise", (PyCFunction
) _wrap_StyledTextCtrl_Colourise
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21395 { (char *)"StyledTextCtrl_SetProperty", (PyCFunction
) _wrap_StyledTextCtrl_SetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21396 { (char *)"StyledTextCtrl_SetKeyWords", (PyCFunction
) _wrap_StyledTextCtrl_SetKeyWords
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21397 { (char *)"StyledTextCtrl_SetLexerLanguage", (PyCFunction
) _wrap_StyledTextCtrl_SetLexerLanguage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21398 { (char *)"StyledTextCtrl_GetProperty", (PyCFunction
) _wrap_StyledTextCtrl_GetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21399 { (char *)"StyledTextCtrl_GetPropertyExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21400 { (char *)"StyledTextCtrl_GetPropertyInt", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21401 { (char *)"StyledTextCtrl_GetStyleBitsNeeded", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBitsNeeded
, METH_O
, NULL
},
21402 { (char *)"StyledTextCtrl_GetCurrentLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentLine
, METH_O
, NULL
},
21403 { (char *)"StyledTextCtrl_StyleSetSpec", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSpec
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21404 { (char *)"StyledTextCtrl_StyleSetFont", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21405 { (char *)"StyledTextCtrl_StyleSetFontAttr", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21406 { (char *)"StyledTextCtrl_StyleSetCharacterSet", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCharacterSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21407 { (char *)"StyledTextCtrl_StyleSetFontEncoding", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21408 { (char *)"StyledTextCtrl_CmdKeyExecute", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyExecute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21409 { (char *)"StyledTextCtrl_SetMargins", (PyCFunction
) _wrap_StyledTextCtrl_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21410 { (char *)"StyledTextCtrl_GetSelection", (PyCFunction
)_wrap_StyledTextCtrl_GetSelection
, METH_O
, NULL
},
21411 { (char *)"StyledTextCtrl_PointFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_PointFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21412 { (char *)"StyledTextCtrl_ScrollToLine", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21413 { (char *)"StyledTextCtrl_ScrollToColumn", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21414 { (char *)"StyledTextCtrl_SendMsg", (PyCFunction
) _wrap_StyledTextCtrl_SendMsg
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21415 { (char *)"StyledTextCtrl_SetVScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetVScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21416 { (char *)"StyledTextCtrl_SetHScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetHScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21417 { (char *)"StyledTextCtrl_GetLastKeydownProcessed", (PyCFunction
)_wrap_StyledTextCtrl_GetLastKeydownProcessed
, METH_O
, NULL
},
21418 { (char *)"StyledTextCtrl_SetLastKeydownProcessed", (PyCFunction
) _wrap_StyledTextCtrl_SetLastKeydownProcessed
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21419 { (char *)"StyledTextCtrl_SaveFile", (PyCFunction
) _wrap_StyledTextCtrl_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21420 { (char *)"StyledTextCtrl_LoadFile", (PyCFunction
) _wrap_StyledTextCtrl_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21421 { (char *)"StyledTextCtrl_DoDragOver", (PyCFunction
) _wrap_StyledTextCtrl_DoDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21422 { (char *)"StyledTextCtrl_DoDropText", (PyCFunction
) _wrap_StyledTextCtrl_DoDropText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21423 { (char *)"StyledTextCtrl_SetUseAntiAliasing", (PyCFunction
) _wrap_StyledTextCtrl_SetUseAntiAliasing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21424 { (char *)"StyledTextCtrl_GetUseAntiAliasing", (PyCFunction
)_wrap_StyledTextCtrl_GetUseAntiAliasing
, METH_O
, NULL
},
21425 { (char *)"StyledTextCtrl_AddTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AddTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21426 { (char *)"StyledTextCtrl_InsertTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_InsertTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21427 { (char *)"StyledTextCtrl_GetCurLineRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLineRaw
, METH_O
, NULL
},
21428 { (char *)"StyledTextCtrl_GetLineRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetLineRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21429 { (char *)"StyledTextCtrl_GetSelectedTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedTextRaw
, METH_O
, NULL
},
21430 { (char *)"StyledTextCtrl_GetTextRangeRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRangeRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21431 { (char *)"StyledTextCtrl_SetTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_SetTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21432 { (char *)"StyledTextCtrl_GetTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetTextRaw
, METH_O
, NULL
},
21433 { (char *)"StyledTextCtrl_AppendTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AppendTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21434 { (char *)"StyledTextCtrl_swigregister", StyledTextCtrl_swigregister
, METH_VARARGS
, NULL
},
21435 { (char *)"StyledTextCtrl_swiginit", StyledTextCtrl_swiginit
, METH_VARARGS
, NULL
},
21436 { (char *)"new_StyledTextEvent", (PyCFunction
) _wrap_new_StyledTextEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21437 { (char *)"delete_StyledTextEvent", (PyCFunction
)_wrap_delete_StyledTextEvent
, METH_O
, NULL
},
21438 { (char *)"StyledTextEvent_SetPosition", (PyCFunction
) _wrap_StyledTextEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21439 { (char *)"StyledTextEvent_SetKey", (PyCFunction
) _wrap_StyledTextEvent_SetKey
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21440 { (char *)"StyledTextEvent_SetModifiers", (PyCFunction
) _wrap_StyledTextEvent_SetModifiers
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21441 { (char *)"StyledTextEvent_SetModificationType", (PyCFunction
) _wrap_StyledTextEvent_SetModificationType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21442 { (char *)"StyledTextEvent_SetText", (PyCFunction
) _wrap_StyledTextEvent_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21443 { (char *)"StyledTextEvent_SetLength", (PyCFunction
) _wrap_StyledTextEvent_SetLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21444 { (char *)"StyledTextEvent_SetLinesAdded", (PyCFunction
) _wrap_StyledTextEvent_SetLinesAdded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21445 { (char *)"StyledTextEvent_SetLine", (PyCFunction
) _wrap_StyledTextEvent_SetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21446 { (char *)"StyledTextEvent_SetFoldLevelNow", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelNow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21447 { (char *)"StyledTextEvent_SetFoldLevelPrev", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21448 { (char *)"StyledTextEvent_SetMargin", (PyCFunction
) _wrap_StyledTextEvent_SetMargin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21449 { (char *)"StyledTextEvent_SetMessage", (PyCFunction
) _wrap_StyledTextEvent_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21450 { (char *)"StyledTextEvent_SetWParam", (PyCFunction
) _wrap_StyledTextEvent_SetWParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21451 { (char *)"StyledTextEvent_SetLParam", (PyCFunction
) _wrap_StyledTextEvent_SetLParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21452 { (char *)"StyledTextEvent_SetListType", (PyCFunction
) _wrap_StyledTextEvent_SetListType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21453 { (char *)"StyledTextEvent_SetX", (PyCFunction
) _wrap_StyledTextEvent_SetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21454 { (char *)"StyledTextEvent_SetY", (PyCFunction
) _wrap_StyledTextEvent_SetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21455 { (char *)"StyledTextEvent_SetDragText", (PyCFunction
) _wrap_StyledTextEvent_SetDragText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21456 { (char *)"StyledTextEvent_SetDragAllowMove", (PyCFunction
) _wrap_StyledTextEvent_SetDragAllowMove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21457 { (char *)"StyledTextEvent_SetDragResult", (PyCFunction
) _wrap_StyledTextEvent_SetDragResult
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21458 { (char *)"StyledTextEvent_GetPosition", (PyCFunction
)_wrap_StyledTextEvent_GetPosition
, METH_O
, NULL
},
21459 { (char *)"StyledTextEvent_GetKey", (PyCFunction
)_wrap_StyledTextEvent_GetKey
, METH_O
, NULL
},
21460 { (char *)"StyledTextEvent_GetModifiers", (PyCFunction
)_wrap_StyledTextEvent_GetModifiers
, METH_O
, NULL
},
21461 { (char *)"StyledTextEvent_GetModificationType", (PyCFunction
)_wrap_StyledTextEvent_GetModificationType
, METH_O
, NULL
},
21462 { (char *)"StyledTextEvent_GetText", (PyCFunction
)_wrap_StyledTextEvent_GetText
, METH_O
, NULL
},
21463 { (char *)"StyledTextEvent_GetLength", (PyCFunction
)_wrap_StyledTextEvent_GetLength
, METH_O
, NULL
},
21464 { (char *)"StyledTextEvent_GetLinesAdded", (PyCFunction
)_wrap_StyledTextEvent_GetLinesAdded
, METH_O
, NULL
},
21465 { (char *)"StyledTextEvent_GetLine", (PyCFunction
)_wrap_StyledTextEvent_GetLine
, METH_O
, NULL
},
21466 { (char *)"StyledTextEvent_GetFoldLevelNow", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelNow
, METH_O
, NULL
},
21467 { (char *)"StyledTextEvent_GetFoldLevelPrev", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelPrev
, METH_O
, NULL
},
21468 { (char *)"StyledTextEvent_GetMargin", (PyCFunction
)_wrap_StyledTextEvent_GetMargin
, METH_O
, NULL
},
21469 { (char *)"StyledTextEvent_GetMessage", (PyCFunction
)_wrap_StyledTextEvent_GetMessage
, METH_O
, NULL
},
21470 { (char *)"StyledTextEvent_GetWParam", (PyCFunction
)_wrap_StyledTextEvent_GetWParam
, METH_O
, NULL
},
21471 { (char *)"StyledTextEvent_GetLParam", (PyCFunction
)_wrap_StyledTextEvent_GetLParam
, METH_O
, NULL
},
21472 { (char *)"StyledTextEvent_GetListType", (PyCFunction
)_wrap_StyledTextEvent_GetListType
, METH_O
, NULL
},
21473 { (char *)"StyledTextEvent_GetX", (PyCFunction
)_wrap_StyledTextEvent_GetX
, METH_O
, NULL
},
21474 { (char *)"StyledTextEvent_GetY", (PyCFunction
)_wrap_StyledTextEvent_GetY
, METH_O
, NULL
},
21475 { (char *)"StyledTextEvent_GetDragText", (PyCFunction
)_wrap_StyledTextEvent_GetDragText
, METH_O
, NULL
},
21476 { (char *)"StyledTextEvent_GetDragAllowMove", (PyCFunction
)_wrap_StyledTextEvent_GetDragAllowMove
, METH_O
, NULL
},
21477 { (char *)"StyledTextEvent_GetDragResult", (PyCFunction
)_wrap_StyledTextEvent_GetDragResult
, METH_O
, NULL
},
21478 { (char *)"StyledTextEvent_GetShift", (PyCFunction
)_wrap_StyledTextEvent_GetShift
, METH_O
, NULL
},
21479 { (char *)"StyledTextEvent_GetControl", (PyCFunction
)_wrap_StyledTextEvent_GetControl
, METH_O
, NULL
},
21480 { (char *)"StyledTextEvent_GetAlt", (PyCFunction
)_wrap_StyledTextEvent_GetAlt
, METH_O
, NULL
},
21481 { (char *)"StyledTextEvent_swigregister", StyledTextEvent_swigregister
, METH_VARARGS
, NULL
},
21482 { (char *)"StyledTextEvent_swiginit", StyledTextEvent_swiginit
, METH_VARARGS
, NULL
},
21483 { NULL
, NULL
, 0, NULL
}
21487 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
21489 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
21490 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
21492 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
21493 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
21495 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
21496 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
21498 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
21499 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
21501 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
21502 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
21504 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
21505 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
21507 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
21508 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
21510 static void *_p_wxSizerTo_p_wxObject(void *x
) {
21511 return (void *)((wxObject
*) ((wxSizer
*) x
));
21513 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
21514 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
21516 static void *_p_wxFileHistoryTo_p_wxObject(void *x
) {
21517 return (void *)((wxObject
*) ((wxFileHistory
*) x
));
21519 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
21520 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21522 static void *_p_wxEventTo_p_wxObject(void *x
) {
21523 return (void *)((wxObject
*) ((wxEvent
*) x
));
21525 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
21526 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
21528 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
21529 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
21531 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
21532 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
21534 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
21535 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21537 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
21538 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
21540 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
21541 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
21543 static void *_p_wxStyledTextEventTo_p_wxObject(void *x
) {
21544 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21546 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
21547 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21549 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
21550 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21552 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
21553 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21555 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
21556 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21558 static void *_p_wxControlTo_p_wxObject(void *x
) {
21559 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
21561 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
21562 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
21564 static void *_p_wxTimerEventTo_p_wxObject(void *x
) {
21565 return (void *)((wxObject
*) (wxEvent
*) ((wxTimerEvent
*) x
));
21567 static void *_p_wxPowerEventTo_p_wxObject(void *x
) {
21568 return (void *)((wxObject
*) (wxEvent
*) ((wxPowerEvent
*) x
));
21570 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
21571 return (void *)((wxObject
*) ((wxFSFile
*) x
));
21573 static void *_p_wxClipboardTo_p_wxObject(void *x
) {
21574 return (void *)((wxObject
*) ((wxClipboard
*) x
));
21576 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
21577 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
21579 static void *_p_wxStyledTextCtrlTo_p_wxObject(void *x
) {
21580 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21582 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
21583 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
21585 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
21586 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21588 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
21589 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
21591 static void *_p_wxToolTipTo_p_wxObject(void *x
) {
21592 return (void *)((wxObject
*) ((wxToolTip
*) x
));
21594 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
21595 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
21597 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
21598 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
21600 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
21601 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
21603 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
21604 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21606 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
21607 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21609 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
21610 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
21612 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
21613 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
21615 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
21616 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
21618 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
21619 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
21621 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
21622 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
21624 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
21625 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
21627 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
21628 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
21630 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
21631 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
21633 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
21634 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
21636 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
21637 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
21639 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
21640 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
21642 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
21643 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
21645 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
21646 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
21648 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
21649 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
21651 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
21652 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
21654 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
21655 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
21657 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
21658 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
21660 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
21661 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
21663 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
21664 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
21666 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
21667 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
21669 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
21670 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
21672 static void *_p_wxImageTo_p_wxObject(void *x
) {
21673 return (void *)((wxObject
*) ((wxImage
*) x
));
21675 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
21676 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
21678 static void *_p_wxSystemOptionsTo_p_wxObject(void *x
) {
21679 return (void *)((wxObject
*) ((wxSystemOptions
*) x
));
21681 static void *_p_wxJoystickEventTo_p_wxObject(void *x
) {
21682 return (void *)((wxObject
*) (wxEvent
*) ((wxJoystickEvent
*) x
));
21684 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
21685 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21687 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
21688 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21690 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
21691 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
21693 static void *_p_wxWindowTo_p_wxObject(void *x
) {
21694 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
21696 static void *_p_wxMenuTo_p_wxObject(void *x
) {
21697 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
21699 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
21700 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
21702 static void *_p_wxPyProcessTo_p_wxObject(void *x
) {
21703 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyProcess
*) x
));
21705 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
21706 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
21708 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
21709 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21711 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
21712 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
21714 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
21715 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
21717 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
21718 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
21720 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
21721 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
21723 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
21724 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
21726 static void *_p_wxBusyInfoTo_p_wxObject(void *x
) {
21727 return (void *)((wxObject
*) ((wxBusyInfo
*) x
));
21729 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
21730 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21732 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
21733 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
21735 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
21736 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
21738 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
21739 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
21741 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
21742 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21744 static void *_p_wxProcessEventTo_p_wxObject(void *x
) {
21745 return (void *)((wxObject
*) (wxEvent
*) ((wxProcessEvent
*) x
));
21747 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
21748 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21750 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
21751 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
21753 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
21754 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
21756 static void *_p_wxPyTimerTo_p_wxObject(void *x
) {
21757 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTimer
*) x
));
21759 static void *_p_wxControlTo_p_wxWindow(void *x
) {
21760 return (void *)((wxWindow
*) ((wxControl
*) x
));
21762 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
21763 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
21765 static void *_p_wxStyledTextCtrlTo_p_wxWindow(void *x
) {
21766 return (void *)((wxWindow
*) (wxControl
*) ((wxStyledTextCtrl
*) x
));
21768 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
21769 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
21771 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
21772 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21774 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
21775 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
21777 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
21778 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21780 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
21781 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
21783 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
21784 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21786 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
21787 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21789 static void *_p_wxStyledTextEventTo_p_wxCommandEvent(void *x
) {
21790 return (void *)((wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21792 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
21793 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21795 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
21796 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21798 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
21799 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21801 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
21802 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21804 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
21805 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
21807 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
21808 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
21810 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
21811 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21813 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
21814 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
21816 static void *_p_wxPyTimerTo_p_wxEvtHandler(void *x
) {
21817 return (void *)((wxEvtHandler
*) ((wxPyTimer
*) x
));
21819 static void *_p_wxStyledTextCtrlTo_p_wxEvtHandler(void *x
) {
21820 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21822 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
21823 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
21825 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
21826 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
21828 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
21829 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
21831 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
21832 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
21834 static void *_p_wxPyProcessTo_p_wxEvtHandler(void *x
) {
21835 return (void *)((wxEvtHandler
*) ((wxPyProcess
*) x
));
21837 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
21838 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
21840 static void *_p_wxStyledTextCtrlTo_p_wxControl(void *x
) {
21841 return (void *)((wxControl
*) ((wxStyledTextCtrl
*) x
));
21843 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
21844 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21846 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
21847 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
21849 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
21850 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
21852 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
21853 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
21855 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
21856 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
21858 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
21859 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
21861 static void *_p_wxTimerEventTo_p_wxEvent(void *x
) {
21862 return (void *)((wxEvent
*) ((wxTimerEvent
*) x
));
21864 static void *_p_wxPowerEventTo_p_wxEvent(void *x
) {
21865 return (void *)((wxEvent
*) ((wxPowerEvent
*) x
));
21867 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
21868 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
21870 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
21871 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
21873 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
21874 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21876 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
21877 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
21879 static void *_p_wxJoystickEventTo_p_wxEvent(void *x
) {
21880 return (void *)((wxEvent
*) ((wxJoystickEvent
*) x
));
21882 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
21883 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
21885 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
21886 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21888 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
21889 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21891 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
21892 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
21894 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
21895 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
21897 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
21898 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
21900 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
21901 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
21903 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
21904 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
21906 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
21907 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
21909 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
21910 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21912 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
21913 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
21915 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
21916 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
21918 static void *_p_wxStyledTextEventTo_p_wxEvent(void *x
) {
21919 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21921 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
21922 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21924 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
21925 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21927 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
21928 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21930 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
21931 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21933 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
21934 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21936 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
21937 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
21939 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
21940 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
21942 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
21943 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21945 static void *_p_wxProcessEventTo_p_wxEvent(void *x
) {
21946 return (void *)((wxEvent
*) ((wxProcessEvent
*) x
));
21948 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
21949 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
21951 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
21952 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
21954 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
21955 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21957 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
21958 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21960 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
21961 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21963 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
21964 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
21966 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
21967 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
21969 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
21970 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};
21971 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
21972 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
21973 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
21974 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxLogLevel *", 0, 0, (void*)0, 0};
21975 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, (void*)0, 0};
21976 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
21977 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
21978 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
21979 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
21980 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
21981 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
21982 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
21983 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
21984 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
21985 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
21986 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
21987 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
21988 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
21989 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
21990 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
21991 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
21992 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
21993 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
21994 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
21995 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
21996 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
21997 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
21998 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
21999 static swig_type_info _swigt__p_wxTimerEvent
= {"_p_wxTimerEvent", 0, 0, 0, 0, 0};
22000 static swig_type_info _swigt__p_wxPowerEvent
= {"_p_wxPowerEvent", 0, 0, 0, 0, 0};
22001 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
22002 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
22003 static swig_type_info _swigt__p_wxJoystickEvent
= {"_p_wxJoystickEvent", 0, 0, 0, 0, 0};
22004 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
22005 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
22006 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
22007 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
22008 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
22009 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
22010 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
22011 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
22012 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
22013 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
22014 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
22015 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
22016 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
22017 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
22018 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
22019 static swig_type_info _swigt__p_wxProcessEvent
= {"_p_wxProcessEvent", 0, 0, 0, 0, 0};
22020 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
22021 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
22022 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
22023 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
22024 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
22025 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
22026 static swig_type_info _swigt__p_wxPyTimer
= {"_p_wxPyTimer", 0, 0, 0, 0, 0};
22027 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
22028 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
22029 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
22030 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
22031 static swig_type_info _swigt__p_wxPyProcess
= {"_p_wxPyProcess", 0, 0, 0, 0, 0};
22032 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
22033 static swig_type_info _swigt__p_wxMemoryBuffer
= {"_p_wxMemoryBuffer", "wxMemoryBuffer *", 0, 0, (void*)0, 0};
22034 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
22035 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
22036 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
22037 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
22038 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
22039 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
22040 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
22041 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
22042 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
22043 static swig_type_info _swigt__p_wxFileHistory
= {"_p_wxFileHistory", 0, 0, 0, 0, 0};
22044 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
22045 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
22046 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
22047 static swig_type_info _swigt__p_wxClipboard
= {"_p_wxClipboard", 0, 0, 0, 0, 0};
22048 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
22049 static swig_type_info _swigt__p_wxToolTip
= {"_p_wxToolTip", 0, 0, 0, 0, 0};
22050 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
22051 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
22052 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
22053 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
22054 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
22055 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
22056 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
22057 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
22058 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
22059 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
22060 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
22061 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
22062 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
22063 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
22064 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
22065 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
22066 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
22067 static swig_type_info _swigt__p_wxSystemOptions
= {"_p_wxSystemOptions", 0, 0, 0, 0, 0};
22068 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
22069 static swig_type_info _swigt__p_wxBusyInfo
= {"_p_wxBusyInfo", 0, 0, 0, 0, 0};
22070 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
22071 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
22072 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
22073 static swig_type_info _swigt__p_wxScrollBar
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, (void*)0, 0};
22074 static swig_type_info _swigt__p_wxStyledTextCtrl
= {"_p_wxStyledTextCtrl", "wxStyledTextCtrl *", 0, 0, (void*)0, 0};
22075 static swig_type_info _swigt__p_wxStyledTextEvent
= {"_p_wxStyledTextEvent", "wxStyledTextEvent *", 0, 0, (void*)0, 0};
22076 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
22078 static swig_type_info
*swig_type_initial
[] = {
22080 &_swigt__p_form_ops_t
,
22082 &_swigt__p_unsigned_char
,
22083 &_swigt__p_unsigned_int
,
22084 &_swigt__p_unsigned_long
,
22086 &_swigt__p_wxANIHandler
,
22087 &_swigt__p_wxAcceleratorTable
,
22088 &_swigt__p_wxActivateEvent
,
22089 &_swigt__p_wxBMPHandler
,
22090 &_swigt__p_wxBitmap
,
22091 &_swigt__p_wxBoxSizer
,
22092 &_swigt__p_wxBusyInfo
,
22093 &_swigt__p_wxCURHandler
,
22094 &_swigt__p_wxChildFocusEvent
,
22095 &_swigt__p_wxClipboard
,
22096 &_swigt__p_wxClipboardTextEvent
,
22097 &_swigt__p_wxCloseEvent
,
22098 &_swigt__p_wxColour
,
22099 &_swigt__p_wxCommandEvent
,
22100 &_swigt__p_wxContextMenuEvent
,
22101 &_swigt__p_wxControl
,
22102 &_swigt__p_wxControlWithItems
,
22104 &_swigt__p_wxDateEvent
,
22105 &_swigt__p_wxDisplayChangedEvent
,
22106 &_swigt__p_wxDropFilesEvent
,
22107 &_swigt__p_wxDuplexMode
,
22108 &_swigt__p_wxEraseEvent
,
22109 &_swigt__p_wxEvent
,
22110 &_swigt__p_wxEvtHandler
,
22111 &_swigt__p_wxFSFile
,
22112 &_swigt__p_wxFileHistory
,
22113 &_swigt__p_wxFileSystem
,
22114 &_swigt__p_wxFlexGridSizer
,
22115 &_swigt__p_wxFocusEvent
,
22117 &_swigt__p_wxGBSizerItem
,
22118 &_swigt__p_wxGIFHandler
,
22119 &_swigt__p_wxGridBagSizer
,
22120 &_swigt__p_wxGridSizer
,
22121 &_swigt__p_wxICOHandler
,
22122 &_swigt__p_wxIconizeEvent
,
22123 &_swigt__p_wxIdleEvent
,
22124 &_swigt__p_wxImage
,
22125 &_swigt__p_wxImageHandler
,
22126 &_swigt__p_wxIndividualLayoutConstraint
,
22127 &_swigt__p_wxInitDialogEvent
,
22128 &_swigt__p_wxJPEGHandler
,
22129 &_swigt__p_wxJoystickEvent
,
22130 &_swigt__p_wxKeyEvent
,
22131 &_swigt__p_wxLayoutConstraints
,
22132 &_swigt__p_wxMaximizeEvent
,
22133 &_swigt__p_wxMemoryBuffer
,
22135 &_swigt__p_wxMenuBar
,
22136 &_swigt__p_wxMenuEvent
,
22137 &_swigt__p_wxMenuItem
,
22138 &_swigt__p_wxMouseCaptureChangedEvent
,
22139 &_swigt__p_wxMouseEvent
,
22140 &_swigt__p_wxMoveEvent
,
22141 &_swigt__p_wxNavigationKeyEvent
,
22142 &_swigt__p_wxNcPaintEvent
,
22143 &_swigt__p_wxNotifyEvent
,
22144 &_swigt__p_wxObject
,
22145 &_swigt__p_wxPCXHandler
,
22146 &_swigt__p_wxPNGHandler
,
22147 &_swigt__p_wxPNMHandler
,
22148 &_swigt__p_wxPaintEvent
,
22149 &_swigt__p_wxPaletteChangedEvent
,
22150 &_swigt__p_wxPaperSize
,
22151 &_swigt__p_wxPoint
,
22152 &_swigt__p_wxPowerEvent
,
22153 &_swigt__p_wxProcessEvent
,
22154 &_swigt__p_wxPyApp
,
22155 &_swigt__p_wxPyCommandEvent
,
22156 &_swigt__p_wxPyEvent
,
22157 &_swigt__p_wxPyImageHandler
,
22158 &_swigt__p_wxPyProcess
,
22159 &_swigt__p_wxPySizer
,
22160 &_swigt__p_wxPyTimer
,
22161 &_swigt__p_wxPyValidator
,
22162 &_swigt__p_wxQueryNewPaletteEvent
,
22164 &_swigt__p_wxScrollBar
,
22165 &_swigt__p_wxScrollEvent
,
22166 &_swigt__p_wxScrollWinEvent
,
22167 &_swigt__p_wxSetCursorEvent
,
22168 &_swigt__p_wxShowEvent
,
22169 &_swigt__p_wxSizeEvent
,
22170 &_swigt__p_wxSizer
,
22171 &_swigt__p_wxSizerItem
,
22172 &_swigt__p_wxStaticBoxSizer
,
22173 &_swigt__p_wxStdDialogButtonSizer
,
22174 &_swigt__p_wxStyledTextCtrl
,
22175 &_swigt__p_wxStyledTextEvent
,
22176 &_swigt__p_wxSysColourChangedEvent
,
22177 &_swigt__p_wxSystemOptions
,
22178 &_swigt__p_wxTIFFHandler
,
22179 &_swigt__p_wxTimerEvent
,
22180 &_swigt__p_wxToolTip
,
22181 &_swigt__p_wxUpdateUIEvent
,
22182 &_swigt__p_wxValidator
,
22183 &_swigt__p_wxWindow
,
22184 &_swigt__p_wxWindowCreateEvent
,
22185 &_swigt__p_wxWindowDestroyEvent
,
22186 &_swigt__p_wxXPMHandler
,
22189 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
22190 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
22191 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
22192 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
22193 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
22194 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
22195 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
22196 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
22197 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
22198 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22199 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
22200 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22201 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22202 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
22203 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
22204 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22205 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22206 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22207 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
22208 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}};
22209 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
22210 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}};
22211 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
22212 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
22213 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22214 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22215 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22216 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22217 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
22218 static swig_cast_info _swigc__p_wxTimerEvent
[] = {{&_swigt__p_wxTimerEvent
, 0, 0, 0},{0, 0, 0, 0}};
22219 static swig_cast_info _swigc__p_wxPowerEvent
[] = {{&_swigt__p_wxPowerEvent
, 0, 0, 0},{0, 0, 0, 0}};
22220 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
22221 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22222 static swig_cast_info _swigc__p_wxJoystickEvent
[] = {{&_swigt__p_wxJoystickEvent
, 0, 0, 0},{0, 0, 0, 0}};
22223 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
22224 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
22225 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22226 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22227 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22228 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22229 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
22230 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22231 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22232 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22233 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22234 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22235 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22236 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
22237 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22238 static swig_cast_info _swigc__p_wxProcessEvent
[] = {{&_swigt__p_wxProcessEvent
, 0, 0, 0},{0, 0, 0, 0}};
22239 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
22240 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22241 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22242 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
22243 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}};
22244 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
22245 static swig_cast_info _swigc__p_wxPyTimer
[] = {{&_swigt__p_wxPyTimer
, 0, 0, 0},{0, 0, 0, 0}};
22246 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
22247 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
22248 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
22249 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
22250 static swig_cast_info _swigc__p_wxPyProcess
[] = {{&_swigt__p_wxPyProcess
, 0, 0, 0},{0, 0, 0, 0}};
22251 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}};
22252 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
22253 static swig_cast_info _swigc__p_wxMemoryBuffer
[] = { {&_swigt__p_wxMemoryBuffer
, 0, 0, 0},{0, 0, 0, 0}};
22254 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
22255 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22256 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22257 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
22258 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22259 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22260 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22261 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
22262 static swig_cast_info _swigc__p_wxFileHistory
[] = {{&_swigt__p_wxFileHistory
, 0, 0, 0},{0, 0, 0, 0}};
22263 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22264 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22265 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
22266 static swig_cast_info _swigc__p_wxClipboard
[] = {{&_swigt__p_wxClipboard
, 0, 0, 0},{0, 0, 0, 0}};
22267 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
22268 static swig_cast_info _swigc__p_wxToolTip
[] = {{&_swigt__p_wxToolTip
, 0, 0, 0},{0, 0, 0, 0}};
22269 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
22270 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22271 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22272 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22273 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22274 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
22275 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
22276 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
22277 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
22278 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22279 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22280 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
22281 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22282 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22283 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
22284 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
22285 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
22286 static swig_cast_info _swigc__p_wxSystemOptions
[] = {{&_swigt__p_wxSystemOptions
, 0, 0, 0},{0, 0, 0, 0}};
22287 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
22288 static swig_cast_info _swigc__p_wxBusyInfo
[] = {{&_swigt__p_wxBusyInfo
, 0, 0, 0},{0, 0, 0, 0}};
22289 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}};
22290 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
22291 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
22292 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
22293 static swig_cast_info _swigc__p_wxScrollBar
[] = { {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}};
22294 static swig_cast_info _swigc__p_wxStyledTextCtrl
[] = { {&_swigt__p_wxStyledTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
22295 static swig_cast_info _swigc__p_wxStyledTextEvent
[] = { {&_swigt__p_wxStyledTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
22296 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}};
22298 static swig_cast_info
*swig_cast_initial
[] = {
22300 _swigc__p_form_ops_t
,
22302 _swigc__p_unsigned_char
,
22303 _swigc__p_unsigned_int
,
22304 _swigc__p_unsigned_long
,
22306 _swigc__p_wxANIHandler
,
22307 _swigc__p_wxAcceleratorTable
,
22308 _swigc__p_wxActivateEvent
,
22309 _swigc__p_wxBMPHandler
,
22310 _swigc__p_wxBitmap
,
22311 _swigc__p_wxBoxSizer
,
22312 _swigc__p_wxBusyInfo
,
22313 _swigc__p_wxCURHandler
,
22314 _swigc__p_wxChildFocusEvent
,
22315 _swigc__p_wxClipboard
,
22316 _swigc__p_wxClipboardTextEvent
,
22317 _swigc__p_wxCloseEvent
,
22318 _swigc__p_wxColour
,
22319 _swigc__p_wxCommandEvent
,
22320 _swigc__p_wxContextMenuEvent
,
22321 _swigc__p_wxControl
,
22322 _swigc__p_wxControlWithItems
,
22324 _swigc__p_wxDateEvent
,
22325 _swigc__p_wxDisplayChangedEvent
,
22326 _swigc__p_wxDropFilesEvent
,
22327 _swigc__p_wxDuplexMode
,
22328 _swigc__p_wxEraseEvent
,
22330 _swigc__p_wxEvtHandler
,
22331 _swigc__p_wxFSFile
,
22332 _swigc__p_wxFileHistory
,
22333 _swigc__p_wxFileSystem
,
22334 _swigc__p_wxFlexGridSizer
,
22335 _swigc__p_wxFocusEvent
,
22337 _swigc__p_wxGBSizerItem
,
22338 _swigc__p_wxGIFHandler
,
22339 _swigc__p_wxGridBagSizer
,
22340 _swigc__p_wxGridSizer
,
22341 _swigc__p_wxICOHandler
,
22342 _swigc__p_wxIconizeEvent
,
22343 _swigc__p_wxIdleEvent
,
22345 _swigc__p_wxImageHandler
,
22346 _swigc__p_wxIndividualLayoutConstraint
,
22347 _swigc__p_wxInitDialogEvent
,
22348 _swigc__p_wxJPEGHandler
,
22349 _swigc__p_wxJoystickEvent
,
22350 _swigc__p_wxKeyEvent
,
22351 _swigc__p_wxLayoutConstraints
,
22352 _swigc__p_wxMaximizeEvent
,
22353 _swigc__p_wxMemoryBuffer
,
22355 _swigc__p_wxMenuBar
,
22356 _swigc__p_wxMenuEvent
,
22357 _swigc__p_wxMenuItem
,
22358 _swigc__p_wxMouseCaptureChangedEvent
,
22359 _swigc__p_wxMouseEvent
,
22360 _swigc__p_wxMoveEvent
,
22361 _swigc__p_wxNavigationKeyEvent
,
22362 _swigc__p_wxNcPaintEvent
,
22363 _swigc__p_wxNotifyEvent
,
22364 _swigc__p_wxObject
,
22365 _swigc__p_wxPCXHandler
,
22366 _swigc__p_wxPNGHandler
,
22367 _swigc__p_wxPNMHandler
,
22368 _swigc__p_wxPaintEvent
,
22369 _swigc__p_wxPaletteChangedEvent
,
22370 _swigc__p_wxPaperSize
,
22372 _swigc__p_wxPowerEvent
,
22373 _swigc__p_wxProcessEvent
,
22375 _swigc__p_wxPyCommandEvent
,
22376 _swigc__p_wxPyEvent
,
22377 _swigc__p_wxPyImageHandler
,
22378 _swigc__p_wxPyProcess
,
22379 _swigc__p_wxPySizer
,
22380 _swigc__p_wxPyTimer
,
22381 _swigc__p_wxPyValidator
,
22382 _swigc__p_wxQueryNewPaletteEvent
,
22384 _swigc__p_wxScrollBar
,
22385 _swigc__p_wxScrollEvent
,
22386 _swigc__p_wxScrollWinEvent
,
22387 _swigc__p_wxSetCursorEvent
,
22388 _swigc__p_wxShowEvent
,
22389 _swigc__p_wxSizeEvent
,
22391 _swigc__p_wxSizerItem
,
22392 _swigc__p_wxStaticBoxSizer
,
22393 _swigc__p_wxStdDialogButtonSizer
,
22394 _swigc__p_wxStyledTextCtrl
,
22395 _swigc__p_wxStyledTextEvent
,
22396 _swigc__p_wxSysColourChangedEvent
,
22397 _swigc__p_wxSystemOptions
,
22398 _swigc__p_wxTIFFHandler
,
22399 _swigc__p_wxTimerEvent
,
22400 _swigc__p_wxToolTip
,
22401 _swigc__p_wxUpdateUIEvent
,
22402 _swigc__p_wxValidator
,
22403 _swigc__p_wxWindow
,
22404 _swigc__p_wxWindowCreateEvent
,
22405 _swigc__p_wxWindowDestroyEvent
,
22406 _swigc__p_wxXPMHandler
,
22410 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
22412 static swig_const_info swig_const_table
[] = {
22413 {0, 0, 0, 0.0, 0, 0}};
22418 /* -----------------------------------------------------------------------------
22419 * Type initialization:
22420 * This problem is tough by the requirement that no dynamic
22421 * memory is used. Also, since swig_type_info structures store pointers to
22422 * swig_cast_info structures and swig_cast_info structures store pointers back
22423 * to swig_type_info structures, we need some lookup code at initialization.
22424 * The idea is that swig generates all the structures that are needed.
22425 * The runtime then collects these partially filled structures.
22426 * The SWIG_InitializeModule function takes these initial arrays out of
22427 * swig_module, and does all the lookup, filling in the swig_module.types
22428 * array with the correct data and linking the correct swig_cast_info
22429 * structures together.
22431 * The generated swig_type_info structures are assigned staticly to an initial
22432 * array. We just loop though that array, and handle each type individually.
22433 * First we lookup if this type has been already loaded, and if so, use the
22434 * loaded structure instead of the generated one. Then we have to fill in the
22435 * cast linked list. The cast data is initially stored in something like a
22436 * two-dimensional array. Each row corresponds to a type (there are the same
22437 * number of rows as there are in the swig_type_initial array). Each entry in
22438 * a column is one of the swig_cast_info structures for that type.
22439 * The cast_initial array is actually an array of arrays, because each row has
22440 * a variable number of columns. So to actually build the cast linked list,
22441 * we find the array of casts associated with the type, and loop through it
22442 * adding the casts to the list. The one last trick we need to do is making
22443 * sure the type pointer in the swig_cast_info struct is correct.
22445 * First off, we lookup the cast->type name to see if it is already loaded.
22446 * There are three cases to handle:
22447 * 1) If the cast->type has already been loaded AND the type we are adding
22448 * casting info to has not been loaded (it is in this module), THEN we
22449 * replace the cast->type pointer with the type pointer that has already
22451 * 2) If BOTH types (the one we are adding casting info to, and the
22452 * cast->type) are loaded, THEN the cast info has already been loaded by
22453 * the previous module so we just ignore it.
22454 * 3) Finally, if cast->type has not already been loaded, then we add that
22455 * swig_cast_info to the linked list (because the cast->type) pointer will
22457 * ----------------------------------------------------------------------------- */
22467 #define SWIGRUNTIME_DEBUG
22471 SWIG_InitializeModule(void *clientdata
) {
22473 swig_module_info
*module_head
;
22474 static int init_run
= 0;
22476 clientdata
= clientdata
;
22478 if (init_run
) return;
22481 /* Initialize the swig_module */
22482 swig_module
.type_initial
= swig_type_initial
;
22483 swig_module
.cast_initial
= swig_cast_initial
;
22485 /* Try and load any already created modules */
22486 module_head
= SWIG_GetModule(clientdata
);
22488 swig_module
.next
= module_head
->next
;
22489 module_head
->next
= &swig_module
;
22491 /* This is the first module loaded */
22492 swig_module
.next
= &swig_module
;
22493 SWIG_SetModule(clientdata
, &swig_module
);
22496 /* Now work on filling in swig_module.types */
22497 #ifdef SWIGRUNTIME_DEBUG
22498 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
22500 for (i
= 0; i
< swig_module
.size
; ++i
) {
22501 swig_type_info
*type
= 0;
22502 swig_type_info
*ret
;
22503 swig_cast_info
*cast
;
22505 #ifdef SWIGRUNTIME_DEBUG
22506 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22509 /* if there is another module already loaded */
22510 if (swig_module
.next
!= &swig_module
) {
22511 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
22514 /* Overwrite clientdata field */
22515 #ifdef SWIGRUNTIME_DEBUG
22516 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
22518 if (swig_module
.type_initial
[i
]->clientdata
) {
22519 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
22520 #ifdef SWIGRUNTIME_DEBUG
22521 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
22525 type
= swig_module
.type_initial
[i
];
22528 /* Insert casting types */
22529 cast
= swig_module
.cast_initial
[i
];
22530 while (cast
->type
) {
22531 /* Don't need to add information already in the list */
22533 #ifdef SWIGRUNTIME_DEBUG
22534 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
22536 if (swig_module
.next
!= &swig_module
) {
22537 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
22538 #ifdef SWIGRUNTIME_DEBUG
22539 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
22543 if (type
== swig_module
.type_initial
[i
]) {
22544 #ifdef SWIGRUNTIME_DEBUG
22545 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
22550 /* Check for casting already in the list */
22551 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
22552 #ifdef SWIGRUNTIME_DEBUG
22553 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
22555 if (!ocast
) ret
= 0;
22560 #ifdef SWIGRUNTIME_DEBUG
22561 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
22564 type
->cast
->prev
= cast
;
22565 cast
->next
= type
->cast
;
22571 /* Set entry in modules->types array equal to the type */
22572 swig_module
.types
[i
] = type
;
22574 swig_module
.types
[i
] = 0;
22576 #ifdef SWIGRUNTIME_DEBUG
22577 printf("**** SWIG_InitializeModule: Cast List ******\n");
22578 for (i
= 0; i
< swig_module
.size
; ++i
) {
22580 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
22581 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22582 while (cast
->type
) {
22583 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
22587 printf("---- Total casts: %d\n",j
);
22589 printf("**** SWIG_InitializeModule: Cast List ******\n");
22593 /* This function will propagate the clientdata field of type to
22594 * any new swig_type_info structures that have been added into the list
22595 * of equivalent types. It is like calling
22596 * SWIG_TypeClientData(type, clientdata) a second time.
22599 SWIG_PropagateClientData(void) {
22601 swig_cast_info
*equiv
;
22602 static int init_run
= 0;
22604 if (init_run
) return;
22607 for (i
= 0; i
< swig_module
.size
; i
++) {
22608 if (swig_module
.types
[i
]->clientdata
) {
22609 equiv
= swig_module
.types
[i
]->cast
;
22611 if (!equiv
->converter
) {
22612 if (equiv
->type
&& !equiv
->type
->clientdata
)
22613 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
22615 equiv
= equiv
->next
;
22635 /* Python-specific SWIG API */
22636 #define SWIG_newvarlink() SWIG_Python_newvarlink()
22637 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
22638 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
22640 /* -----------------------------------------------------------------------------
22641 * global variable support code.
22642 * ----------------------------------------------------------------------------- */
22644 typedef struct swig_globalvar
{
22645 char *name
; /* Name of global variable */
22646 PyObject
*(*get_attr
)(void); /* Return the current value */
22647 int (*set_attr
)(PyObject
*); /* Set the value */
22648 struct swig_globalvar
*next
;
22651 typedef struct swig_varlinkobject
{
22653 swig_globalvar
*vars
;
22654 } swig_varlinkobject
;
22656 SWIGINTERN PyObject
*
22657 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
22658 return PyString_FromString("<Swig global variables>");
22661 SWIGINTERN PyObject
*
22662 swig_varlink_str(swig_varlinkobject
*v
) {
22663 PyObject
*str
= PyString_FromString("(");
22664 swig_globalvar
*var
;
22665 for (var
= v
->vars
; var
; var
=var
->next
) {
22666 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
22667 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
22669 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
22674 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
22675 PyObject
*str
= swig_varlink_str(v
);
22676 fprintf(fp
,"Swig global variables ");
22677 fprintf(fp
,"%s\n", PyString_AsString(str
));
22683 swig_varlink_dealloc(swig_varlinkobject
*v
) {
22684 swig_globalvar
*var
= v
->vars
;
22686 swig_globalvar
*n
= var
->next
;
22693 SWIGINTERN PyObject
*
22694 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
22695 PyObject
*res
= NULL
;
22696 swig_globalvar
*var
= v
->vars
;
22698 if (strcmp(var
->name
,n
) == 0) {
22699 res
= (*var
->get_attr
)();
22704 if (res
== NULL
&& !PyErr_Occurred()) {
22705 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22711 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
22713 swig_globalvar
*var
= v
->vars
;
22715 if (strcmp(var
->name
,n
) == 0) {
22716 res
= (*var
->set_attr
)(p
);
22721 if (res
== 1 && !PyErr_Occurred()) {
22722 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22727 SWIGINTERN PyTypeObject
*
22728 swig_varlink_type(void) {
22729 static char varlink__doc__
[] = "Swig var link object";
22730 static PyTypeObject varlink_type
;
22731 static int type_init
= 0;
22733 const PyTypeObject tmp
22735 PyObject_HEAD_INIT(NULL
)
22736 0, /* Number of items in variable part (ob_size) */
22737 (char *)"swigvarlink", /* Type name (tp_name) */
22738 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
22739 0, /* Itemsize (tp_itemsize) */
22740 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
22741 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
22742 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
22743 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
22744 0, /* tp_compare */
22745 (reprfunc
) swig_varlink_repr
, /* tp_repr */
22746 0, /* tp_as_number */
22747 0, /* tp_as_sequence */
22748 0, /* tp_as_mapping */
22751 (reprfunc
)swig_varlink_str
, /* tp_str */
22752 0, /* tp_getattro */
22753 0, /* tp_setattro */
22754 0, /* tp_as_buffer */
22756 varlink__doc__
, /* tp_doc */
22757 0, /* tp_traverse */
22759 0, /* tp_richcompare */
22760 0, /* tp_weaklistoffset */
22761 #if PY_VERSION_HEX >= 0x02020000
22762 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
22764 #if PY_VERSION_HEX >= 0x02030000
22767 #ifdef COUNT_ALLOCS
22768 0,0,0,0 /* tp_alloc -> tp_next */
22771 varlink_type
= tmp
;
22772 varlink_type
.ob_type
= &PyType_Type
;
22775 return &varlink_type
;
22778 /* Create a variable linking object for use later */
22779 SWIGINTERN PyObject
*
22780 SWIG_Python_newvarlink(void) {
22781 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
22785 return ((PyObject
*) result
);
22789 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
22790 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
22791 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
22793 size_t size
= strlen(name
)+1;
22794 gv
->name
= (char *)malloc(size
);
22796 strncpy(gv
->name
,name
,size
);
22797 gv
->get_attr
= get_attr
;
22798 gv
->set_attr
= set_attr
;
22799 gv
->next
= v
->vars
;
22805 SWIGINTERN PyObject
*
22807 static PyObject
*_SWIG_globals
= 0;
22808 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
22809 return _SWIG_globals
;
22812 /* -----------------------------------------------------------------------------
22813 * constants/methods manipulation
22814 * ----------------------------------------------------------------------------- */
22816 /* Install Constants */
22818 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
22821 for (i
= 0; constants
[i
].type
; ++i
) {
22822 switch(constants
[i
].type
) {
22823 case SWIG_PY_POINTER
:
22824 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
22826 case SWIG_PY_BINARY
:
22827 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
22834 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
22840 /* -----------------------------------------------------------------------------*/
22841 /* Fix SwigMethods to carry the callback ptrs when needed */
22842 /* -----------------------------------------------------------------------------*/
22845 SWIG_Python_FixMethods(PyMethodDef
*methods
,
22846 swig_const_info
*const_table
,
22847 swig_type_info
**types
,
22848 swig_type_info
**types_initial
) {
22850 for (i
= 0; methods
[i
].ml_name
; ++i
) {
22851 const char *c
= methods
[i
].ml_doc
;
22852 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
22854 swig_const_info
*ci
= 0;
22855 const char *name
= c
+ 10;
22856 for (j
= 0; const_table
[j
].type
; ++j
) {
22857 if (strncmp(const_table
[j
].name
, name
,
22858 strlen(const_table
[j
].name
)) == 0) {
22859 ci
= &(const_table
[j
]);
22864 size_t shift
= (ci
->ptype
) - types
;
22865 swig_type_info
*ty
= types_initial
[shift
];
22866 size_t ldoc
= (c
- methods
[i
].ml_doc
);
22867 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
22868 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
22871 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
22873 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
22875 strncpy(buff
, "swig_ptr: ", 10);
22877 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
22878 methods
[i
].ml_doc
= ndoc
;
22890 /* -----------------------------------------------------------------------------*
22891 * Partial Init method
22892 * -----------------------------------------------------------------------------*/
22897 SWIGEXPORT
void SWIG_init(void) {
22900 /* Fix SwigMethods to carry the callback ptrs when needed */
22901 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
22903 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
22904 d
= PyModule_GetDict(m
);
22906 SWIG_InitializeModule(0);
22907 SWIG_InstallConstants(d
,swig_const_table
);
22910 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
22911 SWIG_addvarlink(SWIG_globals(),(char*)"STCNameStr",STCNameStr_get
, STCNameStr_set
);
22912 SWIG_Python_SetConstant(d
, "STC_USE_DND",SWIG_From_int(static_cast< int >(1)));
22913 SWIG_Python_SetConstant(d
, "STC_USE_POPUP",SWIG_From_int(static_cast< int >(1)));
22914 SWIG_Python_SetConstant(d
, "STC_INVALID_POSITION",SWIG_From_int(static_cast< int >(-1)));
22915 SWIG_Python_SetConstant(d
, "STC_START",SWIG_From_int(static_cast< int >(2000)));
22916 SWIG_Python_SetConstant(d
, "STC_OPTIONAL_START",SWIG_From_int(static_cast< int >(3000)));
22917 SWIG_Python_SetConstant(d
, "STC_LEXER_START",SWIG_From_int(static_cast< int >(4000)));
22918 SWIG_Python_SetConstant(d
, "STC_WS_INVISIBLE",SWIG_From_int(static_cast< int >(0)));
22919 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEALWAYS",SWIG_From_int(static_cast< int >(1)));
22920 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEAFTERINDENT",SWIG_From_int(static_cast< int >(2)));
22921 SWIG_Python_SetConstant(d
, "STC_EOL_CRLF",SWIG_From_int(static_cast< int >(0)));
22922 SWIG_Python_SetConstant(d
, "STC_EOL_CR",SWIG_From_int(static_cast< int >(1)));
22923 SWIG_Python_SetConstant(d
, "STC_EOL_LF",SWIG_From_int(static_cast< int >(2)));
22924 SWIG_Python_SetConstant(d
, "STC_CP_UTF8",SWIG_From_int(static_cast< int >(65001)));
22925 SWIG_Python_SetConstant(d
, "STC_CP_DBCS",SWIG_From_int(static_cast< int >(1)));
22926 SWIG_Python_SetConstant(d
, "STC_MARKER_MAX",SWIG_From_int(static_cast< int >(31)));
22927 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLE",SWIG_From_int(static_cast< int >(0)));
22928 SWIG_Python_SetConstant(d
, "STC_MARK_ROUNDRECT",SWIG_From_int(static_cast< int >(1)));
22929 SWIG_Python_SetConstant(d
, "STC_MARK_ARROW",SWIG_From_int(static_cast< int >(2)));
22930 SWIG_Python_SetConstant(d
, "STC_MARK_SMALLRECT",SWIG_From_int(static_cast< int >(3)));
22931 SWIG_Python_SetConstant(d
, "STC_MARK_SHORTARROW",SWIG_From_int(static_cast< int >(4)));
22932 SWIG_Python_SetConstant(d
, "STC_MARK_EMPTY",SWIG_From_int(static_cast< int >(5)));
22933 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWDOWN",SWIG_From_int(static_cast< int >(6)));
22934 SWIG_Python_SetConstant(d
, "STC_MARK_MINUS",SWIG_From_int(static_cast< int >(7)));
22935 SWIG_Python_SetConstant(d
, "STC_MARK_PLUS",SWIG_From_int(static_cast< int >(8)));
22936 SWIG_Python_SetConstant(d
, "STC_MARK_VLINE",SWIG_From_int(static_cast< int >(9)));
22937 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNER",SWIG_From_int(static_cast< int >(10)));
22938 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNER",SWIG_From_int(static_cast< int >(11)));
22939 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUS",SWIG_From_int(static_cast< int >(12)));
22940 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUSCONNECTED",SWIG_From_int(static_cast< int >(13)));
22941 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUS",SWIG_From_int(static_cast< int >(14)));
22942 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUSCONNECTED",SWIG_From_int(static_cast< int >(15)));
22943 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNERCURVE",SWIG_From_int(static_cast< int >(16)));
22944 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNERCURVE",SWIG_From_int(static_cast< int >(17)));
22945 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUS",SWIG_From_int(static_cast< int >(18)));
22946 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUSCONNECTED",SWIG_From_int(static_cast< int >(19)));
22947 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUS",SWIG_From_int(static_cast< int >(20)));
22948 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUSCONNECTED",SWIG_From_int(static_cast< int >(21)));
22949 SWIG_Python_SetConstant(d
, "STC_MARK_BACKGROUND",SWIG_From_int(static_cast< int >(22)));
22950 SWIG_Python_SetConstant(d
, "STC_MARK_DOTDOTDOT",SWIG_From_int(static_cast< int >(23)));
22951 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWS",SWIG_From_int(static_cast< int >(24)));
22952 SWIG_Python_SetConstant(d
, "STC_MARK_PIXMAP",SWIG_From_int(static_cast< int >(25)));
22953 SWIG_Python_SetConstant(d
, "STC_MARK_FULLRECT",SWIG_From_int(static_cast< int >(26)));
22954 SWIG_Python_SetConstant(d
, "STC_MARK_CHARACTER",SWIG_From_int(static_cast< int >(10000)));
22955 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEREND",SWIG_From_int(static_cast< int >(25)));
22956 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPENMID",SWIG_From_int(static_cast< int >(26)));
22957 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERMIDTAIL",SWIG_From_int(static_cast< int >(27)));
22958 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERTAIL",SWIG_From_int(static_cast< int >(28)));
22959 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERSUB",SWIG_From_int(static_cast< int >(29)));
22960 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDER",SWIG_From_int(static_cast< int >(30)));
22961 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPEN",SWIG_From_int(static_cast< int >(31)));
22962 SWIG_Python_SetConstant(d
, "STC_MASK_FOLDERS",SWIG_From_int(static_cast< int >(0xFE000000)));
22963 SWIG_Python_SetConstant(d
, "STC_MARGIN_SYMBOL",SWIG_From_int(static_cast< int >(0)));
22964 SWIG_Python_SetConstant(d
, "STC_MARGIN_NUMBER",SWIG_From_int(static_cast< int >(1)));
22965 SWIG_Python_SetConstant(d
, "STC_STYLE_DEFAULT",SWIG_From_int(static_cast< int >(32)));
22966 SWIG_Python_SetConstant(d
, "STC_STYLE_LINENUMBER",SWIG_From_int(static_cast< int >(33)));
22967 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACELIGHT",SWIG_From_int(static_cast< int >(34)));
22968 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACEBAD",SWIG_From_int(static_cast< int >(35)));
22969 SWIG_Python_SetConstant(d
, "STC_STYLE_CONTROLCHAR",SWIG_From_int(static_cast< int >(36)));
22970 SWIG_Python_SetConstant(d
, "STC_STYLE_INDENTGUIDE",SWIG_From_int(static_cast< int >(37)));
22971 SWIG_Python_SetConstant(d
, "STC_STYLE_LASTPREDEFINED",SWIG_From_int(static_cast< int >(39)));
22972 SWIG_Python_SetConstant(d
, "STC_STYLE_MAX",SWIG_From_int(static_cast< int >(127)));
22973 SWIG_Python_SetConstant(d
, "STC_CHARSET_ANSI",SWIG_From_int(static_cast< int >(0)));
22974 SWIG_Python_SetConstant(d
, "STC_CHARSET_DEFAULT",SWIG_From_int(static_cast< int >(1)));
22975 SWIG_Python_SetConstant(d
, "STC_CHARSET_BALTIC",SWIG_From_int(static_cast< int >(186)));
22976 SWIG_Python_SetConstant(d
, "STC_CHARSET_CHINESEBIG5",SWIG_From_int(static_cast< int >(136)));
22977 SWIG_Python_SetConstant(d
, "STC_CHARSET_EASTEUROPE",SWIG_From_int(static_cast< int >(238)));
22978 SWIG_Python_SetConstant(d
, "STC_CHARSET_GB2312",SWIG_From_int(static_cast< int >(134)));
22979 SWIG_Python_SetConstant(d
, "STC_CHARSET_GREEK",SWIG_From_int(static_cast< int >(161)));
22980 SWIG_Python_SetConstant(d
, "STC_CHARSET_HANGUL",SWIG_From_int(static_cast< int >(129)));
22981 SWIG_Python_SetConstant(d
, "STC_CHARSET_MAC",SWIG_From_int(static_cast< int >(77)));
22982 SWIG_Python_SetConstant(d
, "STC_CHARSET_OEM",SWIG_From_int(static_cast< int >(255)));
22983 SWIG_Python_SetConstant(d
, "STC_CHARSET_RUSSIAN",SWIG_From_int(static_cast< int >(204)));
22984 SWIG_Python_SetConstant(d
, "STC_CHARSET_CYRILLIC",SWIG_From_int(static_cast< int >(1251)));
22985 SWIG_Python_SetConstant(d
, "STC_CHARSET_SHIFTJIS",SWIG_From_int(static_cast< int >(128)));
22986 SWIG_Python_SetConstant(d
, "STC_CHARSET_SYMBOL",SWIG_From_int(static_cast< int >(2)));
22987 SWIG_Python_SetConstant(d
, "STC_CHARSET_TURKISH",SWIG_From_int(static_cast< int >(162)));
22988 SWIG_Python_SetConstant(d
, "STC_CHARSET_JOHAB",SWIG_From_int(static_cast< int >(130)));
22989 SWIG_Python_SetConstant(d
, "STC_CHARSET_HEBREW",SWIG_From_int(static_cast< int >(177)));
22990 SWIG_Python_SetConstant(d
, "STC_CHARSET_ARABIC",SWIG_From_int(static_cast< int >(178)));
22991 SWIG_Python_SetConstant(d
, "STC_CHARSET_VIETNAMESE",SWIG_From_int(static_cast< int >(163)));
22992 SWIG_Python_SetConstant(d
, "STC_CHARSET_THAI",SWIG_From_int(static_cast< int >(222)));
22993 SWIG_Python_SetConstant(d
, "STC_CHARSET_8859_15",SWIG_From_int(static_cast< int >(1000)));
22994 SWIG_Python_SetConstant(d
, "STC_CASE_MIXED",SWIG_From_int(static_cast< int >(0)));
22995 SWIG_Python_SetConstant(d
, "STC_CASE_UPPER",SWIG_From_int(static_cast< int >(1)));
22996 SWIG_Python_SetConstant(d
, "STC_CASE_LOWER",SWIG_From_int(static_cast< int >(2)));
22997 SWIG_Python_SetConstant(d
, "STC_INDIC_MAX",SWIG_From_int(static_cast< int >(7)));
22998 SWIG_Python_SetConstant(d
, "STC_INDIC_PLAIN",SWIG_From_int(static_cast< int >(0)));
22999 SWIG_Python_SetConstant(d
, "STC_INDIC_SQUIGGLE",SWIG_From_int(static_cast< int >(1)));
23000 SWIG_Python_SetConstant(d
, "STC_INDIC_TT",SWIG_From_int(static_cast< int >(2)));
23001 SWIG_Python_SetConstant(d
, "STC_INDIC_DIAGONAL",SWIG_From_int(static_cast< int >(3)));
23002 SWIG_Python_SetConstant(d
, "STC_INDIC_STRIKE",SWIG_From_int(static_cast< int >(4)));
23003 SWIG_Python_SetConstant(d
, "STC_INDIC_HIDDEN",SWIG_From_int(static_cast< int >(5)));
23004 SWIG_Python_SetConstant(d
, "STC_INDIC_BOX",SWIG_From_int(static_cast< int >(6)));
23005 SWIG_Python_SetConstant(d
, "STC_INDIC0_MASK",SWIG_From_int(static_cast< int >(0x20)));
23006 SWIG_Python_SetConstant(d
, "STC_INDIC1_MASK",SWIG_From_int(static_cast< int >(0x40)));
23007 SWIG_Python_SetConstant(d
, "STC_INDIC2_MASK",SWIG_From_int(static_cast< int >(0x80)));
23008 SWIG_Python_SetConstant(d
, "STC_INDICS_MASK",SWIG_From_int(static_cast< int >(0xE0)));
23009 SWIG_Python_SetConstant(d
, "STC_PRINT_NORMAL",SWIG_From_int(static_cast< int >(0)));
23010 SWIG_Python_SetConstant(d
, "STC_PRINT_INVERTLIGHT",SWIG_From_int(static_cast< int >(1)));
23011 SWIG_Python_SetConstant(d
, "STC_PRINT_BLACKONWHITE",SWIG_From_int(static_cast< int >(2)));
23012 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITE",SWIG_From_int(static_cast< int >(3)));
23013 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITEDEFAULTBG",SWIG_From_int(static_cast< int >(4)));
23014 SWIG_Python_SetConstant(d
, "STC_FIND_WHOLEWORD",SWIG_From_int(static_cast< int >(2)));
23015 SWIG_Python_SetConstant(d
, "STC_FIND_MATCHCASE",SWIG_From_int(static_cast< int >(4)));
23016 SWIG_Python_SetConstant(d
, "STC_FIND_WORDSTART",SWIG_From_int(static_cast< int >(0x00100000)));
23017 SWIG_Python_SetConstant(d
, "STC_FIND_REGEXP",SWIG_From_int(static_cast< int >(0x00200000)));
23018 SWIG_Python_SetConstant(d
, "STC_FIND_POSIX",SWIG_From_int(static_cast< int >(0x00400000)));
23019 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBASE",SWIG_From_int(static_cast< int >(0x400)));
23020 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELWHITEFLAG",SWIG_From_int(static_cast< int >(0x1000)));
23021 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELHEADERFLAG",SWIG_From_int(static_cast< int >(0x2000)));
23022 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXHEADERFLAG",SWIG_From_int(static_cast< int >(0x4000)));
23023 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXFOOTERFLAG",SWIG_From_int(static_cast< int >(0x8000)));
23024 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELCONTRACTED",SWIG_From_int(static_cast< int >(0x10000)));
23025 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELUNINDENT",SWIG_From_int(static_cast< int >(0x20000)));
23026 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELNUMBERMASK",SWIG_From_int(static_cast< int >(0x0FFF)));
23027 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_EXPANDED",SWIG_From_int(static_cast< int >(0x0002)));
23028 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_CONTRACTED",SWIG_From_int(static_cast< int >(0x0004)));
23029 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_EXPANDED",SWIG_From_int(static_cast< int >(0x0008)));
23030 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_CONTRACTED",SWIG_From_int(static_cast< int >(0x0010)));
23031 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LEVELNUMBERS",SWIG_From_int(static_cast< int >(0x0040)));
23032 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_BOX",SWIG_From_int(static_cast< int >(0x0001)));
23033 SWIG_Python_SetConstant(d
, "STC_TIME_FOREVER",SWIG_From_int(static_cast< int >(10000000)));
23034 SWIG_Python_SetConstant(d
, "STC_WRAP_NONE",SWIG_From_int(static_cast< int >(0)));
23035 SWIG_Python_SetConstant(d
, "STC_WRAP_WORD",SWIG_From_int(static_cast< int >(1)));
23036 SWIG_Python_SetConstant(d
, "STC_WRAP_CHAR",SWIG_From_int(static_cast< int >(2)));
23037 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_NONE",SWIG_From_int(static_cast< int >(0x0000)));
23038 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_END",SWIG_From_int(static_cast< int >(0x0001)));
23039 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_START",SWIG_From_int(static_cast< int >(0x0002)));
23040 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_DEFAULT",SWIG_From_int(static_cast< int >(0x0000)));
23041 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_END_BY_TEXT",SWIG_From_int(static_cast< int >(0x0001)));
23042 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_START_BY_TEXT",SWIG_From_int(static_cast< int >(0x0002)));
23043 SWIG_Python_SetConstant(d
, "STC_CACHE_NONE",SWIG_From_int(static_cast< int >(0)));
23044 SWIG_Python_SetConstant(d
, "STC_CACHE_CARET",SWIG_From_int(static_cast< int >(1)));
23045 SWIG_Python_SetConstant(d
, "STC_CACHE_PAGE",SWIG_From_int(static_cast< int >(2)));
23046 SWIG_Python_SetConstant(d
, "STC_CACHE_DOCUMENT",SWIG_From_int(static_cast< int >(3)));
23047 SWIG_Python_SetConstant(d
, "STC_EDGE_NONE",SWIG_From_int(static_cast< int >(0)));
23048 SWIG_Python_SetConstant(d
, "STC_EDGE_LINE",SWIG_From_int(static_cast< int >(1)));
23049 SWIG_Python_SetConstant(d
, "STC_EDGE_BACKGROUND",SWIG_From_int(static_cast< int >(2)));
23050 SWIG_Python_SetConstant(d
, "STC_CURSORNORMAL",SWIG_From_int(static_cast< int >(-1)));
23051 SWIG_Python_SetConstant(d
, "STC_CURSORWAIT",SWIG_From_int(static_cast< int >(4)));
23052 SWIG_Python_SetConstant(d
, "STC_VISIBLE_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23053 SWIG_Python_SetConstant(d
, "STC_VISIBLE_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23054 SWIG_Python_SetConstant(d
, "STC_CARET_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23055 SWIG_Python_SetConstant(d
, "STC_CARET_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23056 SWIG_Python_SetConstant(d
, "STC_CARET_JUMPS",SWIG_From_int(static_cast< int >(0x10)));
23057 SWIG_Python_SetConstant(d
, "STC_CARET_EVEN",SWIG_From_int(static_cast< int >(0x08)));
23058 SWIG_Python_SetConstant(d
, "STC_SEL_STREAM",SWIG_From_int(static_cast< int >(0)));
23059 SWIG_Python_SetConstant(d
, "STC_SEL_RECTANGLE",SWIG_From_int(static_cast< int >(1)));
23060 SWIG_Python_SetConstant(d
, "STC_SEL_LINES",SWIG_From_int(static_cast< int >(2)));
23061 SWIG_Python_SetConstant(d
, "STC_KEYWORDSET_MAX",SWIG_From_int(static_cast< int >(8)));
23062 SWIG_Python_SetConstant(d
, "STC_MOD_INSERTTEXT",SWIG_From_int(static_cast< int >(0x1)));
23063 SWIG_Python_SetConstant(d
, "STC_MOD_DELETETEXT",SWIG_From_int(static_cast< int >(0x2)));
23064 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGESTYLE",SWIG_From_int(static_cast< int >(0x4)));
23065 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEFOLD",SWIG_From_int(static_cast< int >(0x8)));
23066 SWIG_Python_SetConstant(d
, "STC_PERFORMED_USER",SWIG_From_int(static_cast< int >(0x10)));
23067 SWIG_Python_SetConstant(d
, "STC_PERFORMED_UNDO",SWIG_From_int(static_cast< int >(0x20)));
23068 SWIG_Python_SetConstant(d
, "STC_PERFORMED_REDO",SWIG_From_int(static_cast< int >(0x40)));
23069 SWIG_Python_SetConstant(d
, "STC_MULTISTEPUNDOREDO",SWIG_From_int(static_cast< int >(0x80)));
23070 SWIG_Python_SetConstant(d
, "STC_LASTSTEPINUNDOREDO",SWIG_From_int(static_cast< int >(0x100)));
23071 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEMARKER",SWIG_From_int(static_cast< int >(0x200)));
23072 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREINSERT",SWIG_From_int(static_cast< int >(0x400)));
23073 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREDELETE",SWIG_From_int(static_cast< int >(0x800)));
23074 SWIG_Python_SetConstant(d
, "STC_MULTILINEUNDOREDO",SWIG_From_int(static_cast< int >(0x1000)));
23075 SWIG_Python_SetConstant(d
, "STC_MODEVENTMASKALL",SWIG_From_int(static_cast< int >(0x1FFF)));
23076 SWIG_Python_SetConstant(d
, "STC_KEY_DOWN",SWIG_From_int(static_cast< int >(300)));
23077 SWIG_Python_SetConstant(d
, "STC_KEY_UP",SWIG_From_int(static_cast< int >(301)));
23078 SWIG_Python_SetConstant(d
, "STC_KEY_LEFT",SWIG_From_int(static_cast< int >(302)));
23079 SWIG_Python_SetConstant(d
, "STC_KEY_RIGHT",SWIG_From_int(static_cast< int >(303)));
23080 SWIG_Python_SetConstant(d
, "STC_KEY_HOME",SWIG_From_int(static_cast< int >(304)));
23081 SWIG_Python_SetConstant(d
, "STC_KEY_END",SWIG_From_int(static_cast< int >(305)));
23082 SWIG_Python_SetConstant(d
, "STC_KEY_PRIOR",SWIG_From_int(static_cast< int >(306)));
23083 SWIG_Python_SetConstant(d
, "STC_KEY_NEXT",SWIG_From_int(static_cast< int >(307)));
23084 SWIG_Python_SetConstant(d
, "STC_KEY_DELETE",SWIG_From_int(static_cast< int >(308)));
23085 SWIG_Python_SetConstant(d
, "STC_KEY_INSERT",SWIG_From_int(static_cast< int >(309)));
23086 SWIG_Python_SetConstant(d
, "STC_KEY_ESCAPE",SWIG_From_int(static_cast< int >(7)));
23087 SWIG_Python_SetConstant(d
, "STC_KEY_BACK",SWIG_From_int(static_cast< int >(8)));
23088 SWIG_Python_SetConstant(d
, "STC_KEY_TAB",SWIG_From_int(static_cast< int >(9)));
23089 SWIG_Python_SetConstant(d
, "STC_KEY_RETURN",SWIG_From_int(static_cast< int >(13)));
23090 SWIG_Python_SetConstant(d
, "STC_KEY_ADD",SWIG_From_int(static_cast< int >(310)));
23091 SWIG_Python_SetConstant(d
, "STC_KEY_SUBTRACT",SWIG_From_int(static_cast< int >(311)));
23092 SWIG_Python_SetConstant(d
, "STC_KEY_DIVIDE",SWIG_From_int(static_cast< int >(312)));
23093 SWIG_Python_SetConstant(d
, "STC_SCMOD_NORM",SWIG_From_int(static_cast< int >(0)));
23094 SWIG_Python_SetConstant(d
, "STC_SCMOD_SHIFT",SWIG_From_int(static_cast< int >(1)));
23095 SWIG_Python_SetConstant(d
, "STC_SCMOD_CTRL",SWIG_From_int(static_cast< int >(2)));
23096 SWIG_Python_SetConstant(d
, "STC_SCMOD_ALT",SWIG_From_int(static_cast< int >(4)));
23097 SWIG_Python_SetConstant(d
, "STC_LEX_CONTAINER",SWIG_From_int(static_cast< int >(0)));
23098 SWIG_Python_SetConstant(d
, "STC_LEX_NULL",SWIG_From_int(static_cast< int >(1)));
23099 SWIG_Python_SetConstant(d
, "STC_LEX_PYTHON",SWIG_From_int(static_cast< int >(2)));
23100 SWIG_Python_SetConstant(d
, "STC_LEX_CPP",SWIG_From_int(static_cast< int >(3)));
23101 SWIG_Python_SetConstant(d
, "STC_LEX_HTML",SWIG_From_int(static_cast< int >(4)));
23102 SWIG_Python_SetConstant(d
, "STC_LEX_XML",SWIG_From_int(static_cast< int >(5)));
23103 SWIG_Python_SetConstant(d
, "STC_LEX_PERL",SWIG_From_int(static_cast< int >(6)));
23104 SWIG_Python_SetConstant(d
, "STC_LEX_SQL",SWIG_From_int(static_cast< int >(7)));
23105 SWIG_Python_SetConstant(d
, "STC_LEX_VB",SWIG_From_int(static_cast< int >(8)));
23106 SWIG_Python_SetConstant(d
, "STC_LEX_PROPERTIES",SWIG_From_int(static_cast< int >(9)));
23107 SWIG_Python_SetConstant(d
, "STC_LEX_ERRORLIST",SWIG_From_int(static_cast< int >(10)));
23108 SWIG_Python_SetConstant(d
, "STC_LEX_MAKEFILE",SWIG_From_int(static_cast< int >(11)));
23109 SWIG_Python_SetConstant(d
, "STC_LEX_BATCH",SWIG_From_int(static_cast< int >(12)));
23110 SWIG_Python_SetConstant(d
, "STC_LEX_XCODE",SWIG_From_int(static_cast< int >(13)));
23111 SWIG_Python_SetConstant(d
, "STC_LEX_LATEX",SWIG_From_int(static_cast< int >(14)));
23112 SWIG_Python_SetConstant(d
, "STC_LEX_LUA",SWIG_From_int(static_cast< int >(15)));
23113 SWIG_Python_SetConstant(d
, "STC_LEX_DIFF",SWIG_From_int(static_cast< int >(16)));
23114 SWIG_Python_SetConstant(d
, "STC_LEX_CONF",SWIG_From_int(static_cast< int >(17)));
23115 SWIG_Python_SetConstant(d
, "STC_LEX_PASCAL",SWIG_From_int(static_cast< int >(18)));
23116 SWIG_Python_SetConstant(d
, "STC_LEX_AVE",SWIG_From_int(static_cast< int >(19)));
23117 SWIG_Python_SetConstant(d
, "STC_LEX_ADA",SWIG_From_int(static_cast< int >(20)));
23118 SWIG_Python_SetConstant(d
, "STC_LEX_LISP",SWIG_From_int(static_cast< int >(21)));
23119 SWIG_Python_SetConstant(d
, "STC_LEX_RUBY",SWIG_From_int(static_cast< int >(22)));
23120 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFEL",SWIG_From_int(static_cast< int >(23)));
23121 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFELKW",SWIG_From_int(static_cast< int >(24)));
23122 SWIG_Python_SetConstant(d
, "STC_LEX_TCL",SWIG_From_int(static_cast< int >(25)));
23123 SWIG_Python_SetConstant(d
, "STC_LEX_NNCRONTAB",SWIG_From_int(static_cast< int >(26)));
23124 SWIG_Python_SetConstant(d
, "STC_LEX_BULLANT",SWIG_From_int(static_cast< int >(27)));
23125 SWIG_Python_SetConstant(d
, "STC_LEX_VBSCRIPT",SWIG_From_int(static_cast< int >(28)));
23126 SWIG_Python_SetConstant(d
, "STC_LEX_BAAN",SWIG_From_int(static_cast< int >(31)));
23127 SWIG_Python_SetConstant(d
, "STC_LEX_MATLAB",SWIG_From_int(static_cast< int >(32)));
23128 SWIG_Python_SetConstant(d
, "STC_LEX_SCRIPTOL",SWIG_From_int(static_cast< int >(33)));
23129 SWIG_Python_SetConstant(d
, "STC_LEX_ASM",SWIG_From_int(static_cast< int >(34)));
23130 SWIG_Python_SetConstant(d
, "STC_LEX_CPPNOCASE",SWIG_From_int(static_cast< int >(35)));
23131 SWIG_Python_SetConstant(d
, "STC_LEX_FORTRAN",SWIG_From_int(static_cast< int >(36)));
23132 SWIG_Python_SetConstant(d
, "STC_LEX_F77",SWIG_From_int(static_cast< int >(37)));
23133 SWIG_Python_SetConstant(d
, "STC_LEX_CSS",SWIG_From_int(static_cast< int >(38)));
23134 SWIG_Python_SetConstant(d
, "STC_LEX_POV",SWIG_From_int(static_cast< int >(39)));
23135 SWIG_Python_SetConstant(d
, "STC_LEX_LOUT",SWIG_From_int(static_cast< int >(40)));
23136 SWIG_Python_SetConstant(d
, "STC_LEX_ESCRIPT",SWIG_From_int(static_cast< int >(41)));
23137 SWIG_Python_SetConstant(d
, "STC_LEX_PS",SWIG_From_int(static_cast< int >(42)));
23138 SWIG_Python_SetConstant(d
, "STC_LEX_NSIS",SWIG_From_int(static_cast< int >(43)));
23139 SWIG_Python_SetConstant(d
, "STC_LEX_MMIXAL",SWIG_From_int(static_cast< int >(44)));
23140 SWIG_Python_SetConstant(d
, "STC_LEX_CLW",SWIG_From_int(static_cast< int >(45)));
23141 SWIG_Python_SetConstant(d
, "STC_LEX_CLWNOCASE",SWIG_From_int(static_cast< int >(46)));
23142 SWIG_Python_SetConstant(d
, "STC_LEX_LOT",SWIG_From_int(static_cast< int >(47)));
23143 SWIG_Python_SetConstant(d
, "STC_LEX_YAML",SWIG_From_int(static_cast< int >(48)));
23144 SWIG_Python_SetConstant(d
, "STC_LEX_TEX",SWIG_From_int(static_cast< int >(49)));
23145 SWIG_Python_SetConstant(d
, "STC_LEX_METAPOST",SWIG_From_int(static_cast< int >(50)));
23146 SWIG_Python_SetConstant(d
, "STC_LEX_POWERBASIC",SWIG_From_int(static_cast< int >(51)));
23147 SWIG_Python_SetConstant(d
, "STC_LEX_FORTH",SWIG_From_int(static_cast< int >(52)));
23148 SWIG_Python_SetConstant(d
, "STC_LEX_ERLANG",SWIG_From_int(static_cast< int >(53)));
23149 SWIG_Python_SetConstant(d
, "STC_LEX_OCTAVE",SWIG_From_int(static_cast< int >(54)));
23150 SWIG_Python_SetConstant(d
, "STC_LEX_MSSQL",SWIG_From_int(static_cast< int >(55)));
23151 SWIG_Python_SetConstant(d
, "STC_LEX_VERILOG",SWIG_From_int(static_cast< int >(56)));
23152 SWIG_Python_SetConstant(d
, "STC_LEX_KIX",SWIG_From_int(static_cast< int >(57)));
23153 SWIG_Python_SetConstant(d
, "STC_LEX_GUI4CLI",SWIG_From_int(static_cast< int >(58)));
23154 SWIG_Python_SetConstant(d
, "STC_LEX_SPECMAN",SWIG_From_int(static_cast< int >(59)));
23155 SWIG_Python_SetConstant(d
, "STC_LEX_AU3",SWIG_From_int(static_cast< int >(60)));
23156 SWIG_Python_SetConstant(d
, "STC_LEX_APDL",SWIG_From_int(static_cast< int >(61)));
23157 SWIG_Python_SetConstant(d
, "STC_LEX_BASH",SWIG_From_int(static_cast< int >(62)));
23158 SWIG_Python_SetConstant(d
, "STC_LEX_ASN1",SWIG_From_int(static_cast< int >(63)));
23159 SWIG_Python_SetConstant(d
, "STC_LEX_VHDL",SWIG_From_int(static_cast< int >(64)));
23160 SWIG_Python_SetConstant(d
, "STC_LEX_CAML",SWIG_From_int(static_cast< int >(65)));
23161 SWIG_Python_SetConstant(d
, "STC_LEX_BLITZBASIC",SWIG_From_int(static_cast< int >(66)));
23162 SWIG_Python_SetConstant(d
, "STC_LEX_PUREBASIC",SWIG_From_int(static_cast< int >(67)));
23163 SWIG_Python_SetConstant(d
, "STC_LEX_HASKELL",SWIG_From_int(static_cast< int >(68)));
23164 SWIG_Python_SetConstant(d
, "STC_LEX_PHPSCRIPT",SWIG_From_int(static_cast< int >(69)));
23165 SWIG_Python_SetConstant(d
, "STC_LEX_TADS3",SWIG_From_int(static_cast< int >(70)));
23166 SWIG_Python_SetConstant(d
, "STC_LEX_REBOL",SWIG_From_int(static_cast< int >(71)));
23167 SWIG_Python_SetConstant(d
, "STC_LEX_SMALLTALK",SWIG_From_int(static_cast< int >(72)));
23168 SWIG_Python_SetConstant(d
, "STC_LEX_FLAGSHIP",SWIG_From_int(static_cast< int >(73)));
23169 SWIG_Python_SetConstant(d
, "STC_LEX_CSOUND",SWIG_From_int(static_cast< int >(74)));
23170 SWIG_Python_SetConstant(d
, "STC_LEX_FREEBASIC",SWIG_From_int(static_cast< int >(75)));
23171 SWIG_Python_SetConstant(d
, "STC_LEX_ASP",SWIG_From_int(static_cast< int >(29)));
23172 SWIG_Python_SetConstant(d
, "STC_LEX_PHP",SWIG_From_int(static_cast< int >(30)));
23173 SWIG_Python_SetConstant(d
, "STC_LEX_AUTOMATIC",SWIG_From_int(static_cast< int >(1000)));
23174 SWIG_Python_SetConstant(d
, "STC_P_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23175 SWIG_Python_SetConstant(d
, "STC_P_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23176 SWIG_Python_SetConstant(d
, "STC_P_NUMBER",SWIG_From_int(static_cast< int >(2)));
23177 SWIG_Python_SetConstant(d
, "STC_P_STRING",SWIG_From_int(static_cast< int >(3)));
23178 SWIG_Python_SetConstant(d
, "STC_P_CHARACTER",SWIG_From_int(static_cast< int >(4)));
23179 SWIG_Python_SetConstant(d
, "STC_P_WORD",SWIG_From_int(static_cast< int >(5)));
23180 SWIG_Python_SetConstant(d
, "STC_P_TRIPLE",SWIG_From_int(static_cast< int >(6)));
23181 SWIG_Python_SetConstant(d
, "STC_P_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(7)));
23182 SWIG_Python_SetConstant(d
, "STC_P_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23183 SWIG_Python_SetConstant(d
, "STC_P_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23184 SWIG_Python_SetConstant(d
, "STC_P_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23185 SWIG_Python_SetConstant(d
, "STC_P_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23186 SWIG_Python_SetConstant(d
, "STC_P_COMMENTBLOCK",SWIG_From_int(static_cast< int >(12)));
23187 SWIG_Python_SetConstant(d
, "STC_P_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23188 SWIG_Python_SetConstant(d
, "STC_P_WORD2",SWIG_From_int(static_cast< int >(14)));
23189 SWIG_Python_SetConstant(d
, "STC_P_DECORATOR",SWIG_From_int(static_cast< int >(15)));
23190 SWIG_Python_SetConstant(d
, "STC_C_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23191 SWIG_Python_SetConstant(d
, "STC_C_COMMENT",SWIG_From_int(static_cast< int >(1)));
23192 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23193 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23194 SWIG_Python_SetConstant(d
, "STC_C_NUMBER",SWIG_From_int(static_cast< int >(4)));
23195 SWIG_Python_SetConstant(d
, "STC_C_WORD",SWIG_From_int(static_cast< int >(5)));
23196 SWIG_Python_SetConstant(d
, "STC_C_STRING",SWIG_From_int(static_cast< int >(6)));
23197 SWIG_Python_SetConstant(d
, "STC_C_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23198 SWIG_Python_SetConstant(d
, "STC_C_UUID",SWIG_From_int(static_cast< int >(8)));
23199 SWIG_Python_SetConstant(d
, "STC_C_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23200 SWIG_Python_SetConstant(d
, "STC_C_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23201 SWIG_Python_SetConstant(d
, "STC_C_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23202 SWIG_Python_SetConstant(d
, "STC_C_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23203 SWIG_Python_SetConstant(d
, "STC_C_VERBATIM",SWIG_From_int(static_cast< int >(13)));
23204 SWIG_Python_SetConstant(d
, "STC_C_REGEX",SWIG_From_int(static_cast< int >(14)));
23205 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
23206 SWIG_Python_SetConstant(d
, "STC_C_WORD2",SWIG_From_int(static_cast< int >(16)));
23207 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
23208 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
23209 SWIG_Python_SetConstant(d
, "STC_C_GLOBALCLASS",SWIG_From_int(static_cast< int >(19)));
23210 SWIG_Python_SetConstant(d
, "STC_H_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23211 SWIG_Python_SetConstant(d
, "STC_H_TAG",SWIG_From_int(static_cast< int >(1)));
23212 SWIG_Python_SetConstant(d
, "STC_H_TAGUNKNOWN",SWIG_From_int(static_cast< int >(2)));
23213 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTE",SWIG_From_int(static_cast< int >(3)));
23214 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTEUNKNOWN",SWIG_From_int(static_cast< int >(4)));
23215 SWIG_Python_SetConstant(d
, "STC_H_NUMBER",SWIG_From_int(static_cast< int >(5)));
23216 SWIG_Python_SetConstant(d
, "STC_H_DOUBLESTRING",SWIG_From_int(static_cast< int >(6)));
23217 SWIG_Python_SetConstant(d
, "STC_H_SINGLESTRING",SWIG_From_int(static_cast< int >(7)));
23218 SWIG_Python_SetConstant(d
, "STC_H_OTHER",SWIG_From_int(static_cast< int >(8)));
23219 SWIG_Python_SetConstant(d
, "STC_H_COMMENT",SWIG_From_int(static_cast< int >(9)));
23220 SWIG_Python_SetConstant(d
, "STC_H_ENTITY",SWIG_From_int(static_cast< int >(10)));
23221 SWIG_Python_SetConstant(d
, "STC_H_TAGEND",SWIG_From_int(static_cast< int >(11)));
23222 SWIG_Python_SetConstant(d
, "STC_H_XMLSTART",SWIG_From_int(static_cast< int >(12)));
23223 SWIG_Python_SetConstant(d
, "STC_H_XMLEND",SWIG_From_int(static_cast< int >(13)));
23224 SWIG_Python_SetConstant(d
, "STC_H_SCRIPT",SWIG_From_int(static_cast< int >(14)));
23225 SWIG_Python_SetConstant(d
, "STC_H_ASP",SWIG_From_int(static_cast< int >(15)));
23226 SWIG_Python_SetConstant(d
, "STC_H_ASPAT",SWIG_From_int(static_cast< int >(16)));
23227 SWIG_Python_SetConstant(d
, "STC_H_CDATA",SWIG_From_int(static_cast< int >(17)));
23228 SWIG_Python_SetConstant(d
, "STC_H_QUESTION",SWIG_From_int(static_cast< int >(18)));
23229 SWIG_Python_SetConstant(d
, "STC_H_VALUE",SWIG_From_int(static_cast< int >(19)));
23230 SWIG_Python_SetConstant(d
, "STC_H_XCCOMMENT",SWIG_From_int(static_cast< int >(20)));
23231 SWIG_Python_SetConstant(d
, "STC_H_SGML_DEFAULT",SWIG_From_int(static_cast< int >(21)));
23232 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMAND",SWIG_From_int(static_cast< int >(22)));
23233 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM",SWIG_From_int(static_cast< int >(23)));
23234 SWIG_Python_SetConstant(d
, "STC_H_SGML_DOUBLESTRING",SWIG_From_int(static_cast< int >(24)));
23235 SWIG_Python_SetConstant(d
, "STC_H_SGML_SIMPLESTRING",SWIG_From_int(static_cast< int >(25)));
23236 SWIG_Python_SetConstant(d
, "STC_H_SGML_ERROR",SWIG_From_int(static_cast< int >(26)));
23237 SWIG_Python_SetConstant(d
, "STC_H_SGML_SPECIAL",SWIG_From_int(static_cast< int >(27)));
23238 SWIG_Python_SetConstant(d
, "STC_H_SGML_ENTITY",SWIG_From_int(static_cast< int >(28)));
23239 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMENT",SWIG_From_int(static_cast< int >(29)));
23240 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM_COMMENT",SWIG_From_int(static_cast< int >(30)));
23241 SWIG_Python_SetConstant(d
, "STC_H_SGML_BLOCK_DEFAULT",SWIG_From_int(static_cast< int >(31)));
23242 SWIG_Python_SetConstant(d
, "STC_HJ_START",SWIG_From_int(static_cast< int >(40)));
23243 SWIG_Python_SetConstant(d
, "STC_HJ_DEFAULT",SWIG_From_int(static_cast< int >(41)));
23244 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENT",SWIG_From_int(static_cast< int >(42)));
23245 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTLINE",SWIG_From_int(static_cast< int >(43)));
23246 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTDOC",SWIG_From_int(static_cast< int >(44)));
23247 SWIG_Python_SetConstant(d
, "STC_HJ_NUMBER",SWIG_From_int(static_cast< int >(45)));
23248 SWIG_Python_SetConstant(d
, "STC_HJ_WORD",SWIG_From_int(static_cast< int >(46)));
23249 SWIG_Python_SetConstant(d
, "STC_HJ_KEYWORD",SWIG_From_int(static_cast< int >(47)));
23250 SWIG_Python_SetConstant(d
, "STC_HJ_DOUBLESTRING",SWIG_From_int(static_cast< int >(48)));
23251 SWIG_Python_SetConstant(d
, "STC_HJ_SINGLESTRING",SWIG_From_int(static_cast< int >(49)));
23252 SWIG_Python_SetConstant(d
, "STC_HJ_SYMBOLS",SWIG_From_int(static_cast< int >(50)));
23253 SWIG_Python_SetConstant(d
, "STC_HJ_STRINGEOL",SWIG_From_int(static_cast< int >(51)));
23254 SWIG_Python_SetConstant(d
, "STC_HJ_REGEX",SWIG_From_int(static_cast< int >(52)));
23255 SWIG_Python_SetConstant(d
, "STC_HJA_START",SWIG_From_int(static_cast< int >(55)));
23256 SWIG_Python_SetConstant(d
, "STC_HJA_DEFAULT",SWIG_From_int(static_cast< int >(56)));
23257 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENT",SWIG_From_int(static_cast< int >(57)));
23258 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTLINE",SWIG_From_int(static_cast< int >(58)));
23259 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTDOC",SWIG_From_int(static_cast< int >(59)));
23260 SWIG_Python_SetConstant(d
, "STC_HJA_NUMBER",SWIG_From_int(static_cast< int >(60)));
23261 SWIG_Python_SetConstant(d
, "STC_HJA_WORD",SWIG_From_int(static_cast< int >(61)));
23262 SWIG_Python_SetConstant(d
, "STC_HJA_KEYWORD",SWIG_From_int(static_cast< int >(62)));
23263 SWIG_Python_SetConstant(d
, "STC_HJA_DOUBLESTRING",SWIG_From_int(static_cast< int >(63)));
23264 SWIG_Python_SetConstant(d
, "STC_HJA_SINGLESTRING",SWIG_From_int(static_cast< int >(64)));
23265 SWIG_Python_SetConstant(d
, "STC_HJA_SYMBOLS",SWIG_From_int(static_cast< int >(65)));
23266 SWIG_Python_SetConstant(d
, "STC_HJA_STRINGEOL",SWIG_From_int(static_cast< int >(66)));
23267 SWIG_Python_SetConstant(d
, "STC_HJA_REGEX",SWIG_From_int(static_cast< int >(67)));
23268 SWIG_Python_SetConstant(d
, "STC_HB_START",SWIG_From_int(static_cast< int >(70)));
23269 SWIG_Python_SetConstant(d
, "STC_HB_DEFAULT",SWIG_From_int(static_cast< int >(71)));
23270 SWIG_Python_SetConstant(d
, "STC_HB_COMMENTLINE",SWIG_From_int(static_cast< int >(72)));
23271 SWIG_Python_SetConstant(d
, "STC_HB_NUMBER",SWIG_From_int(static_cast< int >(73)));
23272 SWIG_Python_SetConstant(d
, "STC_HB_WORD",SWIG_From_int(static_cast< int >(74)));
23273 SWIG_Python_SetConstant(d
, "STC_HB_STRING",SWIG_From_int(static_cast< int >(75)));
23274 SWIG_Python_SetConstant(d
, "STC_HB_IDENTIFIER",SWIG_From_int(static_cast< int >(76)));
23275 SWIG_Python_SetConstant(d
, "STC_HB_STRINGEOL",SWIG_From_int(static_cast< int >(77)));
23276 SWIG_Python_SetConstant(d
, "STC_HBA_START",SWIG_From_int(static_cast< int >(80)));
23277 SWIG_Python_SetConstant(d
, "STC_HBA_DEFAULT",SWIG_From_int(static_cast< int >(81)));
23278 SWIG_Python_SetConstant(d
, "STC_HBA_COMMENTLINE",SWIG_From_int(static_cast< int >(82)));
23279 SWIG_Python_SetConstant(d
, "STC_HBA_NUMBER",SWIG_From_int(static_cast< int >(83)));
23280 SWIG_Python_SetConstant(d
, "STC_HBA_WORD",SWIG_From_int(static_cast< int >(84)));
23281 SWIG_Python_SetConstant(d
, "STC_HBA_STRING",SWIG_From_int(static_cast< int >(85)));
23282 SWIG_Python_SetConstant(d
, "STC_HBA_IDENTIFIER",SWIG_From_int(static_cast< int >(86)));
23283 SWIG_Python_SetConstant(d
, "STC_HBA_STRINGEOL",SWIG_From_int(static_cast< int >(87)));
23284 SWIG_Python_SetConstant(d
, "STC_HP_START",SWIG_From_int(static_cast< int >(90)));
23285 SWIG_Python_SetConstant(d
, "STC_HP_DEFAULT",SWIG_From_int(static_cast< int >(91)));
23286 SWIG_Python_SetConstant(d
, "STC_HP_COMMENTLINE",SWIG_From_int(static_cast< int >(92)));
23287 SWIG_Python_SetConstant(d
, "STC_HP_NUMBER",SWIG_From_int(static_cast< int >(93)));
23288 SWIG_Python_SetConstant(d
, "STC_HP_STRING",SWIG_From_int(static_cast< int >(94)));
23289 SWIG_Python_SetConstant(d
, "STC_HP_CHARACTER",SWIG_From_int(static_cast< int >(95)));
23290 SWIG_Python_SetConstant(d
, "STC_HP_WORD",SWIG_From_int(static_cast< int >(96)));
23291 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLE",SWIG_From_int(static_cast< int >(97)));
23292 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(98)));
23293 SWIG_Python_SetConstant(d
, "STC_HP_CLASSNAME",SWIG_From_int(static_cast< int >(99)));
23294 SWIG_Python_SetConstant(d
, "STC_HP_DEFNAME",SWIG_From_int(static_cast< int >(100)));
23295 SWIG_Python_SetConstant(d
, "STC_HP_OPERATOR",SWIG_From_int(static_cast< int >(101)));
23296 SWIG_Python_SetConstant(d
, "STC_HP_IDENTIFIER",SWIG_From_int(static_cast< int >(102)));
23297 SWIG_Python_SetConstant(d
, "STC_HPHP_COMPLEX_VARIABLE",SWIG_From_int(static_cast< int >(104)));
23298 SWIG_Python_SetConstant(d
, "STC_HPA_START",SWIG_From_int(static_cast< int >(105)));
23299 SWIG_Python_SetConstant(d
, "STC_HPA_DEFAULT",SWIG_From_int(static_cast< int >(106)));
23300 SWIG_Python_SetConstant(d
, "STC_HPA_COMMENTLINE",SWIG_From_int(static_cast< int >(107)));
23301 SWIG_Python_SetConstant(d
, "STC_HPA_NUMBER",SWIG_From_int(static_cast< int >(108)));
23302 SWIG_Python_SetConstant(d
, "STC_HPA_STRING",SWIG_From_int(static_cast< int >(109)));
23303 SWIG_Python_SetConstant(d
, "STC_HPA_CHARACTER",SWIG_From_int(static_cast< int >(110)));
23304 SWIG_Python_SetConstant(d
, "STC_HPA_WORD",SWIG_From_int(static_cast< int >(111)));
23305 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLE",SWIG_From_int(static_cast< int >(112)));
23306 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(113)));
23307 SWIG_Python_SetConstant(d
, "STC_HPA_CLASSNAME",SWIG_From_int(static_cast< int >(114)));
23308 SWIG_Python_SetConstant(d
, "STC_HPA_DEFNAME",SWIG_From_int(static_cast< int >(115)));
23309 SWIG_Python_SetConstant(d
, "STC_HPA_OPERATOR",SWIG_From_int(static_cast< int >(116)));
23310 SWIG_Python_SetConstant(d
, "STC_HPA_IDENTIFIER",SWIG_From_int(static_cast< int >(117)));
23311 SWIG_Python_SetConstant(d
, "STC_HPHP_DEFAULT",SWIG_From_int(static_cast< int >(118)));
23312 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING",SWIG_From_int(static_cast< int >(119)));
23313 SWIG_Python_SetConstant(d
, "STC_HPHP_SIMPLESTRING",SWIG_From_int(static_cast< int >(120)));
23314 SWIG_Python_SetConstant(d
, "STC_HPHP_WORD",SWIG_From_int(static_cast< int >(121)));
23315 SWIG_Python_SetConstant(d
, "STC_HPHP_NUMBER",SWIG_From_int(static_cast< int >(122)));
23316 SWIG_Python_SetConstant(d
, "STC_HPHP_VARIABLE",SWIG_From_int(static_cast< int >(123)));
23317 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENT",SWIG_From_int(static_cast< int >(124)));
23318 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENTLINE",SWIG_From_int(static_cast< int >(125)));
23319 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING_VARIABLE",SWIG_From_int(static_cast< int >(126)));
23320 SWIG_Python_SetConstant(d
, "STC_HPHP_OPERATOR",SWIG_From_int(static_cast< int >(127)));
23321 SWIG_Python_SetConstant(d
, "STC_PL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23322 SWIG_Python_SetConstant(d
, "STC_PL_ERROR",SWIG_From_int(static_cast< int >(1)));
23323 SWIG_Python_SetConstant(d
, "STC_PL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23324 SWIG_Python_SetConstant(d
, "STC_PL_POD",SWIG_From_int(static_cast< int >(3)));
23325 SWIG_Python_SetConstant(d
, "STC_PL_NUMBER",SWIG_From_int(static_cast< int >(4)));
23326 SWIG_Python_SetConstant(d
, "STC_PL_WORD",SWIG_From_int(static_cast< int >(5)));
23327 SWIG_Python_SetConstant(d
, "STC_PL_STRING",SWIG_From_int(static_cast< int >(6)));
23328 SWIG_Python_SetConstant(d
, "STC_PL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23329 SWIG_Python_SetConstant(d
, "STC_PL_PUNCTUATION",SWIG_From_int(static_cast< int >(8)));
23330 SWIG_Python_SetConstant(d
, "STC_PL_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23331 SWIG_Python_SetConstant(d
, "STC_PL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23332 SWIG_Python_SetConstant(d
, "STC_PL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23333 SWIG_Python_SetConstant(d
, "STC_PL_SCALAR",SWIG_From_int(static_cast< int >(12)));
23334 SWIG_Python_SetConstant(d
, "STC_PL_ARRAY",SWIG_From_int(static_cast< int >(13)));
23335 SWIG_Python_SetConstant(d
, "STC_PL_HASH",SWIG_From_int(static_cast< int >(14)));
23336 SWIG_Python_SetConstant(d
, "STC_PL_SYMBOLTABLE",SWIG_From_int(static_cast< int >(15)));
23337 SWIG_Python_SetConstant(d
, "STC_PL_VARIABLE_INDEXER",SWIG_From_int(static_cast< int >(16)));
23338 SWIG_Python_SetConstant(d
, "STC_PL_REGEX",SWIG_From_int(static_cast< int >(17)));
23339 SWIG_Python_SetConstant(d
, "STC_PL_REGSUBST",SWIG_From_int(static_cast< int >(18)));
23340 SWIG_Python_SetConstant(d
, "STC_PL_LONGQUOTE",SWIG_From_int(static_cast< int >(19)));
23341 SWIG_Python_SetConstant(d
, "STC_PL_BACKTICKS",SWIG_From_int(static_cast< int >(20)));
23342 SWIG_Python_SetConstant(d
, "STC_PL_DATASECTION",SWIG_From_int(static_cast< int >(21)));
23343 SWIG_Python_SetConstant(d
, "STC_PL_HERE_DELIM",SWIG_From_int(static_cast< int >(22)));
23344 SWIG_Python_SetConstant(d
, "STC_PL_HERE_Q",SWIG_From_int(static_cast< int >(23)));
23345 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QQ",SWIG_From_int(static_cast< int >(24)));
23346 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QX",SWIG_From_int(static_cast< int >(25)));
23347 SWIG_Python_SetConstant(d
, "STC_PL_STRING_Q",SWIG_From_int(static_cast< int >(26)));
23348 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QQ",SWIG_From_int(static_cast< int >(27)));
23349 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QX",SWIG_From_int(static_cast< int >(28)));
23350 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QR",SWIG_From_int(static_cast< int >(29)));
23351 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QW",SWIG_From_int(static_cast< int >(30)));
23352 SWIG_Python_SetConstant(d
, "STC_PL_POD_VERB",SWIG_From_int(static_cast< int >(31)));
23353 SWIG_Python_SetConstant(d
, "STC_RB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23354 SWIG_Python_SetConstant(d
, "STC_RB_ERROR",SWIG_From_int(static_cast< int >(1)));
23355 SWIG_Python_SetConstant(d
, "STC_RB_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23356 SWIG_Python_SetConstant(d
, "STC_RB_POD",SWIG_From_int(static_cast< int >(3)));
23357 SWIG_Python_SetConstant(d
, "STC_RB_NUMBER",SWIG_From_int(static_cast< int >(4)));
23358 SWIG_Python_SetConstant(d
, "STC_RB_WORD",SWIG_From_int(static_cast< int >(5)));
23359 SWIG_Python_SetConstant(d
, "STC_RB_STRING",SWIG_From_int(static_cast< int >(6)));
23360 SWIG_Python_SetConstant(d
, "STC_RB_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23361 SWIG_Python_SetConstant(d
, "STC_RB_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23362 SWIG_Python_SetConstant(d
, "STC_RB_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23363 SWIG_Python_SetConstant(d
, "STC_RB_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23364 SWIG_Python_SetConstant(d
, "STC_RB_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23365 SWIG_Python_SetConstant(d
, "STC_RB_REGEX",SWIG_From_int(static_cast< int >(12)));
23366 SWIG_Python_SetConstant(d
, "STC_RB_GLOBAL",SWIG_From_int(static_cast< int >(13)));
23367 SWIG_Python_SetConstant(d
, "STC_RB_SYMBOL",SWIG_From_int(static_cast< int >(14)));
23368 SWIG_Python_SetConstant(d
, "STC_RB_MODULE_NAME",SWIG_From_int(static_cast< int >(15)));
23369 SWIG_Python_SetConstant(d
, "STC_RB_INSTANCE_VAR",SWIG_From_int(static_cast< int >(16)));
23370 SWIG_Python_SetConstant(d
, "STC_RB_CLASS_VAR",SWIG_From_int(static_cast< int >(17)));
23371 SWIG_Python_SetConstant(d
, "STC_RB_BACKTICKS",SWIG_From_int(static_cast< int >(18)));
23372 SWIG_Python_SetConstant(d
, "STC_RB_DATASECTION",SWIG_From_int(static_cast< int >(19)));
23373 SWIG_Python_SetConstant(d
, "STC_RB_HERE_DELIM",SWIG_From_int(static_cast< int >(20)));
23374 SWIG_Python_SetConstant(d
, "STC_RB_HERE_Q",SWIG_From_int(static_cast< int >(21)));
23375 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QQ",SWIG_From_int(static_cast< int >(22)));
23376 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QX",SWIG_From_int(static_cast< int >(23)));
23377 SWIG_Python_SetConstant(d
, "STC_RB_STRING_Q",SWIG_From_int(static_cast< int >(24)));
23378 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QQ",SWIG_From_int(static_cast< int >(25)));
23379 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QX",SWIG_From_int(static_cast< int >(26)));
23380 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QR",SWIG_From_int(static_cast< int >(27)));
23381 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QW",SWIG_From_int(static_cast< int >(28)));
23382 SWIG_Python_SetConstant(d
, "STC_RB_WORD_DEMOTED",SWIG_From_int(static_cast< int >(29)));
23383 SWIG_Python_SetConstant(d
, "STC_RB_STDIN",SWIG_From_int(static_cast< int >(30)));
23384 SWIG_Python_SetConstant(d
, "STC_RB_STDOUT",SWIG_From_int(static_cast< int >(31)));
23385 SWIG_Python_SetConstant(d
, "STC_RB_STDERR",SWIG_From_int(static_cast< int >(40)));
23386 SWIG_Python_SetConstant(d
, "STC_RB_UPPER_BOUND",SWIG_From_int(static_cast< int >(41)));
23387 SWIG_Python_SetConstant(d
, "STC_B_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23388 SWIG_Python_SetConstant(d
, "STC_B_COMMENT",SWIG_From_int(static_cast< int >(1)));
23389 SWIG_Python_SetConstant(d
, "STC_B_NUMBER",SWIG_From_int(static_cast< int >(2)));
23390 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23391 SWIG_Python_SetConstant(d
, "STC_B_STRING",SWIG_From_int(static_cast< int >(4)));
23392 SWIG_Python_SetConstant(d
, "STC_B_PREPROCESSOR",SWIG_From_int(static_cast< int >(5)));
23393 SWIG_Python_SetConstant(d
, "STC_B_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23394 SWIG_Python_SetConstant(d
, "STC_B_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23395 SWIG_Python_SetConstant(d
, "STC_B_DATE",SWIG_From_int(static_cast< int >(8)));
23396 SWIG_Python_SetConstant(d
, "STC_B_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23397 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD2",SWIG_From_int(static_cast< int >(10)));
23398 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD3",SWIG_From_int(static_cast< int >(11)));
23399 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD4",SWIG_From_int(static_cast< int >(12)));
23400 SWIG_Python_SetConstant(d
, "STC_B_CONSTANT",SWIG_From_int(static_cast< int >(13)));
23401 SWIG_Python_SetConstant(d
, "STC_B_ASM",SWIG_From_int(static_cast< int >(14)));
23402 SWIG_Python_SetConstant(d
, "STC_B_LABEL",SWIG_From_int(static_cast< int >(15)));
23403 SWIG_Python_SetConstant(d
, "STC_B_ERROR",SWIG_From_int(static_cast< int >(16)));
23404 SWIG_Python_SetConstant(d
, "STC_B_HEXNUMBER",SWIG_From_int(static_cast< int >(17)));
23405 SWIG_Python_SetConstant(d
, "STC_B_BINNUMBER",SWIG_From_int(static_cast< int >(18)));
23406 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23407 SWIG_Python_SetConstant(d
, "STC_PROPS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23408 SWIG_Python_SetConstant(d
, "STC_PROPS_SECTION",SWIG_From_int(static_cast< int >(2)));
23409 SWIG_Python_SetConstant(d
, "STC_PROPS_ASSIGNMENT",SWIG_From_int(static_cast< int >(3)));
23410 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFVAL",SWIG_From_int(static_cast< int >(4)));
23411 SWIG_Python_SetConstant(d
, "STC_L_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23412 SWIG_Python_SetConstant(d
, "STC_L_COMMAND",SWIG_From_int(static_cast< int >(1)));
23413 SWIG_Python_SetConstant(d
, "STC_L_TAG",SWIG_From_int(static_cast< int >(2)));
23414 SWIG_Python_SetConstant(d
, "STC_L_MATH",SWIG_From_int(static_cast< int >(3)));
23415 SWIG_Python_SetConstant(d
, "STC_L_COMMENT",SWIG_From_int(static_cast< int >(4)));
23416 SWIG_Python_SetConstant(d
, "STC_LUA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23417 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENT",SWIG_From_int(static_cast< int >(1)));
23418 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23419 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23420 SWIG_Python_SetConstant(d
, "STC_LUA_NUMBER",SWIG_From_int(static_cast< int >(4)));
23421 SWIG_Python_SetConstant(d
, "STC_LUA_WORD",SWIG_From_int(static_cast< int >(5)));
23422 SWIG_Python_SetConstant(d
, "STC_LUA_STRING",SWIG_From_int(static_cast< int >(6)));
23423 SWIG_Python_SetConstant(d
, "STC_LUA_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23424 SWIG_Python_SetConstant(d
, "STC_LUA_LITERALSTRING",SWIG_From_int(static_cast< int >(8)));
23425 SWIG_Python_SetConstant(d
, "STC_LUA_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23426 SWIG_Python_SetConstant(d
, "STC_LUA_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23427 SWIG_Python_SetConstant(d
, "STC_LUA_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23428 SWIG_Python_SetConstant(d
, "STC_LUA_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23429 SWIG_Python_SetConstant(d
, "STC_LUA_WORD2",SWIG_From_int(static_cast< int >(13)));
23430 SWIG_Python_SetConstant(d
, "STC_LUA_WORD3",SWIG_From_int(static_cast< int >(14)));
23431 SWIG_Python_SetConstant(d
, "STC_LUA_WORD4",SWIG_From_int(static_cast< int >(15)));
23432 SWIG_Python_SetConstant(d
, "STC_LUA_WORD5",SWIG_From_int(static_cast< int >(16)));
23433 SWIG_Python_SetConstant(d
, "STC_LUA_WORD6",SWIG_From_int(static_cast< int >(17)));
23434 SWIG_Python_SetConstant(d
, "STC_LUA_WORD7",SWIG_From_int(static_cast< int >(18)));
23435 SWIG_Python_SetConstant(d
, "STC_LUA_WORD8",SWIG_From_int(static_cast< int >(19)));
23436 SWIG_Python_SetConstant(d
, "STC_ERR_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23437 SWIG_Python_SetConstant(d
, "STC_ERR_PYTHON",SWIG_From_int(static_cast< int >(1)));
23438 SWIG_Python_SetConstant(d
, "STC_ERR_GCC",SWIG_From_int(static_cast< int >(2)));
23439 SWIG_Python_SetConstant(d
, "STC_ERR_MS",SWIG_From_int(static_cast< int >(3)));
23440 SWIG_Python_SetConstant(d
, "STC_ERR_CMD",SWIG_From_int(static_cast< int >(4)));
23441 SWIG_Python_SetConstant(d
, "STC_ERR_BORLAND",SWIG_From_int(static_cast< int >(5)));
23442 SWIG_Python_SetConstant(d
, "STC_ERR_PERL",SWIG_From_int(static_cast< int >(6)));
23443 SWIG_Python_SetConstant(d
, "STC_ERR_NET",SWIG_From_int(static_cast< int >(7)));
23444 SWIG_Python_SetConstant(d
, "STC_ERR_LUA",SWIG_From_int(static_cast< int >(8)));
23445 SWIG_Python_SetConstant(d
, "STC_ERR_CTAG",SWIG_From_int(static_cast< int >(9)));
23446 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_CHANGED",SWIG_From_int(static_cast< int >(10)));
23447 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_ADDITION",SWIG_From_int(static_cast< int >(11)));
23448 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_DELETION",SWIG_From_int(static_cast< int >(12)));
23449 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_MESSAGE",SWIG_From_int(static_cast< int >(13)));
23450 SWIG_Python_SetConstant(d
, "STC_ERR_PHP",SWIG_From_int(static_cast< int >(14)));
23451 SWIG_Python_SetConstant(d
, "STC_ERR_ELF",SWIG_From_int(static_cast< int >(15)));
23452 SWIG_Python_SetConstant(d
, "STC_ERR_IFC",SWIG_From_int(static_cast< int >(16)));
23453 SWIG_Python_SetConstant(d
, "STC_ERR_IFORT",SWIG_From_int(static_cast< int >(17)));
23454 SWIG_Python_SetConstant(d
, "STC_ERR_ABSF",SWIG_From_int(static_cast< int >(18)));
23455 SWIG_Python_SetConstant(d
, "STC_ERR_TIDY",SWIG_From_int(static_cast< int >(19)));
23456 SWIG_Python_SetConstant(d
, "STC_ERR_JAVA_STACK",SWIG_From_int(static_cast< int >(20)));
23457 SWIG_Python_SetConstant(d
, "STC_BAT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23458 SWIG_Python_SetConstant(d
, "STC_BAT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23459 SWIG_Python_SetConstant(d
, "STC_BAT_WORD",SWIG_From_int(static_cast< int >(2)));
23460 SWIG_Python_SetConstant(d
, "STC_BAT_LABEL",SWIG_From_int(static_cast< int >(3)));
23461 SWIG_Python_SetConstant(d
, "STC_BAT_HIDE",SWIG_From_int(static_cast< int >(4)));
23462 SWIG_Python_SetConstant(d
, "STC_BAT_COMMAND",SWIG_From_int(static_cast< int >(5)));
23463 SWIG_Python_SetConstant(d
, "STC_BAT_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23464 SWIG_Python_SetConstant(d
, "STC_BAT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23465 SWIG_Python_SetConstant(d
, "STC_MAKE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23466 SWIG_Python_SetConstant(d
, "STC_MAKE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23467 SWIG_Python_SetConstant(d
, "STC_MAKE_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23468 SWIG_Python_SetConstant(d
, "STC_MAKE_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23469 SWIG_Python_SetConstant(d
, "STC_MAKE_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23470 SWIG_Python_SetConstant(d
, "STC_MAKE_TARGET",SWIG_From_int(static_cast< int >(5)));
23471 SWIG_Python_SetConstant(d
, "STC_MAKE_IDEOL",SWIG_From_int(static_cast< int >(9)));
23472 SWIG_Python_SetConstant(d
, "STC_DIFF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23473 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23474 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMAND",SWIG_From_int(static_cast< int >(2)));
23475 SWIG_Python_SetConstant(d
, "STC_DIFF_HEADER",SWIG_From_int(static_cast< int >(3)));
23476 SWIG_Python_SetConstant(d
, "STC_DIFF_POSITION",SWIG_From_int(static_cast< int >(4)));
23477 SWIG_Python_SetConstant(d
, "STC_DIFF_DELETED",SWIG_From_int(static_cast< int >(5)));
23478 SWIG_Python_SetConstant(d
, "STC_DIFF_ADDED",SWIG_From_int(static_cast< int >(6)));
23479 SWIG_Python_SetConstant(d
, "STC_CONF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23480 SWIG_Python_SetConstant(d
, "STC_CONF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23481 SWIG_Python_SetConstant(d
, "STC_CONF_NUMBER",SWIG_From_int(static_cast< int >(2)));
23482 SWIG_Python_SetConstant(d
, "STC_CONF_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23483 SWIG_Python_SetConstant(d
, "STC_CONF_EXTENSION",SWIG_From_int(static_cast< int >(4)));
23484 SWIG_Python_SetConstant(d
, "STC_CONF_PARAMETER",SWIG_From_int(static_cast< int >(5)));
23485 SWIG_Python_SetConstant(d
, "STC_CONF_STRING",SWIG_From_int(static_cast< int >(6)));
23486 SWIG_Python_SetConstant(d
, "STC_CONF_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23487 SWIG_Python_SetConstant(d
, "STC_CONF_IP",SWIG_From_int(static_cast< int >(8)));
23488 SWIG_Python_SetConstant(d
, "STC_CONF_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23489 SWIG_Python_SetConstant(d
, "STC_AVE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23490 SWIG_Python_SetConstant(d
, "STC_AVE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23491 SWIG_Python_SetConstant(d
, "STC_AVE_NUMBER",SWIG_From_int(static_cast< int >(2)));
23492 SWIG_Python_SetConstant(d
, "STC_AVE_WORD",SWIG_From_int(static_cast< int >(3)));
23493 SWIG_Python_SetConstant(d
, "STC_AVE_STRING",SWIG_From_int(static_cast< int >(6)));
23494 SWIG_Python_SetConstant(d
, "STC_AVE_ENUM",SWIG_From_int(static_cast< int >(7)));
23495 SWIG_Python_SetConstant(d
, "STC_AVE_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23496 SWIG_Python_SetConstant(d
, "STC_AVE_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23497 SWIG_Python_SetConstant(d
, "STC_AVE_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23498 SWIG_Python_SetConstant(d
, "STC_AVE_WORD1",SWIG_From_int(static_cast< int >(11)));
23499 SWIG_Python_SetConstant(d
, "STC_AVE_WORD2",SWIG_From_int(static_cast< int >(12)));
23500 SWIG_Python_SetConstant(d
, "STC_AVE_WORD3",SWIG_From_int(static_cast< int >(13)));
23501 SWIG_Python_SetConstant(d
, "STC_AVE_WORD4",SWIG_From_int(static_cast< int >(14)));
23502 SWIG_Python_SetConstant(d
, "STC_AVE_WORD5",SWIG_From_int(static_cast< int >(15)));
23503 SWIG_Python_SetConstant(d
, "STC_AVE_WORD6",SWIG_From_int(static_cast< int >(16)));
23504 SWIG_Python_SetConstant(d
, "STC_ADA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23505 SWIG_Python_SetConstant(d
, "STC_ADA_WORD",SWIG_From_int(static_cast< int >(1)));
23506 SWIG_Python_SetConstant(d
, "STC_ADA_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23507 SWIG_Python_SetConstant(d
, "STC_ADA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23508 SWIG_Python_SetConstant(d
, "STC_ADA_DELIMITER",SWIG_From_int(static_cast< int >(4)));
23509 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23510 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTEREOL",SWIG_From_int(static_cast< int >(6)));
23511 SWIG_Python_SetConstant(d
, "STC_ADA_STRING",SWIG_From_int(static_cast< int >(7)));
23512 SWIG_Python_SetConstant(d
, "STC_ADA_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23513 SWIG_Python_SetConstant(d
, "STC_ADA_LABEL",SWIG_From_int(static_cast< int >(9)));
23514 SWIG_Python_SetConstant(d
, "STC_ADA_COMMENTLINE",SWIG_From_int(static_cast< int >(10)));
23515 SWIG_Python_SetConstant(d
, "STC_ADA_ILLEGAL",SWIG_From_int(static_cast< int >(11)));
23516 SWIG_Python_SetConstant(d
, "STC_BAAN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23517 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENT",SWIG_From_int(static_cast< int >(1)));
23518 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENTDOC",SWIG_From_int(static_cast< int >(2)));
23519 SWIG_Python_SetConstant(d
, "STC_BAAN_NUMBER",SWIG_From_int(static_cast< int >(3)));
23520 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD",SWIG_From_int(static_cast< int >(4)));
23521 SWIG_Python_SetConstant(d
, "STC_BAAN_STRING",SWIG_From_int(static_cast< int >(5)));
23522 SWIG_Python_SetConstant(d
, "STC_BAAN_PREPROCESSOR",SWIG_From_int(static_cast< int >(6)));
23523 SWIG_Python_SetConstant(d
, "STC_BAAN_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23524 SWIG_Python_SetConstant(d
, "STC_BAAN_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23525 SWIG_Python_SetConstant(d
, "STC_BAAN_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23526 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD2",SWIG_From_int(static_cast< int >(10)));
23527 SWIG_Python_SetConstant(d
, "STC_LISP_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23528 SWIG_Python_SetConstant(d
, "STC_LISP_COMMENT",SWIG_From_int(static_cast< int >(1)));
23529 SWIG_Python_SetConstant(d
, "STC_LISP_NUMBER",SWIG_From_int(static_cast< int >(2)));
23530 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23531 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD_KW",SWIG_From_int(static_cast< int >(4)));
23532 SWIG_Python_SetConstant(d
, "STC_LISP_SYMBOL",SWIG_From_int(static_cast< int >(5)));
23533 SWIG_Python_SetConstant(d
, "STC_LISP_STRING",SWIG_From_int(static_cast< int >(6)));
23534 SWIG_Python_SetConstant(d
, "STC_LISP_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23535 SWIG_Python_SetConstant(d
, "STC_LISP_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23536 SWIG_Python_SetConstant(d
, "STC_LISP_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23537 SWIG_Python_SetConstant(d
, "STC_LISP_SPECIAL",SWIG_From_int(static_cast< int >(11)));
23538 SWIG_Python_SetConstant(d
, "STC_LISP_MULTI_COMMENT",SWIG_From_int(static_cast< int >(12)));
23539 SWIG_Python_SetConstant(d
, "STC_EIFFEL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23540 SWIG_Python_SetConstant(d
, "STC_EIFFEL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23541 SWIG_Python_SetConstant(d
, "STC_EIFFEL_NUMBER",SWIG_From_int(static_cast< int >(2)));
23542 SWIG_Python_SetConstant(d
, "STC_EIFFEL_WORD",SWIG_From_int(static_cast< int >(3)));
23543 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRING",SWIG_From_int(static_cast< int >(4)));
23544 SWIG_Python_SetConstant(d
, "STC_EIFFEL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23545 SWIG_Python_SetConstant(d
, "STC_EIFFEL_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23546 SWIG_Python_SetConstant(d
, "STC_EIFFEL_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23547 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23548 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23549 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23550 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_TASK",SWIG_From_int(static_cast< int >(2)));
23551 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_SECTION",SWIG_From_int(static_cast< int >(3)));
23552 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23553 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_MODIFIER",SWIG_From_int(static_cast< int >(5)));
23554 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ASTERISK",SWIG_From_int(static_cast< int >(6)));
23555 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_NUMBER",SWIG_From_int(static_cast< int >(7)));
23556 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_STRING",SWIG_From_int(static_cast< int >(8)));
23557 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ENVIRONMENT",SWIG_From_int(static_cast< int >(9)));
23558 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_IDENTIFIER",SWIG_From_int(static_cast< int >(10)));
23559 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23560 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT",SWIG_From_int(static_cast< int >(1)));
23561 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT_ML",SWIG_From_int(static_cast< int >(2)));
23562 SWIG_Python_SetConstant(d
, "STC_FORTH_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23563 SWIG_Python_SetConstant(d
, "STC_FORTH_CONTROL",SWIG_From_int(static_cast< int >(4)));
23564 SWIG_Python_SetConstant(d
, "STC_FORTH_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23565 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFWORD",SWIG_From_int(static_cast< int >(6)));
23566 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD1",SWIG_From_int(static_cast< int >(7)));
23567 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD2",SWIG_From_int(static_cast< int >(8)));
23568 SWIG_Python_SetConstant(d
, "STC_FORTH_NUMBER",SWIG_From_int(static_cast< int >(9)));
23569 SWIG_Python_SetConstant(d
, "STC_FORTH_STRING",SWIG_From_int(static_cast< int >(10)));
23570 SWIG_Python_SetConstant(d
, "STC_FORTH_LOCALE",SWIG_From_int(static_cast< int >(11)));
23571 SWIG_Python_SetConstant(d
, "STC_MATLAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23572 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23573 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMAND",SWIG_From_int(static_cast< int >(2)));
23574 SWIG_Python_SetConstant(d
, "STC_MATLAB_NUMBER",SWIG_From_int(static_cast< int >(3)));
23575 SWIG_Python_SetConstant(d
, "STC_MATLAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23576 SWIG_Python_SetConstant(d
, "STC_MATLAB_STRING",SWIG_From_int(static_cast< int >(5)));
23577 SWIG_Python_SetConstant(d
, "STC_MATLAB_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23578 SWIG_Python_SetConstant(d
, "STC_MATLAB_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23579 SWIG_Python_SetConstant(d
, "STC_MATLAB_DOUBLEQUOTESTRING",SWIG_From_int(static_cast< int >(8)));
23580 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23581 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_WHITE",SWIG_From_int(static_cast< int >(1)));
23582 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23583 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PERSISTENT",SWIG_From_int(static_cast< int >(3)));
23584 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CSTYLE",SWIG_From_int(static_cast< int >(4)));
23585 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(5)));
23586 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_NUMBER",SWIG_From_int(static_cast< int >(6)));
23587 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRING",SWIG_From_int(static_cast< int >(7)));
23588 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CHARACTER",SWIG_From_int(static_cast< int >(8)));
23589 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23590 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_KEYWORD",SWIG_From_int(static_cast< int >(10)));
23591 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23592 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_IDENTIFIER",SWIG_From_int(static_cast< int >(12)));
23593 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_TRIPLE",SWIG_From_int(static_cast< int >(13)));
23594 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CLASSNAME",SWIG_From_int(static_cast< int >(14)));
23595 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PREPROCESSOR",SWIG_From_int(static_cast< int >(15)));
23596 SWIG_Python_SetConstant(d
, "STC_ASM_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23597 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENT",SWIG_From_int(static_cast< int >(1)));
23598 SWIG_Python_SetConstant(d
, "STC_ASM_NUMBER",SWIG_From_int(static_cast< int >(2)));
23599 SWIG_Python_SetConstant(d
, "STC_ASM_STRING",SWIG_From_int(static_cast< int >(3)));
23600 SWIG_Python_SetConstant(d
, "STC_ASM_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23601 SWIG_Python_SetConstant(d
, "STC_ASM_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23602 SWIG_Python_SetConstant(d
, "STC_ASM_CPUINSTRUCTION",SWIG_From_int(static_cast< int >(6)));
23603 SWIG_Python_SetConstant(d
, "STC_ASM_MATHINSTRUCTION",SWIG_From_int(static_cast< int >(7)));
23604 SWIG_Python_SetConstant(d
, "STC_ASM_REGISTER",SWIG_From_int(static_cast< int >(8)));
23605 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23606 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVEOPERAND",SWIG_From_int(static_cast< int >(10)));
23607 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENTBLOCK",SWIG_From_int(static_cast< int >(11)));
23608 SWIG_Python_SetConstant(d
, "STC_ASM_CHARACTER",SWIG_From_int(static_cast< int >(12)));
23609 SWIG_Python_SetConstant(d
, "STC_ASM_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23610 SWIG_Python_SetConstant(d
, "STC_ASM_EXTINSTRUCTION",SWIG_From_int(static_cast< int >(14)));
23611 SWIG_Python_SetConstant(d
, "STC_F_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23612 SWIG_Python_SetConstant(d
, "STC_F_COMMENT",SWIG_From_int(static_cast< int >(1)));
23613 SWIG_Python_SetConstant(d
, "STC_F_NUMBER",SWIG_From_int(static_cast< int >(2)));
23614 SWIG_Python_SetConstant(d
, "STC_F_STRING1",SWIG_From_int(static_cast< int >(3)));
23615 SWIG_Python_SetConstant(d
, "STC_F_STRING2",SWIG_From_int(static_cast< int >(4)));
23616 SWIG_Python_SetConstant(d
, "STC_F_STRINGEOL",SWIG_From_int(static_cast< int >(5)));
23617 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23618 SWIG_Python_SetConstant(d
, "STC_F_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23619 SWIG_Python_SetConstant(d
, "STC_F_WORD",SWIG_From_int(static_cast< int >(8)));
23620 SWIG_Python_SetConstant(d
, "STC_F_WORD2",SWIG_From_int(static_cast< int >(9)));
23621 SWIG_Python_SetConstant(d
, "STC_F_WORD3",SWIG_From_int(static_cast< int >(10)));
23622 SWIG_Python_SetConstant(d
, "STC_F_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23623 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR2",SWIG_From_int(static_cast< int >(12)));
23624 SWIG_Python_SetConstant(d
, "STC_F_LABEL",SWIG_From_int(static_cast< int >(13)));
23625 SWIG_Python_SetConstant(d
, "STC_F_CONTINUATION",SWIG_From_int(static_cast< int >(14)));
23626 SWIG_Python_SetConstant(d
, "STC_CSS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23627 SWIG_Python_SetConstant(d
, "STC_CSS_TAG",SWIG_From_int(static_cast< int >(1)));
23628 SWIG_Python_SetConstant(d
, "STC_CSS_CLASS",SWIG_From_int(static_cast< int >(2)));
23629 SWIG_Python_SetConstant(d
, "STC_CSS_PSEUDOCLASS",SWIG_From_int(static_cast< int >(3)));
23630 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_PSEUDOCLASS",SWIG_From_int(static_cast< int >(4)));
23631 SWIG_Python_SetConstant(d
, "STC_CSS_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23632 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23633 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23634 SWIG_Python_SetConstant(d
, "STC_CSS_VALUE",SWIG_From_int(static_cast< int >(8)));
23635 SWIG_Python_SetConstant(d
, "STC_CSS_COMMENT",SWIG_From_int(static_cast< int >(9)));
23636 SWIG_Python_SetConstant(d
, "STC_CSS_ID",SWIG_From_int(static_cast< int >(10)));
23637 SWIG_Python_SetConstant(d
, "STC_CSS_IMPORTANT",SWIG_From_int(static_cast< int >(11)));
23638 SWIG_Python_SetConstant(d
, "STC_CSS_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23639 SWIG_Python_SetConstant(d
, "STC_CSS_DOUBLESTRING",SWIG_From_int(static_cast< int >(13)));
23640 SWIG_Python_SetConstant(d
, "STC_CSS_SINGLESTRING",SWIG_From_int(static_cast< int >(14)));
23641 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER2",SWIG_From_int(static_cast< int >(15)));
23642 SWIG_Python_SetConstant(d
, "STC_CSS_ATTRIBUTE",SWIG_From_int(static_cast< int >(16)));
23643 SWIG_Python_SetConstant(d
, "STC_POV_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23644 SWIG_Python_SetConstant(d
, "STC_POV_COMMENT",SWIG_From_int(static_cast< int >(1)));
23645 SWIG_Python_SetConstant(d
, "STC_POV_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23646 SWIG_Python_SetConstant(d
, "STC_POV_NUMBER",SWIG_From_int(static_cast< int >(3)));
23647 SWIG_Python_SetConstant(d
, "STC_POV_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23648 SWIG_Python_SetConstant(d
, "STC_POV_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23649 SWIG_Python_SetConstant(d
, "STC_POV_STRING",SWIG_From_int(static_cast< int >(6)));
23650 SWIG_Python_SetConstant(d
, "STC_POV_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23651 SWIG_Python_SetConstant(d
, "STC_POV_DIRECTIVE",SWIG_From_int(static_cast< int >(8)));
23652 SWIG_Python_SetConstant(d
, "STC_POV_BADDIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23653 SWIG_Python_SetConstant(d
, "STC_POV_WORD2",SWIG_From_int(static_cast< int >(10)));
23654 SWIG_Python_SetConstant(d
, "STC_POV_WORD3",SWIG_From_int(static_cast< int >(11)));
23655 SWIG_Python_SetConstant(d
, "STC_POV_WORD4",SWIG_From_int(static_cast< int >(12)));
23656 SWIG_Python_SetConstant(d
, "STC_POV_WORD5",SWIG_From_int(static_cast< int >(13)));
23657 SWIG_Python_SetConstant(d
, "STC_POV_WORD6",SWIG_From_int(static_cast< int >(14)));
23658 SWIG_Python_SetConstant(d
, "STC_POV_WORD7",SWIG_From_int(static_cast< int >(15)));
23659 SWIG_Python_SetConstant(d
, "STC_POV_WORD8",SWIG_From_int(static_cast< int >(16)));
23660 SWIG_Python_SetConstant(d
, "STC_LOUT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23661 SWIG_Python_SetConstant(d
, "STC_LOUT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23662 SWIG_Python_SetConstant(d
, "STC_LOUT_NUMBER",SWIG_From_int(static_cast< int >(2)));
23663 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD",SWIG_From_int(static_cast< int >(3)));
23664 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD2",SWIG_From_int(static_cast< int >(4)));
23665 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD3",SWIG_From_int(static_cast< int >(5)));
23666 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD4",SWIG_From_int(static_cast< int >(6)));
23667 SWIG_Python_SetConstant(d
, "STC_LOUT_STRING",SWIG_From_int(static_cast< int >(7)));
23668 SWIG_Python_SetConstant(d
, "STC_LOUT_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23669 SWIG_Python_SetConstant(d
, "STC_LOUT_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23670 SWIG_Python_SetConstant(d
, "STC_LOUT_STRINGEOL",SWIG_From_int(static_cast< int >(10)));
23671 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23672 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23673 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23674 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23675 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_NUMBER",SWIG_From_int(static_cast< int >(4)));
23676 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD",SWIG_From_int(static_cast< int >(5)));
23677 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_STRING",SWIG_From_int(static_cast< int >(6)));
23678 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23679 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23680 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_BRACE",SWIG_From_int(static_cast< int >(9)));
23681 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD2",SWIG_From_int(static_cast< int >(10)));
23682 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD3",SWIG_From_int(static_cast< int >(11)));
23683 SWIG_Python_SetConstant(d
, "STC_PS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23684 SWIG_Python_SetConstant(d
, "STC_PS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23685 SWIG_Python_SetConstant(d
, "STC_PS_DSC_COMMENT",SWIG_From_int(static_cast< int >(2)));
23686 SWIG_Python_SetConstant(d
, "STC_PS_DSC_VALUE",SWIG_From_int(static_cast< int >(3)));
23687 SWIG_Python_SetConstant(d
, "STC_PS_NUMBER",SWIG_From_int(static_cast< int >(4)));
23688 SWIG_Python_SetConstant(d
, "STC_PS_NAME",SWIG_From_int(static_cast< int >(5)));
23689 SWIG_Python_SetConstant(d
, "STC_PS_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23690 SWIG_Python_SetConstant(d
, "STC_PS_LITERAL",SWIG_From_int(static_cast< int >(7)));
23691 SWIG_Python_SetConstant(d
, "STC_PS_IMMEVAL",SWIG_From_int(static_cast< int >(8)));
23692 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_ARRAY",SWIG_From_int(static_cast< int >(9)));
23693 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_DICT",SWIG_From_int(static_cast< int >(10)));
23694 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_PROC",SWIG_From_int(static_cast< int >(11)));
23695 SWIG_Python_SetConstant(d
, "STC_PS_TEXT",SWIG_From_int(static_cast< int >(12)));
23696 SWIG_Python_SetConstant(d
, "STC_PS_HEXSTRING",SWIG_From_int(static_cast< int >(13)));
23697 SWIG_Python_SetConstant(d
, "STC_PS_BASE85STRING",SWIG_From_int(static_cast< int >(14)));
23698 SWIG_Python_SetConstant(d
, "STC_PS_BADSTRINGCHAR",SWIG_From_int(static_cast< int >(15)));
23699 SWIG_Python_SetConstant(d
, "STC_NSIS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23700 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23701 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGDQ",SWIG_From_int(static_cast< int >(2)));
23702 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGLQ",SWIG_From_int(static_cast< int >(3)));
23703 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGRQ",SWIG_From_int(static_cast< int >(4)));
23704 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTION",SWIG_From_int(static_cast< int >(5)));
23705 SWIG_Python_SetConstant(d
, "STC_NSIS_VARIABLE",SWIG_From_int(static_cast< int >(6)));
23706 SWIG_Python_SetConstant(d
, "STC_NSIS_LABEL",SWIG_From_int(static_cast< int >(7)));
23707 SWIG_Python_SetConstant(d
, "STC_NSIS_USERDEFINED",SWIG_From_int(static_cast< int >(8)));
23708 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONDEF",SWIG_From_int(static_cast< int >(9)));
23709 SWIG_Python_SetConstant(d
, "STC_NSIS_SUBSECTIONDEF",SWIG_From_int(static_cast< int >(10)));
23710 SWIG_Python_SetConstant(d
, "STC_NSIS_IFDEFINEDEF",SWIG_From_int(static_cast< int >(11)));
23711 SWIG_Python_SetConstant(d
, "STC_NSIS_MACRODEF",SWIG_From_int(static_cast< int >(12)));
23712 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGVAR",SWIG_From_int(static_cast< int >(13)));
23713 SWIG_Python_SetConstant(d
, "STC_NSIS_NUMBER",SWIG_From_int(static_cast< int >(14)));
23714 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONGROUP",SWIG_From_int(static_cast< int >(15)));
23715 SWIG_Python_SetConstant(d
, "STC_NSIS_PAGEEX",SWIG_From_int(static_cast< int >(16)));
23716 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTIONDEF",SWIG_From_int(static_cast< int >(17)));
23717 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENTBOX",SWIG_From_int(static_cast< int >(18)));
23718 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LEADWS",SWIG_From_int(static_cast< int >(0)));
23719 SWIG_Python_SetConstant(d
, "STC_MMIXAL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23720 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LABEL",SWIG_From_int(static_cast< int >(2)));
23721 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE",SWIG_From_int(static_cast< int >(3)));
23722 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_PRE",SWIG_From_int(static_cast< int >(4)));
23723 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_VALID",SWIG_From_int(static_cast< int >(5)));
23724 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_UNKNOWN",SWIG_From_int(static_cast< int >(6)));
23725 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_POST",SWIG_From_int(static_cast< int >(7)));
23726 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERANDS",SWIG_From_int(static_cast< int >(8)));
23727 SWIG_Python_SetConstant(d
, "STC_MMIXAL_NUMBER",SWIG_From_int(static_cast< int >(9)));
23728 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REF",SWIG_From_int(static_cast< int >(10)));
23729 SWIG_Python_SetConstant(d
, "STC_MMIXAL_CHAR",SWIG_From_int(static_cast< int >(11)));
23730 SWIG_Python_SetConstant(d
, "STC_MMIXAL_STRING",SWIG_From_int(static_cast< int >(12)));
23731 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REGISTER",SWIG_From_int(static_cast< int >(13)));
23732 SWIG_Python_SetConstant(d
, "STC_MMIXAL_HEX",SWIG_From_int(static_cast< int >(14)));
23733 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERATOR",SWIG_From_int(static_cast< int >(15)));
23734 SWIG_Python_SetConstant(d
, "STC_MMIXAL_SYMBOL",SWIG_From_int(static_cast< int >(16)));
23735 SWIG_Python_SetConstant(d
, "STC_MMIXAL_INCLUDE",SWIG_From_int(static_cast< int >(17)));
23736 SWIG_Python_SetConstant(d
, "STC_CLW_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23737 SWIG_Python_SetConstant(d
, "STC_CLW_LABEL",SWIG_From_int(static_cast< int >(1)));
23738 SWIG_Python_SetConstant(d
, "STC_CLW_COMMENT",SWIG_From_int(static_cast< int >(2)));
23739 SWIG_Python_SetConstant(d
, "STC_CLW_STRING",SWIG_From_int(static_cast< int >(3)));
23740 SWIG_Python_SetConstant(d
, "STC_CLW_USER_IDENTIFIER",SWIG_From_int(static_cast< int >(4)));
23741 SWIG_Python_SetConstant(d
, "STC_CLW_INTEGER_CONSTANT",SWIG_From_int(static_cast< int >(5)));
23742 SWIG_Python_SetConstant(d
, "STC_CLW_REAL_CONSTANT",SWIG_From_int(static_cast< int >(6)));
23743 SWIG_Python_SetConstant(d
, "STC_CLW_PICTURE_STRING",SWIG_From_int(static_cast< int >(7)));
23744 SWIG_Python_SetConstant(d
, "STC_CLW_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23745 SWIG_Python_SetConstant(d
, "STC_CLW_COMPILER_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23746 SWIG_Python_SetConstant(d
, "STC_CLW_RUNTIME_EXPRESSIONS",SWIG_From_int(static_cast< int >(10)));
23747 SWIG_Python_SetConstant(d
, "STC_CLW_BUILTIN_PROCEDURES_FUNCTION",SWIG_From_int(static_cast< int >(11)));
23748 SWIG_Python_SetConstant(d
, "STC_CLW_STRUCTURE_DATA_TYPE",SWIG_From_int(static_cast< int >(12)));
23749 SWIG_Python_SetConstant(d
, "STC_CLW_ATTRIBUTE",SWIG_From_int(static_cast< int >(13)));
23750 SWIG_Python_SetConstant(d
, "STC_CLW_STANDARD_EQUATE",SWIG_From_int(static_cast< int >(14)));
23751 SWIG_Python_SetConstant(d
, "STC_CLW_ERROR",SWIG_From_int(static_cast< int >(15)));
23752 SWIG_Python_SetConstant(d
, "STC_CLW_DEPRECATED",SWIG_From_int(static_cast< int >(16)));
23753 SWIG_Python_SetConstant(d
, "STC_LOT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23754 SWIG_Python_SetConstant(d
, "STC_LOT_HEADER",SWIG_From_int(static_cast< int >(1)));
23755 SWIG_Python_SetConstant(d
, "STC_LOT_BREAK",SWIG_From_int(static_cast< int >(2)));
23756 SWIG_Python_SetConstant(d
, "STC_LOT_SET",SWIG_From_int(static_cast< int >(3)));
23757 SWIG_Python_SetConstant(d
, "STC_LOT_PASS",SWIG_From_int(static_cast< int >(4)));
23758 SWIG_Python_SetConstant(d
, "STC_LOT_FAIL",SWIG_From_int(static_cast< int >(5)));
23759 SWIG_Python_SetConstant(d
, "STC_LOT_ABORT",SWIG_From_int(static_cast< int >(6)));
23760 SWIG_Python_SetConstant(d
, "STC_YAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23761 SWIG_Python_SetConstant(d
, "STC_YAML_COMMENT",SWIG_From_int(static_cast< int >(1)));
23762 SWIG_Python_SetConstant(d
, "STC_YAML_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23763 SWIG_Python_SetConstant(d
, "STC_YAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23764 SWIG_Python_SetConstant(d
, "STC_YAML_NUMBER",SWIG_From_int(static_cast< int >(4)));
23765 SWIG_Python_SetConstant(d
, "STC_YAML_REFERENCE",SWIG_From_int(static_cast< int >(5)));
23766 SWIG_Python_SetConstant(d
, "STC_YAML_DOCUMENT",SWIG_From_int(static_cast< int >(6)));
23767 SWIG_Python_SetConstant(d
, "STC_YAML_TEXT",SWIG_From_int(static_cast< int >(7)));
23768 SWIG_Python_SetConstant(d
, "STC_YAML_ERROR",SWIG_From_int(static_cast< int >(8)));
23769 SWIG_Python_SetConstant(d
, "STC_TEX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23770 SWIG_Python_SetConstant(d
, "STC_TEX_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23771 SWIG_Python_SetConstant(d
, "STC_TEX_GROUP",SWIG_From_int(static_cast< int >(2)));
23772 SWIG_Python_SetConstant(d
, "STC_TEX_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23773 SWIG_Python_SetConstant(d
, "STC_TEX_COMMAND",SWIG_From_int(static_cast< int >(4)));
23774 SWIG_Python_SetConstant(d
, "STC_TEX_TEXT",SWIG_From_int(static_cast< int >(5)));
23775 SWIG_Python_SetConstant(d
, "STC_METAPOST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23776 SWIG_Python_SetConstant(d
, "STC_METAPOST_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23777 SWIG_Python_SetConstant(d
, "STC_METAPOST_GROUP",SWIG_From_int(static_cast< int >(2)));
23778 SWIG_Python_SetConstant(d
, "STC_METAPOST_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23779 SWIG_Python_SetConstant(d
, "STC_METAPOST_COMMAND",SWIG_From_int(static_cast< int >(4)));
23780 SWIG_Python_SetConstant(d
, "STC_METAPOST_TEXT",SWIG_From_int(static_cast< int >(5)));
23781 SWIG_Python_SetConstant(d
, "STC_METAPOST_EXTRA",SWIG_From_int(static_cast< int >(6)));
23782 SWIG_Python_SetConstant(d
, "STC_ERLANG_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23783 SWIG_Python_SetConstant(d
, "STC_ERLANG_COMMENT",SWIG_From_int(static_cast< int >(1)));
23784 SWIG_Python_SetConstant(d
, "STC_ERLANG_VARIABLE",SWIG_From_int(static_cast< int >(2)));
23785 SWIG_Python_SetConstant(d
, "STC_ERLANG_NUMBER",SWIG_From_int(static_cast< int >(3)));
23786 SWIG_Python_SetConstant(d
, "STC_ERLANG_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23787 SWIG_Python_SetConstant(d
, "STC_ERLANG_STRING",SWIG_From_int(static_cast< int >(5)));
23788 SWIG_Python_SetConstant(d
, "STC_ERLANG_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23789 SWIG_Python_SetConstant(d
, "STC_ERLANG_ATOM",SWIG_From_int(static_cast< int >(7)));
23790 SWIG_Python_SetConstant(d
, "STC_ERLANG_FUNCTION_NAME",SWIG_From_int(static_cast< int >(8)));
23791 SWIG_Python_SetConstant(d
, "STC_ERLANG_CHARACTER",SWIG_From_int(static_cast< int >(9)));
23792 SWIG_Python_SetConstant(d
, "STC_ERLANG_MACRO",SWIG_From_int(static_cast< int >(10)));
23793 SWIG_Python_SetConstant(d
, "STC_ERLANG_RECORD",SWIG_From_int(static_cast< int >(11)));
23794 SWIG_Python_SetConstant(d
, "STC_ERLANG_SEPARATOR",SWIG_From_int(static_cast< int >(12)));
23795 SWIG_Python_SetConstant(d
, "STC_ERLANG_NODE_NAME",SWIG_From_int(static_cast< int >(13)));
23796 SWIG_Python_SetConstant(d
, "STC_ERLANG_UNKNOWN",SWIG_From_int(static_cast< int >(31)));
23797 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23798 SWIG_Python_SetConstant(d
, "STC_MSSQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23799 SWIG_Python_SetConstant(d
, "STC_MSSQL_LINE_COMMENT",SWIG_From_int(static_cast< int >(2)));
23800 SWIG_Python_SetConstant(d
, "STC_MSSQL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23801 SWIG_Python_SetConstant(d
, "STC_MSSQL_STRING",SWIG_From_int(static_cast< int >(4)));
23802 SWIG_Python_SetConstant(d
, "STC_MSSQL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23803 SWIG_Python_SetConstant(d
, "STC_MSSQL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23804 SWIG_Python_SetConstant(d
, "STC_MSSQL_VARIABLE",SWIG_From_int(static_cast< int >(7)));
23805 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME",SWIG_From_int(static_cast< int >(8)));
23806 SWIG_Python_SetConstant(d
, "STC_MSSQL_STATEMENT",SWIG_From_int(static_cast< int >(9)));
23807 SWIG_Python_SetConstant(d
, "STC_MSSQL_DATATYPE",SWIG_From_int(static_cast< int >(10)));
23808 SWIG_Python_SetConstant(d
, "STC_MSSQL_SYSTABLE",SWIG_From_int(static_cast< int >(11)));
23809 SWIG_Python_SetConstant(d
, "STC_MSSQL_GLOBAL_VARIABLE",SWIG_From_int(static_cast< int >(12)));
23810 SWIG_Python_SetConstant(d
, "STC_MSSQL_FUNCTION",SWIG_From_int(static_cast< int >(13)));
23811 SWIG_Python_SetConstant(d
, "STC_MSSQL_STORED_PROCEDURE",SWIG_From_int(static_cast< int >(14)));
23812 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT_PREF_DATATYPE",SWIG_From_int(static_cast< int >(15)));
23813 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME_2",SWIG_From_int(static_cast< int >(16)));
23814 SWIG_Python_SetConstant(d
, "STC_V_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23815 SWIG_Python_SetConstant(d
, "STC_V_COMMENT",SWIG_From_int(static_cast< int >(1)));
23816 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23817 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23818 SWIG_Python_SetConstant(d
, "STC_V_NUMBER",SWIG_From_int(static_cast< int >(4)));
23819 SWIG_Python_SetConstant(d
, "STC_V_WORD",SWIG_From_int(static_cast< int >(5)));
23820 SWIG_Python_SetConstant(d
, "STC_V_STRING",SWIG_From_int(static_cast< int >(6)));
23821 SWIG_Python_SetConstant(d
, "STC_V_WORD2",SWIG_From_int(static_cast< int >(7)));
23822 SWIG_Python_SetConstant(d
, "STC_V_WORD3",SWIG_From_int(static_cast< int >(8)));
23823 SWIG_Python_SetConstant(d
, "STC_V_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23824 SWIG_Python_SetConstant(d
, "STC_V_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23825 SWIG_Python_SetConstant(d
, "STC_V_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23826 SWIG_Python_SetConstant(d
, "STC_V_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23827 SWIG_Python_SetConstant(d
, "STC_V_USER",SWIG_From_int(static_cast< int >(19)));
23828 SWIG_Python_SetConstant(d
, "STC_KIX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23829 SWIG_Python_SetConstant(d
, "STC_KIX_COMMENT",SWIG_From_int(static_cast< int >(1)));
23830 SWIG_Python_SetConstant(d
, "STC_KIX_STRING1",SWIG_From_int(static_cast< int >(2)));
23831 SWIG_Python_SetConstant(d
, "STC_KIX_STRING2",SWIG_From_int(static_cast< int >(3)));
23832 SWIG_Python_SetConstant(d
, "STC_KIX_NUMBER",SWIG_From_int(static_cast< int >(4)));
23833 SWIG_Python_SetConstant(d
, "STC_KIX_VAR",SWIG_From_int(static_cast< int >(5)));
23834 SWIG_Python_SetConstant(d
, "STC_KIX_MACRO",SWIG_From_int(static_cast< int >(6)));
23835 SWIG_Python_SetConstant(d
, "STC_KIX_KEYWORD",SWIG_From_int(static_cast< int >(7)));
23836 SWIG_Python_SetConstant(d
, "STC_KIX_FUNCTIONS",SWIG_From_int(static_cast< int >(8)));
23837 SWIG_Python_SetConstant(d
, "STC_KIX_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23838 SWIG_Python_SetConstant(d
, "STC_KIX_IDENTIFIER",SWIG_From_int(static_cast< int >(31)));
23839 SWIG_Python_SetConstant(d
, "STC_GC_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23840 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23841 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23842 SWIG_Python_SetConstant(d
, "STC_GC_GLOBAL",SWIG_From_int(static_cast< int >(3)));
23843 SWIG_Python_SetConstant(d
, "STC_GC_EVENT",SWIG_From_int(static_cast< int >(4)));
23844 SWIG_Python_SetConstant(d
, "STC_GC_ATTRIBUTE",SWIG_From_int(static_cast< int >(5)));
23845 SWIG_Python_SetConstant(d
, "STC_GC_CONTROL",SWIG_From_int(static_cast< int >(6)));
23846 SWIG_Python_SetConstant(d
, "STC_GC_COMMAND",SWIG_From_int(static_cast< int >(7)));
23847 SWIG_Python_SetConstant(d
, "STC_GC_STRING",SWIG_From_int(static_cast< int >(8)));
23848 SWIG_Python_SetConstant(d
, "STC_GC_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23849 SWIG_Python_SetConstant(d
, "STC_SN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23850 SWIG_Python_SetConstant(d
, "STC_SN_CODE",SWIG_From_int(static_cast< int >(1)));
23851 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23852 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23853 SWIG_Python_SetConstant(d
, "STC_SN_NUMBER",SWIG_From_int(static_cast< int >(4)));
23854 SWIG_Python_SetConstant(d
, "STC_SN_WORD",SWIG_From_int(static_cast< int >(5)));
23855 SWIG_Python_SetConstant(d
, "STC_SN_STRING",SWIG_From_int(static_cast< int >(6)));
23856 SWIG_Python_SetConstant(d
, "STC_SN_WORD2",SWIG_From_int(static_cast< int >(7)));
23857 SWIG_Python_SetConstant(d
, "STC_SN_WORD3",SWIG_From_int(static_cast< int >(8)));
23858 SWIG_Python_SetConstant(d
, "STC_SN_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23859 SWIG_Python_SetConstant(d
, "STC_SN_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23860 SWIG_Python_SetConstant(d
, "STC_SN_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23861 SWIG_Python_SetConstant(d
, "STC_SN_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23862 SWIG_Python_SetConstant(d
, "STC_SN_REGEXTAG",SWIG_From_int(static_cast< int >(13)));
23863 SWIG_Python_SetConstant(d
, "STC_SN_SIGNAL",SWIG_From_int(static_cast< int >(14)));
23864 SWIG_Python_SetConstant(d
, "STC_SN_USER",SWIG_From_int(static_cast< int >(19)));
23865 SWIG_Python_SetConstant(d
, "STC_AU3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23866 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENT",SWIG_From_int(static_cast< int >(1)));
23867 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23868 SWIG_Python_SetConstant(d
, "STC_AU3_NUMBER",SWIG_From_int(static_cast< int >(3)));
23869 SWIG_Python_SetConstant(d
, "STC_AU3_FUNCTION",SWIG_From_int(static_cast< int >(4)));
23870 SWIG_Python_SetConstant(d
, "STC_AU3_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23871 SWIG_Python_SetConstant(d
, "STC_AU3_MACRO",SWIG_From_int(static_cast< int >(6)));
23872 SWIG_Python_SetConstant(d
, "STC_AU3_STRING",SWIG_From_int(static_cast< int >(7)));
23873 SWIG_Python_SetConstant(d
, "STC_AU3_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23874 SWIG_Python_SetConstant(d
, "STC_AU3_VARIABLE",SWIG_From_int(static_cast< int >(9)));
23875 SWIG_Python_SetConstant(d
, "STC_AU3_SENT",SWIG_From_int(static_cast< int >(10)));
23876 SWIG_Python_SetConstant(d
, "STC_AU3_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23877 SWIG_Python_SetConstant(d
, "STC_AU3_SPECIAL",SWIG_From_int(static_cast< int >(12)));
23878 SWIG_Python_SetConstant(d
, "STC_AU3_EXPAND",SWIG_From_int(static_cast< int >(13)));
23879 SWIG_Python_SetConstant(d
, "STC_AU3_COMOBJ",SWIG_From_int(static_cast< int >(14)));
23880 SWIG_Python_SetConstant(d
, "STC_APDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23881 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23882 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23883 SWIG_Python_SetConstant(d
, "STC_APDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23884 SWIG_Python_SetConstant(d
, "STC_APDL_STRING",SWIG_From_int(static_cast< int >(4)));
23885 SWIG_Python_SetConstant(d
, "STC_APDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23886 SWIG_Python_SetConstant(d
, "STC_APDL_WORD",SWIG_From_int(static_cast< int >(6)));
23887 SWIG_Python_SetConstant(d
, "STC_APDL_PROCESSOR",SWIG_From_int(static_cast< int >(7)));
23888 SWIG_Python_SetConstant(d
, "STC_APDL_COMMAND",SWIG_From_int(static_cast< int >(8)));
23889 SWIG_Python_SetConstant(d
, "STC_APDL_SLASHCOMMAND",SWIG_From_int(static_cast< int >(9)));
23890 SWIG_Python_SetConstant(d
, "STC_APDL_STARCOMMAND",SWIG_From_int(static_cast< int >(10)));
23891 SWIG_Python_SetConstant(d
, "STC_APDL_ARGUMENT",SWIG_From_int(static_cast< int >(11)));
23892 SWIG_Python_SetConstant(d
, "STC_APDL_FUNCTION",SWIG_From_int(static_cast< int >(12)));
23893 SWIG_Python_SetConstant(d
, "STC_SH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23894 SWIG_Python_SetConstant(d
, "STC_SH_ERROR",SWIG_From_int(static_cast< int >(1)));
23895 SWIG_Python_SetConstant(d
, "STC_SH_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23896 SWIG_Python_SetConstant(d
, "STC_SH_NUMBER",SWIG_From_int(static_cast< int >(3)));
23897 SWIG_Python_SetConstant(d
, "STC_SH_WORD",SWIG_From_int(static_cast< int >(4)));
23898 SWIG_Python_SetConstant(d
, "STC_SH_STRING",SWIG_From_int(static_cast< int >(5)));
23899 SWIG_Python_SetConstant(d
, "STC_SH_CHARACTER",SWIG_From_int(static_cast< int >(6)));
23900 SWIG_Python_SetConstant(d
, "STC_SH_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23901 SWIG_Python_SetConstant(d
, "STC_SH_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23902 SWIG_Python_SetConstant(d
, "STC_SH_SCALAR",SWIG_From_int(static_cast< int >(9)));
23903 SWIG_Python_SetConstant(d
, "STC_SH_PARAM",SWIG_From_int(static_cast< int >(10)));
23904 SWIG_Python_SetConstant(d
, "STC_SH_BACKTICKS",SWIG_From_int(static_cast< int >(11)));
23905 SWIG_Python_SetConstant(d
, "STC_SH_HERE_DELIM",SWIG_From_int(static_cast< int >(12)));
23906 SWIG_Python_SetConstant(d
, "STC_SH_HERE_Q",SWIG_From_int(static_cast< int >(13)));
23907 SWIG_Python_SetConstant(d
, "STC_ASN1_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23908 SWIG_Python_SetConstant(d
, "STC_ASN1_COMMENT",SWIG_From_int(static_cast< int >(1)));
23909 SWIG_Python_SetConstant(d
, "STC_ASN1_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23910 SWIG_Python_SetConstant(d
, "STC_ASN1_STRING",SWIG_From_int(static_cast< int >(3)));
23911 SWIG_Python_SetConstant(d
, "STC_ASN1_OID",SWIG_From_int(static_cast< int >(4)));
23912 SWIG_Python_SetConstant(d
, "STC_ASN1_SCALAR",SWIG_From_int(static_cast< int >(5)));
23913 SWIG_Python_SetConstant(d
, "STC_ASN1_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23914 SWIG_Python_SetConstant(d
, "STC_ASN1_ATTRIBUTE",SWIG_From_int(static_cast< int >(7)));
23915 SWIG_Python_SetConstant(d
, "STC_ASN1_DESCRIPTOR",SWIG_From_int(static_cast< int >(8)));
23916 SWIG_Python_SetConstant(d
, "STC_ASN1_TYPE",SWIG_From_int(static_cast< int >(9)));
23917 SWIG_Python_SetConstant(d
, "STC_ASN1_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23918 SWIG_Python_SetConstant(d
, "STC_VHDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23919 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23920 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(2)));
23921 SWIG_Python_SetConstant(d
, "STC_VHDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23922 SWIG_Python_SetConstant(d
, "STC_VHDL_STRING",SWIG_From_int(static_cast< int >(4)));
23923 SWIG_Python_SetConstant(d
, "STC_VHDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23924 SWIG_Python_SetConstant(d
, "STC_VHDL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23925 SWIG_Python_SetConstant(d
, "STC_VHDL_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23926 SWIG_Python_SetConstant(d
, "STC_VHDL_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23927 SWIG_Python_SetConstant(d
, "STC_VHDL_STDOPERATOR",SWIG_From_int(static_cast< int >(9)));
23928 SWIG_Python_SetConstant(d
, "STC_VHDL_ATTRIBUTE",SWIG_From_int(static_cast< int >(10)));
23929 SWIG_Python_SetConstant(d
, "STC_VHDL_STDFUNCTION",SWIG_From_int(static_cast< int >(11)));
23930 SWIG_Python_SetConstant(d
, "STC_VHDL_STDPACKAGE",SWIG_From_int(static_cast< int >(12)));
23931 SWIG_Python_SetConstant(d
, "STC_VHDL_STDTYPE",SWIG_From_int(static_cast< int >(13)));
23932 SWIG_Python_SetConstant(d
, "STC_VHDL_USERWORD",SWIG_From_int(static_cast< int >(14)));
23933 SWIG_Python_SetConstant(d
, "STC_CAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23934 SWIG_Python_SetConstant(d
, "STC_CAML_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23935 SWIG_Python_SetConstant(d
, "STC_CAML_TAGNAME",SWIG_From_int(static_cast< int >(2)));
23936 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23937 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD2",SWIG_From_int(static_cast< int >(4)));
23938 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD3",SWIG_From_int(static_cast< int >(5)));
23939 SWIG_Python_SetConstant(d
, "STC_CAML_LINENUM",SWIG_From_int(static_cast< int >(6)));
23940 SWIG_Python_SetConstant(d
, "STC_CAML_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23941 SWIG_Python_SetConstant(d
, "STC_CAML_NUMBER",SWIG_From_int(static_cast< int >(8)));
23942 SWIG_Python_SetConstant(d
, "STC_CAML_CHAR",SWIG_From_int(static_cast< int >(9)));
23943 SWIG_Python_SetConstant(d
, "STC_CAML_STRING",SWIG_From_int(static_cast< int >(11)));
23944 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT",SWIG_From_int(static_cast< int >(12)));
23945 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT1",SWIG_From_int(static_cast< int >(13)));
23946 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT2",SWIG_From_int(static_cast< int >(14)));
23947 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT3",SWIG_From_int(static_cast< int >(15)));
23948 SWIG_Python_SetConstant(d
, "STC_HA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23949 SWIG_Python_SetConstant(d
, "STC_HA_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23950 SWIG_Python_SetConstant(d
, "STC_HA_KEYWORD",SWIG_From_int(static_cast< int >(2)));
23951 SWIG_Python_SetConstant(d
, "STC_HA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23952 SWIG_Python_SetConstant(d
, "STC_HA_STRING",SWIG_From_int(static_cast< int >(4)));
23953 SWIG_Python_SetConstant(d
, "STC_HA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23954 SWIG_Python_SetConstant(d
, "STC_HA_CLASS",SWIG_From_int(static_cast< int >(6)));
23955 SWIG_Python_SetConstant(d
, "STC_HA_MODULE",SWIG_From_int(static_cast< int >(7)));
23956 SWIG_Python_SetConstant(d
, "STC_HA_CAPITAL",SWIG_From_int(static_cast< int >(8)));
23957 SWIG_Python_SetConstant(d
, "STC_HA_DATA",SWIG_From_int(static_cast< int >(9)));
23958 SWIG_Python_SetConstant(d
, "STC_HA_IMPORT",SWIG_From_int(static_cast< int >(10)));
23959 SWIG_Python_SetConstant(d
, "STC_HA_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23960 SWIG_Python_SetConstant(d
, "STC_HA_INSTANCE",SWIG_From_int(static_cast< int >(12)));
23961 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTLINE",SWIG_From_int(static_cast< int >(13)));
23962 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK",SWIG_From_int(static_cast< int >(14)));
23963 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK2",SWIG_From_int(static_cast< int >(15)));
23964 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK3",SWIG_From_int(static_cast< int >(16)));
23965 SWIG_Python_SetConstant(d
, "STC_T3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23966 SWIG_Python_SetConstant(d
, "STC_T3_X_DEFAULT",SWIG_From_int(static_cast< int >(1)));
23967 SWIG_Python_SetConstant(d
, "STC_T3_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23968 SWIG_Python_SetConstant(d
, "STC_T3_BLOCK_COMMENT",SWIG_From_int(static_cast< int >(3)));
23969 SWIG_Python_SetConstant(d
, "STC_T3_LINE_COMMENT",SWIG_From_int(static_cast< int >(4)));
23970 SWIG_Python_SetConstant(d
, "STC_T3_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23971 SWIG_Python_SetConstant(d
, "STC_T3_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23972 SWIG_Python_SetConstant(d
, "STC_T3_NUMBER",SWIG_From_int(static_cast< int >(7)));
23973 SWIG_Python_SetConstant(d
, "STC_T3_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23974 SWIG_Python_SetConstant(d
, "STC_T3_S_STRING",SWIG_From_int(static_cast< int >(9)));
23975 SWIG_Python_SetConstant(d
, "STC_T3_D_STRING",SWIG_From_int(static_cast< int >(10)));
23976 SWIG_Python_SetConstant(d
, "STC_T3_X_STRING",SWIG_From_int(static_cast< int >(11)));
23977 SWIG_Python_SetConstant(d
, "STC_T3_LIB_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23978 SWIG_Python_SetConstant(d
, "STC_T3_MSG_PARAM",SWIG_From_int(static_cast< int >(13)));
23979 SWIG_Python_SetConstant(d
, "STC_T3_HTML_TAG",SWIG_From_int(static_cast< int >(14)));
23980 SWIG_Python_SetConstant(d
, "STC_T3_HTML_DEFAULT",SWIG_From_int(static_cast< int >(15)));
23981 SWIG_Python_SetConstant(d
, "STC_T3_HTML_STRING",SWIG_From_int(static_cast< int >(16)));
23982 SWIG_Python_SetConstant(d
, "STC_T3_USER1",SWIG_From_int(static_cast< int >(17)));
23983 SWIG_Python_SetConstant(d
, "STC_T3_USER2",SWIG_From_int(static_cast< int >(18)));
23984 SWIG_Python_SetConstant(d
, "STC_T3_USER3",SWIG_From_int(static_cast< int >(19)));
23985 SWIG_Python_SetConstant(d
, "STC_REBOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23986 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23987 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23988 SWIG_Python_SetConstant(d
, "STC_REBOL_PREFACE",SWIG_From_int(static_cast< int >(3)));
23989 SWIG_Python_SetConstant(d
, "STC_REBOL_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23990 SWIG_Python_SetConstant(d
, "STC_REBOL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23991 SWIG_Python_SetConstant(d
, "STC_REBOL_QUOTEDSTRING",SWIG_From_int(static_cast< int >(6)));
23992 SWIG_Python_SetConstant(d
, "STC_REBOL_BRACEDSTRING",SWIG_From_int(static_cast< int >(7)));
23993 SWIG_Python_SetConstant(d
, "STC_REBOL_NUMBER",SWIG_From_int(static_cast< int >(8)));
23994 SWIG_Python_SetConstant(d
, "STC_REBOL_PAIR",SWIG_From_int(static_cast< int >(9)));
23995 SWIG_Python_SetConstant(d
, "STC_REBOL_TUPLE",SWIG_From_int(static_cast< int >(10)));
23996 SWIG_Python_SetConstant(d
, "STC_REBOL_BINARY",SWIG_From_int(static_cast< int >(11)));
23997 SWIG_Python_SetConstant(d
, "STC_REBOL_MONEY",SWIG_From_int(static_cast< int >(12)));
23998 SWIG_Python_SetConstant(d
, "STC_REBOL_ISSUE",SWIG_From_int(static_cast< int >(13)));
23999 SWIG_Python_SetConstant(d
, "STC_REBOL_TAG",SWIG_From_int(static_cast< int >(14)));
24000 SWIG_Python_SetConstant(d
, "STC_REBOL_FILE",SWIG_From_int(static_cast< int >(15)));
24001 SWIG_Python_SetConstant(d
, "STC_REBOL_EMAIL",SWIG_From_int(static_cast< int >(16)));
24002 SWIG_Python_SetConstant(d
, "STC_REBOL_URL",SWIG_From_int(static_cast< int >(17)));
24003 SWIG_Python_SetConstant(d
, "STC_REBOL_DATE",SWIG_From_int(static_cast< int >(18)));
24004 SWIG_Python_SetConstant(d
, "STC_REBOL_TIME",SWIG_From_int(static_cast< int >(19)));
24005 SWIG_Python_SetConstant(d
, "STC_REBOL_IDENTIFIER",SWIG_From_int(static_cast< int >(20)));
24006 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD",SWIG_From_int(static_cast< int >(21)));
24007 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD2",SWIG_From_int(static_cast< int >(22)));
24008 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD3",SWIG_From_int(static_cast< int >(23)));
24009 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD4",SWIG_From_int(static_cast< int >(24)));
24010 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD5",SWIG_From_int(static_cast< int >(25)));
24011 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD6",SWIG_From_int(static_cast< int >(26)));
24012 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD7",SWIG_From_int(static_cast< int >(27)));
24013 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD8",SWIG_From_int(static_cast< int >(28)));
24014 SWIG_Python_SetConstant(d
, "STC_SQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24015 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
24016 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
24017 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
24018 SWIG_Python_SetConstant(d
, "STC_SQL_NUMBER",SWIG_From_int(static_cast< int >(4)));
24019 SWIG_Python_SetConstant(d
, "STC_SQL_WORD",SWIG_From_int(static_cast< int >(5)));
24020 SWIG_Python_SetConstant(d
, "STC_SQL_STRING",SWIG_From_int(static_cast< int >(6)));
24021 SWIG_Python_SetConstant(d
, "STC_SQL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
24022 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS",SWIG_From_int(static_cast< int >(8)));
24023 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_PROMPT",SWIG_From_int(static_cast< int >(9)));
24024 SWIG_Python_SetConstant(d
, "STC_SQL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
24025 SWIG_Python_SetConstant(d
, "STC_SQL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
24026 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_COMMENT",SWIG_From_int(static_cast< int >(13)));
24027 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
24028 SWIG_Python_SetConstant(d
, "STC_SQL_WORD2",SWIG_From_int(static_cast< int >(16)));
24029 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
24030 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
24031 SWIG_Python_SetConstant(d
, "STC_SQL_USER1",SWIG_From_int(static_cast< int >(19)));
24032 SWIG_Python_SetConstant(d
, "STC_SQL_USER2",SWIG_From_int(static_cast< int >(20)));
24033 SWIG_Python_SetConstant(d
, "STC_SQL_USER3",SWIG_From_int(static_cast< int >(21)));
24034 SWIG_Python_SetConstant(d
, "STC_SQL_USER4",SWIG_From_int(static_cast< int >(22)));
24035 SWIG_Python_SetConstant(d
, "STC_SQL_QUOTEDIDENTIFIER",SWIG_From_int(static_cast< int >(23)));
24036 SWIG_Python_SetConstant(d
, "STC_ST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24037 SWIG_Python_SetConstant(d
, "STC_ST_STRING",SWIG_From_int(static_cast< int >(1)));
24038 SWIG_Python_SetConstant(d
, "STC_ST_NUMBER",SWIG_From_int(static_cast< int >(2)));
24039 SWIG_Python_SetConstant(d
, "STC_ST_COMMENT",SWIG_From_int(static_cast< int >(3)));
24040 SWIG_Python_SetConstant(d
, "STC_ST_SYMBOL",SWIG_From_int(static_cast< int >(4)));
24041 SWIG_Python_SetConstant(d
, "STC_ST_BINARY",SWIG_From_int(static_cast< int >(5)));
24042 SWIG_Python_SetConstant(d
, "STC_ST_BOOL",SWIG_From_int(static_cast< int >(6)));
24043 SWIG_Python_SetConstant(d
, "STC_ST_SELF",SWIG_From_int(static_cast< int >(7)));
24044 SWIG_Python_SetConstant(d
, "STC_ST_SUPER",SWIG_From_int(static_cast< int >(8)));
24045 SWIG_Python_SetConstant(d
, "STC_ST_NIL",SWIG_From_int(static_cast< int >(9)));
24046 SWIG_Python_SetConstant(d
, "STC_ST_GLOBAL",SWIG_From_int(static_cast< int >(10)));
24047 SWIG_Python_SetConstant(d
, "STC_ST_RETURN",SWIG_From_int(static_cast< int >(11)));
24048 SWIG_Python_SetConstant(d
, "STC_ST_SPECIAL",SWIG_From_int(static_cast< int >(12)));
24049 SWIG_Python_SetConstant(d
, "STC_ST_KWSEND",SWIG_From_int(static_cast< int >(13)));
24050 SWIG_Python_SetConstant(d
, "STC_ST_ASSIGN",SWIG_From_int(static_cast< int >(14)));
24051 SWIG_Python_SetConstant(d
, "STC_ST_CHARACTER",SWIG_From_int(static_cast< int >(15)));
24052 SWIG_Python_SetConstant(d
, "STC_ST_SPEC_SEL",SWIG_From_int(static_cast< int >(16)));
24053 SWIG_Python_SetConstant(d
, "STC_FS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24054 SWIG_Python_SetConstant(d
, "STC_FS_COMMENT",SWIG_From_int(static_cast< int >(1)));
24055 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
24056 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
24057 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(4)));
24058 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(5)));
24059 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(6)));
24060 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD",SWIG_From_int(static_cast< int >(7)));
24061 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD2",SWIG_From_int(static_cast< int >(8)));
24062 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD3",SWIG_From_int(static_cast< int >(9)));
24063 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD4",SWIG_From_int(static_cast< int >(10)));
24064 SWIG_Python_SetConstant(d
, "STC_FS_NUMBER",SWIG_From_int(static_cast< int >(11)));
24065 SWIG_Python_SetConstant(d
, "STC_FS_STRING",SWIG_From_int(static_cast< int >(12)));
24066 SWIG_Python_SetConstant(d
, "STC_FS_PREPROCESSOR",SWIG_From_int(static_cast< int >(13)));
24067 SWIG_Python_SetConstant(d
, "STC_FS_OPERATOR",SWIG_From_int(static_cast< int >(14)));
24068 SWIG_Python_SetConstant(d
, "STC_FS_IDENTIFIER",SWIG_From_int(static_cast< int >(15)));
24069 SWIG_Python_SetConstant(d
, "STC_FS_DATE",SWIG_From_int(static_cast< int >(16)));
24070 SWIG_Python_SetConstant(d
, "STC_FS_STRINGEOL",SWIG_From_int(static_cast< int >(17)));
24071 SWIG_Python_SetConstant(d
, "STC_FS_CONSTANT",SWIG_From_int(static_cast< int >(18)));
24072 SWIG_Python_SetConstant(d
, "STC_FS_ASM",SWIG_From_int(static_cast< int >(19)));
24073 SWIG_Python_SetConstant(d
, "STC_FS_LABEL",SWIG_From_int(static_cast< int >(20)));
24074 SWIG_Python_SetConstant(d
, "STC_FS_ERROR",SWIG_From_int(static_cast< int >(21)));
24075 SWIG_Python_SetConstant(d
, "STC_FS_HEXNUMBER",SWIG_From_int(static_cast< int >(22)));
24076 SWIG_Python_SetConstant(d
, "STC_FS_BINNUMBER",SWIG_From_int(static_cast< int >(23)));
24077 SWIG_Python_SetConstant(d
, "STC_CSOUND_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24078 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENT",SWIG_From_int(static_cast< int >(1)));
24079 SWIG_Python_SetConstant(d
, "STC_CSOUND_NUMBER",SWIG_From_int(static_cast< int >(2)));
24080 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPERATOR",SWIG_From_int(static_cast< int >(3)));
24081 SWIG_Python_SetConstant(d
, "STC_CSOUND_INSTR",SWIG_From_int(static_cast< int >(4)));
24082 SWIG_Python_SetConstant(d
, "STC_CSOUND_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
24083 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPCODE",SWIG_From_int(static_cast< int >(6)));
24084 SWIG_Python_SetConstant(d
, "STC_CSOUND_HEADERSTMT",SWIG_From_int(static_cast< int >(7)));
24085 SWIG_Python_SetConstant(d
, "STC_CSOUND_USERKEYWORD",SWIG_From_int(static_cast< int >(8)));
24086 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENTBLOCK",SWIG_From_int(static_cast< int >(9)));
24087 SWIG_Python_SetConstant(d
, "STC_CSOUND_PARAM",SWIG_From_int(static_cast< int >(10)));
24088 SWIG_Python_SetConstant(d
, "STC_CSOUND_ARATE_VAR",SWIG_From_int(static_cast< int >(11)));
24089 SWIG_Python_SetConstant(d
, "STC_CSOUND_KRATE_VAR",SWIG_From_int(static_cast< int >(12)));
24090 SWIG_Python_SetConstant(d
, "STC_CSOUND_IRATE_VAR",SWIG_From_int(static_cast< int >(13)));
24091 SWIG_Python_SetConstant(d
, "STC_CSOUND_GLOBAL_VAR",SWIG_From_int(static_cast< int >(14)));
24092 SWIG_Python_SetConstant(d
, "STC_CSOUND_STRINGEOL",SWIG_From_int(static_cast< int >(15)));
24093 SWIG_Python_SetConstant(d
, "STC_CMD_REDO",SWIG_From_int(static_cast< int >(2011)));
24094 SWIG_Python_SetConstant(d
, "STC_CMD_SELECTALL",SWIG_From_int(static_cast< int >(2013)));
24095 SWIG_Python_SetConstant(d
, "STC_CMD_UNDO",SWIG_From_int(static_cast< int >(2176)));
24096 SWIG_Python_SetConstant(d
, "STC_CMD_CUT",SWIG_From_int(static_cast< int >(2177)));
24097 SWIG_Python_SetConstant(d
, "STC_CMD_COPY",SWIG_From_int(static_cast< int >(2178)));
24098 SWIG_Python_SetConstant(d
, "STC_CMD_PASTE",SWIG_From_int(static_cast< int >(2179)));
24099 SWIG_Python_SetConstant(d
, "STC_CMD_CLEAR",SWIG_From_int(static_cast< int >(2180)));
24100 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWN",SWIG_From_int(static_cast< int >(2300)));
24101 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNEXTEND",SWIG_From_int(static_cast< int >(2301)));
24102 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUP",SWIG_From_int(static_cast< int >(2302)));
24103 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPEXTEND",SWIG_From_int(static_cast< int >(2303)));
24104 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFT",SWIG_From_int(static_cast< int >(2304)));
24105 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTEXTEND",SWIG_From_int(static_cast< int >(2305)));
24106 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHT",SWIG_From_int(static_cast< int >(2306)));
24107 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTEXTEND",SWIG_From_int(static_cast< int >(2307)));
24108 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFT",SWIG_From_int(static_cast< int >(2308)));
24109 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEXTEND",SWIG_From_int(static_cast< int >(2309)));
24110 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHT",SWIG_From_int(static_cast< int >(2310)));
24111 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEXTEND",SWIG_From_int(static_cast< int >(2311)));
24112 SWIG_Python_SetConstant(d
, "STC_CMD_HOME",SWIG_From_int(static_cast< int >(2312)));
24113 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEEXTEND",SWIG_From_int(static_cast< int >(2313)));
24114 SWIG_Python_SetConstant(d
, "STC_CMD_LINEEND",SWIG_From_int(static_cast< int >(2314)));
24115 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDEXTEND",SWIG_From_int(static_cast< int >(2315)));
24116 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTART",SWIG_From_int(static_cast< int >(2316)));
24117 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTARTEXTEND",SWIG_From_int(static_cast< int >(2317)));
24118 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTEND",SWIG_From_int(static_cast< int >(2318)));
24119 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTENDEXTEND",SWIG_From_int(static_cast< int >(2319)));
24120 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUP",SWIG_From_int(static_cast< int >(2320)));
24121 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPEXTEND",SWIG_From_int(static_cast< int >(2321)));
24122 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWN",SWIG_From_int(static_cast< int >(2322)));
24123 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2323)));
24124 SWIG_Python_SetConstant(d
, "STC_CMD_EDITTOGGLEOVERTYPE",SWIG_From_int(static_cast< int >(2324)));
24125 SWIG_Python_SetConstant(d
, "STC_CMD_CANCEL",SWIG_From_int(static_cast< int >(2325)));
24126 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACK",SWIG_From_int(static_cast< int >(2326)));
24127 SWIG_Python_SetConstant(d
, "STC_CMD_TAB",SWIG_From_int(static_cast< int >(2327)));
24128 SWIG_Python_SetConstant(d
, "STC_CMD_BACKTAB",SWIG_From_int(static_cast< int >(2328)));
24129 SWIG_Python_SetConstant(d
, "STC_CMD_NEWLINE",SWIG_From_int(static_cast< int >(2329)));
24130 SWIG_Python_SetConstant(d
, "STC_CMD_FORMFEED",SWIG_From_int(static_cast< int >(2330)));
24131 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOME",SWIG_From_int(static_cast< int >(2331)));
24132 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEEXTEND",SWIG_From_int(static_cast< int >(2332)));
24133 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMIN",SWIG_From_int(static_cast< int >(2333)));
24134 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMOUT",SWIG_From_int(static_cast< int >(2334)));
24135 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDLEFT",SWIG_From_int(static_cast< int >(2335)));
24136 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDRIGHT",SWIG_From_int(static_cast< int >(2336)));
24137 SWIG_Python_SetConstant(d
, "STC_CMD_LINECUT",SWIG_From_int(static_cast< int >(2337)));
24138 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDELETE",SWIG_From_int(static_cast< int >(2338)));
24139 SWIG_Python_SetConstant(d
, "STC_CMD_LINETRANSPOSE",SWIG_From_int(static_cast< int >(2339)));
24140 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDUPLICATE",SWIG_From_int(static_cast< int >(2404)));
24141 SWIG_Python_SetConstant(d
, "STC_CMD_LOWERCASE",SWIG_From_int(static_cast< int >(2340)));
24142 SWIG_Python_SetConstant(d
, "STC_CMD_UPPERCASE",SWIG_From_int(static_cast< int >(2341)));
24143 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLDOWN",SWIG_From_int(static_cast< int >(2342)));
24144 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLUP",SWIG_From_int(static_cast< int >(2343)));
24145 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACKNOTLINE",SWIG_From_int(static_cast< int >(2344)));
24146 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAY",SWIG_From_int(static_cast< int >(2345)));
24147 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2346)));
24148 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAY",SWIG_From_int(static_cast< int >(2347)));
24149 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2348)));
24150 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAP",SWIG_From_int(static_cast< int >(2349)));
24151 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2450)));
24152 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAP",SWIG_From_int(static_cast< int >(2451)));
24153 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAPEXTEND",SWIG_From_int(static_cast< int >(2452)));
24154 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAP",SWIG_From_int(static_cast< int >(2453)));
24155 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2454)));
24156 SWIG_Python_SetConstant(d
, "STC_CMD_LINECOPY",SWIG_From_int(static_cast< int >(2455)));
24157 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFT",SWIG_From_int(static_cast< int >(2390)));
24158 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFTEXTEND",SWIG_From_int(static_cast< int >(2391)));
24159 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHT",SWIG_From_int(static_cast< int >(2392)));
24160 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHTEXTEND",SWIG_From_int(static_cast< int >(2393)));
24161 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINELEFT",SWIG_From_int(static_cast< int >(2395)));
24162 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINERIGHT",SWIG_From_int(static_cast< int >(2396)));
24163 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWN",SWIG_From_int(static_cast< int >(2413)));
24164 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWNEXTEND",SWIG_From_int(static_cast< int >(2414)));
24165 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUP",SWIG_From_int(static_cast< int >(2415)));
24166 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUPEXTEND",SWIG_From_int(static_cast< int >(2416)));
24167 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2426)));
24168 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2427)));
24169 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTRECTEXTEND",SWIG_From_int(static_cast< int >(2428)));
24170 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTRECTEXTEND",SWIG_From_int(static_cast< int >(2429)));
24171 SWIG_Python_SetConstant(d
, "STC_CMD_HOMERECTEXTEND",SWIG_From_int(static_cast< int >(2430)));
24172 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMERECTEXTEND",SWIG_From_int(static_cast< int >(2431)));
24173 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDRECTEXTEND",SWIG_From_int(static_cast< int >(2432)));
24174 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2433)));
24175 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2434)));
24176 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUP",SWIG_From_int(static_cast< int >(2435)));
24177 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUPEXTEND",SWIG_From_int(static_cast< int >(2436)));
24178 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWN",SWIG_From_int(static_cast< int >(2437)));
24179 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2438)));
24180 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEND",SWIG_From_int(static_cast< int >(2439)));
24181 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTENDEXTEND",SWIG_From_int(static_cast< int >(2440)));
24182 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEND",SWIG_From_int(static_cast< int >(2441)));
24183 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTENDEXTEND",SWIG_From_int(static_cast< int >(2442)));
24184 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHANGE",SWIG_From_int(static_cast< int >(wxEVT_STC_CHANGE
)));
24185 SWIG_Python_SetConstant(d
, "wxEVT_STC_STYLENEEDED",SWIG_From_int(static_cast< int >(wxEVT_STC_STYLENEEDED
)));
24186 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHARADDED",SWIG_From_int(static_cast< int >(wxEVT_STC_CHARADDED
)));
24187 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTREACHED",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTREACHED
)));
24188 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTLEFT",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTLEFT
)));
24189 SWIG_Python_SetConstant(d
, "wxEVT_STC_ROMODIFYATTEMPT",SWIG_From_int(static_cast< int >(wxEVT_STC_ROMODIFYATTEMPT
)));
24190 SWIG_Python_SetConstant(d
, "wxEVT_STC_KEY",SWIG_From_int(static_cast< int >(wxEVT_STC_KEY
)));
24191 SWIG_Python_SetConstant(d
, "wxEVT_STC_DOUBLECLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_DOUBLECLICK
)));
24192 SWIG_Python_SetConstant(d
, "wxEVT_STC_UPDATEUI",SWIG_From_int(static_cast< int >(wxEVT_STC_UPDATEUI
)));
24193 SWIG_Python_SetConstant(d
, "wxEVT_STC_MODIFIED",SWIG_From_int(static_cast< int >(wxEVT_STC_MODIFIED
)));
24194 SWIG_Python_SetConstant(d
, "wxEVT_STC_MACRORECORD",SWIG_From_int(static_cast< int >(wxEVT_STC_MACRORECORD
)));
24195 SWIG_Python_SetConstant(d
, "wxEVT_STC_MARGINCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_MARGINCLICK
)));
24196 SWIG_Python_SetConstant(d
, "wxEVT_STC_NEEDSHOWN",SWIG_From_int(static_cast< int >(wxEVT_STC_NEEDSHOWN
)));
24197 SWIG_Python_SetConstant(d
, "wxEVT_STC_PAINTED",SWIG_From_int(static_cast< int >(wxEVT_STC_PAINTED
)));
24198 SWIG_Python_SetConstant(d
, "wxEVT_STC_USERLISTSELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_USERLISTSELECTION
)));
24199 SWIG_Python_SetConstant(d
, "wxEVT_STC_URIDROPPED",SWIG_From_int(static_cast< int >(wxEVT_STC_URIDROPPED
)));
24200 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLSTART",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLSTART
)));
24201 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLEND",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLEND
)));
24202 SWIG_Python_SetConstant(d
, "wxEVT_STC_START_DRAG",SWIG_From_int(static_cast< int >(wxEVT_STC_START_DRAG
)));
24203 SWIG_Python_SetConstant(d
, "wxEVT_STC_DRAG_OVER",SWIG_From_int(static_cast< int >(wxEVT_STC_DRAG_OVER
)));
24204 SWIG_Python_SetConstant(d
, "wxEVT_STC_DO_DROP",SWIG_From_int(static_cast< int >(wxEVT_STC_DO_DROP
)));
24205 SWIG_Python_SetConstant(d
, "wxEVT_STC_ZOOM",SWIG_From_int(static_cast< int >(wxEVT_STC_ZOOM
)));
24206 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_CLICK
)));
24207 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_DCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_DCLICK
)));
24208 SWIG_Python_SetConstant(d
, "wxEVT_STC_CALLTIP_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_CALLTIP_CLICK
)));
24209 SWIG_Python_SetConstant(d
, "wxEVT_STC_AUTOCOMP_SELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_AUTOCOMP_SELECTION
)));