2 * FILE : contrib/stc/msw/stc_.cpp
4 * This file was automatically generated by :
5 * Simplified Wrapper and Interface Generator (SWIG)
6 * Version 1.1 (Build 883)
8 * Portions Copyright (c) 1995-1998
9 * The University of Utah and The Regents of the University of California.
10 * Permission is granted to distribute this file in any manner provided
11 * this notice remains intact.
13 * Do not make changes to this file--changes will be lost!
19 /* Implementation : PYTHON */
24 /* Definitions for Windows/Unix exporting */
25 #if defined(__WIN32__)
26 # if defined(_MSC_VER)
27 # define SWIGEXPORT(a) __declspec(dllexport) a
29 # if defined(__BORLANDC__)
30 # define SWIGEXPORT(a) a _export
32 # define SWIGEXPORT(a) a
36 # define SWIGEXPORT(a) a
45 extern void SWIG_MakePtr(char *, void *, char *);
46 extern void SWIG_RegisterMapping(char *, char *, void *(*)(void *));
47 extern char *SWIG_GetPtr(char *, void **, char *);
48 extern char *SWIG_GetPtrObj(PyObject
*, void **, char *);
49 extern void SWIG_addvarlink(PyObject
*, char *, PyObject
*(*)(void), int (*)(PyObject
*));
50 extern PyObject
*SWIG_newvarlink(void);
54 #define SWIG_init initstc_c
56 #define SWIG_name "stc_c"
59 #include "wx/stc/stc.h"
62 static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) {
68 } else if (target
== Py_None
) {
72 if (!PyTuple_Check(target
)) {
74 target
= PyTuple_New(1);
75 PyTuple_SetItem(target
, 0, o2
);
78 PyTuple_SetItem(o3
, 0, o
);
81 target
= PySequence_Concat(o2
, o3
);
88 #if PYTHON_API_VERSION >= 1009
89 static char* wxStringErrorMsg
= "String or Unicode type required";
91 static char* wxStringErrorMsg
= "String type required";
96 static void *SwigwxStyledTextCtrlTowxControl(void *ptr
) {
97 wxStyledTextCtrl
*src
;
99 src
= (wxStyledTextCtrl
*) ptr
;
100 dest
= (wxControl
*) src
;
101 return (void *) dest
;
104 static void *SwigwxStyledTextCtrlTowxWindow(void *ptr
) {
105 wxStyledTextCtrl
*src
;
107 src
= (wxStyledTextCtrl
*) ptr
;
108 dest
= (wxWindow
*) src
;
109 return (void *) dest
;
112 static void *SwigwxStyledTextCtrlTowxEvtHandler(void *ptr
) {
113 wxStyledTextCtrl
*src
;
115 src
= (wxStyledTextCtrl
*) ptr
;
116 dest
= (wxEvtHandler
*) src
;
117 return (void *) dest
;
120 static void *SwigwxStyledTextCtrlTowxObject(void *ptr
) {
121 wxStyledTextCtrl
*src
;
123 src
= (wxStyledTextCtrl
*) ptr
;
124 dest
= (wxObject
*) src
;
125 return (void *) dest
;
128 #define new_wxStyledTextCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (new wxStyledTextCtrl(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
129 static PyObject
*_wrap_new_wxStyledTextCtrl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
130 PyObject
* _resultobj
;
131 wxStyledTextCtrl
* _result
;
134 wxPoint
* _arg2
= (wxPoint
*) &wxDefaultPosition
;
135 wxSize
* _arg3
= (wxSize
*) &wxDefaultSize
;
136 long _arg4
= (long ) 0;
137 char * _arg5
= (char *) "styledtext";
138 PyObject
* _argo0
= 0;
140 PyObject
* _obj2
= 0;
142 PyObject
* _obj3
= 0;
143 char *_kwnames
[] = { "parent","id","pos","size","style","name", NULL
};
147 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi|OOls:new_wxStyledTextCtrl",_kwnames
,&_argo0
,&_arg1
,&_obj2
,&_obj3
,&_arg4
,&_arg5
))
150 if (_argo0
== Py_None
) { _arg0
= NULL
; }
151 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxWindow_p")) {
152 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of new_wxStyledTextCtrl. Expected _wxWindow_p.");
159 if (! wxPoint_helper(_obj2
, &_arg2
))
165 if (! wxSize_helper(_obj3
, &_arg3
))
169 wxPy_BEGIN_ALLOW_THREADS
;
170 _result
= (wxStyledTextCtrl
*)new_wxStyledTextCtrl(_arg0
,_arg1
,*_arg2
,*_arg3
,_arg4
,_arg5
);
172 wxPy_END_ALLOW_THREADS
;
174 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxStyledTextCtrl_p");
175 _resultobj
= Py_BuildValue("s",_ptemp
);
178 _resultobj
= Py_None
;
183 #define wxStyledTextCtrl_AddText(_swigobj,_swigarg0) (_swigobj->AddText(_swigarg0))
184 static PyObject
*_wrap_wxStyledTextCtrl_AddText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
185 PyObject
* _resultobj
;
186 wxStyledTextCtrl
* _arg0
;
188 PyObject
* _argo0
= 0;
189 PyObject
* _obj1
= 0;
190 char *_kwnames
[] = { "self","text", NULL
};
193 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AddText",_kwnames
,&_argo0
,&_obj1
))
196 if (_argo0
== Py_None
) { _arg0
= NULL
; }
197 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
198 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AddText. Expected _wxStyledTextCtrl_p.");
203 #if PYTHON_API_VERSION >= 1009
204 char* tmpPtr
; int tmpSize
;
205 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
206 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
209 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
211 _arg1
= new wxString(tmpPtr
, tmpSize
);
213 if (!PyString_Check(_obj1
)) {
214 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
217 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
221 wxPy_BEGIN_ALLOW_THREADS
;
222 wxStyledTextCtrl_AddText(_arg0
,*_arg1
);
224 wxPy_END_ALLOW_THREADS
;
225 } Py_INCREF(Py_None
);
226 _resultobj
= Py_None
;
234 #define wxStyledTextCtrl_AddStyledText(_swigobj,_swigarg0) (_swigobj->AddStyledText(_swigarg0))
235 static PyObject
*_wrap_wxStyledTextCtrl_AddStyledText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
236 PyObject
* _resultobj
;
237 wxStyledTextCtrl
* _arg0
;
239 PyObject
* _argo0
= 0;
240 PyObject
* _obj1
= 0;
241 char *_kwnames
[] = { "self","text", NULL
};
244 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AddStyledText",_kwnames
,&_argo0
,&_obj1
))
247 if (_argo0
== Py_None
) { _arg0
= NULL
; }
248 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
249 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AddStyledText. Expected _wxStyledTextCtrl_p.");
254 #if PYTHON_API_VERSION >= 1009
255 char* tmpPtr
; int tmpSize
;
256 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
257 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
260 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
262 _arg1
= new wxString(tmpPtr
, tmpSize
);
264 if (!PyString_Check(_obj1
)) {
265 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
268 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
272 wxPy_BEGIN_ALLOW_THREADS
;
273 wxStyledTextCtrl_AddStyledText(_arg0
,*_arg1
);
275 wxPy_END_ALLOW_THREADS
;
276 } Py_INCREF(Py_None
);
277 _resultobj
= Py_None
;
285 #define wxStyledTextCtrl_InsertText(_swigobj,_swigarg0,_swigarg1) (_swigobj->InsertText(_swigarg0,_swigarg1))
286 static PyObject
*_wrap_wxStyledTextCtrl_InsertText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
287 PyObject
* _resultobj
;
288 wxStyledTextCtrl
* _arg0
;
291 PyObject
* _argo0
= 0;
292 PyObject
* _obj2
= 0;
293 char *_kwnames
[] = { "self","pos","text", NULL
};
296 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_InsertText",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
299 if (_argo0
== Py_None
) { _arg0
= NULL
; }
300 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
301 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_InsertText. Expected _wxStyledTextCtrl_p.");
306 #if PYTHON_API_VERSION >= 1009
307 char* tmpPtr
; int tmpSize
;
308 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
309 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
312 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
314 _arg2
= new wxString(tmpPtr
, tmpSize
);
316 if (!PyString_Check(_obj2
)) {
317 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
320 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
324 wxPy_BEGIN_ALLOW_THREADS
;
325 wxStyledTextCtrl_InsertText(_arg0
,_arg1
,*_arg2
);
327 wxPy_END_ALLOW_THREADS
;
328 } Py_INCREF(Py_None
);
329 _resultobj
= Py_None
;
337 #define wxStyledTextCtrl_ClearAll(_swigobj) (_swigobj->ClearAll())
338 static PyObject
*_wrap_wxStyledTextCtrl_ClearAll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
339 PyObject
* _resultobj
;
340 wxStyledTextCtrl
* _arg0
;
341 PyObject
* _argo0
= 0;
342 char *_kwnames
[] = { "self", NULL
};
345 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_ClearAll",_kwnames
,&_argo0
))
348 if (_argo0
== Py_None
) { _arg0
= NULL
; }
349 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
350 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ClearAll. Expected _wxStyledTextCtrl_p.");
355 wxPy_BEGIN_ALLOW_THREADS
;
356 wxStyledTextCtrl_ClearAll(_arg0
);
358 wxPy_END_ALLOW_THREADS
;
359 } Py_INCREF(Py_None
);
360 _resultobj
= Py_None
;
364 #define wxStyledTextCtrl_ClearDocumentStyle(_swigobj) (_swigobj->ClearDocumentStyle())
365 static PyObject
*_wrap_wxStyledTextCtrl_ClearDocumentStyle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
366 PyObject
* _resultobj
;
367 wxStyledTextCtrl
* _arg0
;
368 PyObject
* _argo0
= 0;
369 char *_kwnames
[] = { "self", NULL
};
372 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_ClearDocumentStyle",_kwnames
,&_argo0
))
375 if (_argo0
== Py_None
) { _arg0
= NULL
; }
376 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
377 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ClearDocumentStyle. Expected _wxStyledTextCtrl_p.");
382 wxPy_BEGIN_ALLOW_THREADS
;
383 wxStyledTextCtrl_ClearDocumentStyle(_arg0
);
385 wxPy_END_ALLOW_THREADS
;
386 } Py_INCREF(Py_None
);
387 _resultobj
= Py_None
;
391 #define wxStyledTextCtrl_GetLength(_swigobj) (_swigobj->GetLength())
392 static PyObject
*_wrap_wxStyledTextCtrl_GetLength(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
393 PyObject
* _resultobj
;
395 wxStyledTextCtrl
* _arg0
;
396 PyObject
* _argo0
= 0;
397 char *_kwnames
[] = { "self", NULL
};
400 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetLength",_kwnames
,&_argo0
))
403 if (_argo0
== Py_None
) { _arg0
= NULL
; }
404 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
405 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLength. Expected _wxStyledTextCtrl_p.");
410 wxPy_BEGIN_ALLOW_THREADS
;
411 _result
= (int )wxStyledTextCtrl_GetLength(_arg0
);
413 wxPy_END_ALLOW_THREADS
;
414 } _resultobj
= Py_BuildValue("i",_result
);
418 #define wxStyledTextCtrl_GetCharAt(_swigobj,_swigarg0) (_swigobj->GetCharAt(_swigarg0))
419 static PyObject
*_wrap_wxStyledTextCtrl_GetCharAt(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
420 PyObject
* _resultobj
;
422 wxStyledTextCtrl
* _arg0
;
424 PyObject
* _argo0
= 0;
425 char *_kwnames
[] = { "self","pos", NULL
};
428 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetCharAt",_kwnames
,&_argo0
,&_arg1
))
431 if (_argo0
== Py_None
) { _arg0
= NULL
; }
432 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
433 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCharAt. Expected _wxStyledTextCtrl_p.");
438 wxPy_BEGIN_ALLOW_THREADS
;
439 _result
= (int )wxStyledTextCtrl_GetCharAt(_arg0
,_arg1
);
441 wxPy_END_ALLOW_THREADS
;
442 } _resultobj
= Py_BuildValue("i",_result
);
446 #define wxStyledTextCtrl_GetCurrentPos(_swigobj) (_swigobj->GetCurrentPos())
447 static PyObject
*_wrap_wxStyledTextCtrl_GetCurrentPos(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
448 PyObject
* _resultobj
;
450 wxStyledTextCtrl
* _arg0
;
451 PyObject
* _argo0
= 0;
452 char *_kwnames
[] = { "self", NULL
};
455 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCurrentPos",_kwnames
,&_argo0
))
458 if (_argo0
== Py_None
) { _arg0
= NULL
; }
459 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
460 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCurrentPos. Expected _wxStyledTextCtrl_p.");
465 wxPy_BEGIN_ALLOW_THREADS
;
466 _result
= (int )wxStyledTextCtrl_GetCurrentPos(_arg0
);
468 wxPy_END_ALLOW_THREADS
;
469 } _resultobj
= Py_BuildValue("i",_result
);
473 #define wxStyledTextCtrl_GetAnchor(_swigobj) (_swigobj->GetAnchor())
474 static PyObject
*_wrap_wxStyledTextCtrl_GetAnchor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
475 PyObject
* _resultobj
;
477 wxStyledTextCtrl
* _arg0
;
478 PyObject
* _argo0
= 0;
479 char *_kwnames
[] = { "self", NULL
};
482 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetAnchor",_kwnames
,&_argo0
))
485 if (_argo0
== Py_None
) { _arg0
= NULL
; }
486 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
487 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetAnchor. Expected _wxStyledTextCtrl_p.");
492 wxPy_BEGIN_ALLOW_THREADS
;
493 _result
= (int )wxStyledTextCtrl_GetAnchor(_arg0
);
495 wxPy_END_ALLOW_THREADS
;
496 } _resultobj
= Py_BuildValue("i",_result
);
500 #define wxStyledTextCtrl_GetStyleAt(_swigobj,_swigarg0) (_swigobj->GetStyleAt(_swigarg0))
501 static PyObject
*_wrap_wxStyledTextCtrl_GetStyleAt(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
502 PyObject
* _resultobj
;
504 wxStyledTextCtrl
* _arg0
;
506 PyObject
* _argo0
= 0;
507 char *_kwnames
[] = { "self","pos", NULL
};
510 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetStyleAt",_kwnames
,&_argo0
,&_arg1
))
513 if (_argo0
== Py_None
) { _arg0
= NULL
; }
514 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
515 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetStyleAt. Expected _wxStyledTextCtrl_p.");
520 wxPy_BEGIN_ALLOW_THREADS
;
521 _result
= (int )wxStyledTextCtrl_GetStyleAt(_arg0
,_arg1
);
523 wxPy_END_ALLOW_THREADS
;
524 } _resultobj
= Py_BuildValue("i",_result
);
528 #define wxStyledTextCtrl_Redo(_swigobj) (_swigobj->Redo())
529 static PyObject
*_wrap_wxStyledTextCtrl_Redo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
530 PyObject
* _resultobj
;
531 wxStyledTextCtrl
* _arg0
;
532 PyObject
* _argo0
= 0;
533 char *_kwnames
[] = { "self", NULL
};
536 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Redo",_kwnames
,&_argo0
))
539 if (_argo0
== Py_None
) { _arg0
= NULL
; }
540 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
541 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Redo. Expected _wxStyledTextCtrl_p.");
546 wxPy_BEGIN_ALLOW_THREADS
;
547 wxStyledTextCtrl_Redo(_arg0
);
549 wxPy_END_ALLOW_THREADS
;
550 } Py_INCREF(Py_None
);
551 _resultobj
= Py_None
;
555 #define wxStyledTextCtrl_SetUndoCollection(_swigobj,_swigarg0) (_swigobj->SetUndoCollection(_swigarg0))
556 static PyObject
*_wrap_wxStyledTextCtrl_SetUndoCollection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
557 PyObject
* _resultobj
;
558 wxStyledTextCtrl
* _arg0
;
560 PyObject
* _argo0
= 0;
562 char *_kwnames
[] = { "self","collectUndo", NULL
};
565 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetUndoCollection",_kwnames
,&_argo0
,&tempbool1
))
568 if (_argo0
== Py_None
) { _arg0
= NULL
; }
569 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
570 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetUndoCollection. Expected _wxStyledTextCtrl_p.");
574 _arg1
= (bool ) tempbool1
;
576 wxPy_BEGIN_ALLOW_THREADS
;
577 wxStyledTextCtrl_SetUndoCollection(_arg0
,_arg1
);
579 wxPy_END_ALLOW_THREADS
;
580 } Py_INCREF(Py_None
);
581 _resultobj
= Py_None
;
585 #define wxStyledTextCtrl_SelectAll(_swigobj) (_swigobj->SelectAll())
586 static PyObject
*_wrap_wxStyledTextCtrl_SelectAll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
587 PyObject
* _resultobj
;
588 wxStyledTextCtrl
* _arg0
;
589 PyObject
* _argo0
= 0;
590 char *_kwnames
[] = { "self", NULL
};
593 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_SelectAll",_kwnames
,&_argo0
))
596 if (_argo0
== Py_None
) { _arg0
= NULL
; }
597 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
598 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SelectAll. Expected _wxStyledTextCtrl_p.");
603 wxPy_BEGIN_ALLOW_THREADS
;
604 wxStyledTextCtrl_SelectAll(_arg0
);
606 wxPy_END_ALLOW_THREADS
;
607 } Py_INCREF(Py_None
);
608 _resultobj
= Py_None
;
612 #define wxStyledTextCtrl_SetSavePoint(_swigobj) (_swigobj->SetSavePoint())
613 static PyObject
*_wrap_wxStyledTextCtrl_SetSavePoint(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
614 PyObject
* _resultobj
;
615 wxStyledTextCtrl
* _arg0
;
616 PyObject
* _argo0
= 0;
617 char *_kwnames
[] = { "self", NULL
};
620 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_SetSavePoint",_kwnames
,&_argo0
))
623 if (_argo0
== Py_None
) { _arg0
= NULL
; }
624 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
625 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSavePoint. Expected _wxStyledTextCtrl_p.");
630 wxPy_BEGIN_ALLOW_THREADS
;
631 wxStyledTextCtrl_SetSavePoint(_arg0
);
633 wxPy_END_ALLOW_THREADS
;
634 } Py_INCREF(Py_None
);
635 _resultobj
= Py_None
;
639 #define wxStyledTextCtrl_GetStyledText(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetStyledText(_swigarg0,_swigarg1))
640 static PyObject
*_wrap_wxStyledTextCtrl_GetStyledText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
641 PyObject
* _resultobj
;
643 wxStyledTextCtrl
* _arg0
;
646 PyObject
* _argo0
= 0;
647 char *_kwnames
[] = { "self","startPos","endPos", NULL
};
650 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_GetStyledText",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
653 if (_argo0
== Py_None
) { _arg0
= NULL
; }
654 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
655 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetStyledText. Expected _wxStyledTextCtrl_p.");
660 wxPy_BEGIN_ALLOW_THREADS
;
661 _result
= new wxString (wxStyledTextCtrl_GetStyledText(_arg0
,_arg1
,_arg2
));
663 wxPy_END_ALLOW_THREADS
;
665 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
673 #define wxStyledTextCtrl_CanRedo(_swigobj) (_swigobj->CanRedo())
674 static PyObject
*_wrap_wxStyledTextCtrl_CanRedo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
675 PyObject
* _resultobj
;
677 wxStyledTextCtrl
* _arg0
;
678 PyObject
* _argo0
= 0;
679 char *_kwnames
[] = { "self", NULL
};
682 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CanRedo",_kwnames
,&_argo0
))
685 if (_argo0
== Py_None
) { _arg0
= NULL
; }
686 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
687 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CanRedo. Expected _wxStyledTextCtrl_p.");
692 wxPy_BEGIN_ALLOW_THREADS
;
693 _result
= (bool )wxStyledTextCtrl_CanRedo(_arg0
);
695 wxPy_END_ALLOW_THREADS
;
696 } _resultobj
= Py_BuildValue("i",_result
);
700 #define wxStyledTextCtrl_MarkerLineFromHandle(_swigobj,_swigarg0) (_swigobj->MarkerLineFromHandle(_swigarg0))
701 static PyObject
*_wrap_wxStyledTextCtrl_MarkerLineFromHandle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
702 PyObject
* _resultobj
;
704 wxStyledTextCtrl
* _arg0
;
706 PyObject
* _argo0
= 0;
707 char *_kwnames
[] = { "self","handle", NULL
};
710 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_MarkerLineFromHandle",_kwnames
,&_argo0
,&_arg1
))
713 if (_argo0
== Py_None
) { _arg0
= NULL
; }
714 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
715 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerLineFromHandle. Expected _wxStyledTextCtrl_p.");
720 wxPy_BEGIN_ALLOW_THREADS
;
721 _result
= (int )wxStyledTextCtrl_MarkerLineFromHandle(_arg0
,_arg1
);
723 wxPy_END_ALLOW_THREADS
;
724 } _resultobj
= Py_BuildValue("i",_result
);
728 #define wxStyledTextCtrl_MarkerDeleteHandle(_swigobj,_swigarg0) (_swigobj->MarkerDeleteHandle(_swigarg0))
729 static PyObject
*_wrap_wxStyledTextCtrl_MarkerDeleteHandle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
730 PyObject
* _resultobj
;
731 wxStyledTextCtrl
* _arg0
;
733 PyObject
* _argo0
= 0;
734 char *_kwnames
[] = { "self","handle", NULL
};
737 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_MarkerDeleteHandle",_kwnames
,&_argo0
,&_arg1
))
740 if (_argo0
== Py_None
) { _arg0
= NULL
; }
741 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
742 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerDeleteHandle. Expected _wxStyledTextCtrl_p.");
747 wxPy_BEGIN_ALLOW_THREADS
;
748 wxStyledTextCtrl_MarkerDeleteHandle(_arg0
,_arg1
);
750 wxPy_END_ALLOW_THREADS
;
751 } Py_INCREF(Py_None
);
752 _resultobj
= Py_None
;
756 #define wxStyledTextCtrl_GetUndoCollection(_swigobj) (_swigobj->GetUndoCollection())
757 static PyObject
*_wrap_wxStyledTextCtrl_GetUndoCollection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
758 PyObject
* _resultobj
;
760 wxStyledTextCtrl
* _arg0
;
761 PyObject
* _argo0
= 0;
762 char *_kwnames
[] = { "self", NULL
};
765 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetUndoCollection",_kwnames
,&_argo0
))
768 if (_argo0
== Py_None
) { _arg0
= NULL
; }
769 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
770 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetUndoCollection. Expected _wxStyledTextCtrl_p.");
775 wxPy_BEGIN_ALLOW_THREADS
;
776 _result
= (bool )wxStyledTextCtrl_GetUndoCollection(_arg0
);
778 wxPy_END_ALLOW_THREADS
;
779 } _resultobj
= Py_BuildValue("i",_result
);
783 #define wxStyledTextCtrl_GetViewWhiteSpace(_swigobj) (_swigobj->GetViewWhiteSpace())
784 static PyObject
*_wrap_wxStyledTextCtrl_GetViewWhiteSpace(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
785 PyObject
* _resultobj
;
787 wxStyledTextCtrl
* _arg0
;
788 PyObject
* _argo0
= 0;
789 char *_kwnames
[] = { "self", NULL
};
792 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetViewWhiteSpace",_kwnames
,&_argo0
))
795 if (_argo0
== Py_None
) { _arg0
= NULL
; }
796 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
797 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetViewWhiteSpace. Expected _wxStyledTextCtrl_p.");
802 wxPy_BEGIN_ALLOW_THREADS
;
803 _result
= (int )wxStyledTextCtrl_GetViewWhiteSpace(_arg0
);
805 wxPy_END_ALLOW_THREADS
;
806 } _resultobj
= Py_BuildValue("i",_result
);
810 #define wxStyledTextCtrl_SetViewWhiteSpace(_swigobj,_swigarg0) (_swigobj->SetViewWhiteSpace(_swigarg0))
811 static PyObject
*_wrap_wxStyledTextCtrl_SetViewWhiteSpace(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
812 PyObject
* _resultobj
;
813 wxStyledTextCtrl
* _arg0
;
815 PyObject
* _argo0
= 0;
816 char *_kwnames
[] = { "self","viewWS", NULL
};
819 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetViewWhiteSpace",_kwnames
,&_argo0
,&_arg1
))
822 if (_argo0
== Py_None
) { _arg0
= NULL
; }
823 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
824 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetViewWhiteSpace. Expected _wxStyledTextCtrl_p.");
829 wxPy_BEGIN_ALLOW_THREADS
;
830 wxStyledTextCtrl_SetViewWhiteSpace(_arg0
,_arg1
);
832 wxPy_END_ALLOW_THREADS
;
833 } Py_INCREF(Py_None
);
834 _resultobj
= Py_None
;
838 #define wxStyledTextCtrl_PositionFromPoint(_swigobj,_swigarg0) (_swigobj->PositionFromPoint(_swigarg0))
839 static PyObject
*_wrap_wxStyledTextCtrl_PositionFromPoint(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
840 PyObject
* _resultobj
;
842 wxStyledTextCtrl
* _arg0
;
844 PyObject
* _argo0
= 0;
846 PyObject
* _obj1
= 0;
847 char *_kwnames
[] = { "self","pt", NULL
};
850 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_PositionFromPoint",_kwnames
,&_argo0
,&_obj1
))
853 if (_argo0
== Py_None
) { _arg0
= NULL
; }
854 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
855 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_PositionFromPoint. Expected _wxStyledTextCtrl_p.");
861 if (! wxPoint_helper(_obj1
, &_arg1
))
865 wxPy_BEGIN_ALLOW_THREADS
;
866 _result
= (int )wxStyledTextCtrl_PositionFromPoint(_arg0
,*_arg1
);
868 wxPy_END_ALLOW_THREADS
;
869 } _resultobj
= Py_BuildValue("i",_result
);
873 #define wxStyledTextCtrl_PositionFromPointClose(_swigobj,_swigarg0,_swigarg1) (_swigobj->PositionFromPointClose(_swigarg0,_swigarg1))
874 static PyObject
*_wrap_wxStyledTextCtrl_PositionFromPointClose(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
875 PyObject
* _resultobj
;
877 wxStyledTextCtrl
* _arg0
;
880 PyObject
* _argo0
= 0;
881 char *_kwnames
[] = { "self","x","y", NULL
};
884 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_PositionFromPointClose",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
887 if (_argo0
== Py_None
) { _arg0
= NULL
; }
888 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
889 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_PositionFromPointClose. Expected _wxStyledTextCtrl_p.");
894 wxPy_BEGIN_ALLOW_THREADS
;
895 _result
= (int )wxStyledTextCtrl_PositionFromPointClose(_arg0
,_arg1
,_arg2
);
897 wxPy_END_ALLOW_THREADS
;
898 } _resultobj
= Py_BuildValue("i",_result
);
902 #define wxStyledTextCtrl_GotoLine(_swigobj,_swigarg0) (_swigobj->GotoLine(_swigarg0))
903 static PyObject
*_wrap_wxStyledTextCtrl_GotoLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
904 PyObject
* _resultobj
;
905 wxStyledTextCtrl
* _arg0
;
907 PyObject
* _argo0
= 0;
908 char *_kwnames
[] = { "self","line", NULL
};
911 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GotoLine",_kwnames
,&_argo0
,&_arg1
))
914 if (_argo0
== Py_None
) { _arg0
= NULL
; }
915 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
916 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GotoLine. Expected _wxStyledTextCtrl_p.");
921 wxPy_BEGIN_ALLOW_THREADS
;
922 wxStyledTextCtrl_GotoLine(_arg0
,_arg1
);
924 wxPy_END_ALLOW_THREADS
;
925 } Py_INCREF(Py_None
);
926 _resultobj
= Py_None
;
930 #define wxStyledTextCtrl_GotoPos(_swigobj,_swigarg0) (_swigobj->GotoPos(_swigarg0))
931 static PyObject
*_wrap_wxStyledTextCtrl_GotoPos(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
932 PyObject
* _resultobj
;
933 wxStyledTextCtrl
* _arg0
;
935 PyObject
* _argo0
= 0;
936 char *_kwnames
[] = { "self","pos", NULL
};
939 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GotoPos",_kwnames
,&_argo0
,&_arg1
))
942 if (_argo0
== Py_None
) { _arg0
= NULL
; }
943 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
944 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GotoPos. Expected _wxStyledTextCtrl_p.");
949 wxPy_BEGIN_ALLOW_THREADS
;
950 wxStyledTextCtrl_GotoPos(_arg0
,_arg1
);
952 wxPy_END_ALLOW_THREADS
;
953 } Py_INCREF(Py_None
);
954 _resultobj
= Py_None
;
958 #define wxStyledTextCtrl_SetAnchor(_swigobj,_swigarg0) (_swigobj->SetAnchor(_swigarg0))
959 static PyObject
*_wrap_wxStyledTextCtrl_SetAnchor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
960 PyObject
* _resultobj
;
961 wxStyledTextCtrl
* _arg0
;
963 PyObject
* _argo0
= 0;
964 char *_kwnames
[] = { "self","posAnchor", NULL
};
967 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetAnchor",_kwnames
,&_argo0
,&_arg1
))
970 if (_argo0
== Py_None
) { _arg0
= NULL
; }
971 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
972 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetAnchor. Expected _wxStyledTextCtrl_p.");
977 wxPy_BEGIN_ALLOW_THREADS
;
978 wxStyledTextCtrl_SetAnchor(_arg0
,_arg1
);
980 wxPy_END_ALLOW_THREADS
;
981 } Py_INCREF(Py_None
);
982 _resultobj
= Py_None
;
986 #define wxStyledTextCtrl_GetCurLine(_swigobj,_swigarg0) (_swigobj->GetCurLine(_swigarg0))
987 static PyObject
*_wrap_wxStyledTextCtrl_GetCurLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
988 PyObject
* _resultobj
;
990 wxStyledTextCtrl
* _arg0
;
993 PyObject
* _argo0
= 0;
994 char *_kwnames
[] = { "self", NULL
};
1000 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCurLine",_kwnames
,&_argo0
))
1003 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1004 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1005 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCurLine. Expected _wxStyledTextCtrl_p.");
1010 wxPy_BEGIN_ALLOW_THREADS
;
1011 _result
= new wxString (wxStyledTextCtrl_GetCurLine(_arg0
,_arg1
));
1013 wxPy_END_ALLOW_THREADS
;
1015 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
1019 o
= PyInt_FromLong((long) (*_arg1
));
1020 _resultobj
= t_output_helper(_resultobj
, o
);
1028 #define wxStyledTextCtrl_GetEndStyled(_swigobj) (_swigobj->GetEndStyled())
1029 static PyObject
*_wrap_wxStyledTextCtrl_GetEndStyled(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1030 PyObject
* _resultobj
;
1032 wxStyledTextCtrl
* _arg0
;
1033 PyObject
* _argo0
= 0;
1034 char *_kwnames
[] = { "self", NULL
};
1037 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetEndStyled",_kwnames
,&_argo0
))
1040 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1041 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1042 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetEndStyled. Expected _wxStyledTextCtrl_p.");
1047 wxPy_BEGIN_ALLOW_THREADS
;
1048 _result
= (int )wxStyledTextCtrl_GetEndStyled(_arg0
);
1050 wxPy_END_ALLOW_THREADS
;
1051 } _resultobj
= Py_BuildValue("i",_result
);
1055 #define wxStyledTextCtrl_ConvertEOLs(_swigobj,_swigarg0) (_swigobj->ConvertEOLs(_swigarg0))
1056 static PyObject
*_wrap_wxStyledTextCtrl_ConvertEOLs(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1057 PyObject
* _resultobj
;
1058 wxStyledTextCtrl
* _arg0
;
1060 PyObject
* _argo0
= 0;
1061 char *_kwnames
[] = { "self","eolMode", NULL
};
1064 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_ConvertEOLs",_kwnames
,&_argo0
,&_arg1
))
1067 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1068 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1069 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ConvertEOLs. Expected _wxStyledTextCtrl_p.");
1074 wxPy_BEGIN_ALLOW_THREADS
;
1075 wxStyledTextCtrl_ConvertEOLs(_arg0
,_arg1
);
1077 wxPy_END_ALLOW_THREADS
;
1078 } Py_INCREF(Py_None
);
1079 _resultobj
= Py_None
;
1083 #define wxStyledTextCtrl_GetEOLMode(_swigobj) (_swigobj->GetEOLMode())
1084 static PyObject
*_wrap_wxStyledTextCtrl_GetEOLMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1085 PyObject
* _resultobj
;
1087 wxStyledTextCtrl
* _arg0
;
1088 PyObject
* _argo0
= 0;
1089 char *_kwnames
[] = { "self", NULL
};
1092 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetEOLMode",_kwnames
,&_argo0
))
1095 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1096 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1097 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetEOLMode. Expected _wxStyledTextCtrl_p.");
1102 wxPy_BEGIN_ALLOW_THREADS
;
1103 _result
= (int )wxStyledTextCtrl_GetEOLMode(_arg0
);
1105 wxPy_END_ALLOW_THREADS
;
1106 } _resultobj
= Py_BuildValue("i",_result
);
1110 #define wxStyledTextCtrl_SetEOLMode(_swigobj,_swigarg0) (_swigobj->SetEOLMode(_swigarg0))
1111 static PyObject
*_wrap_wxStyledTextCtrl_SetEOLMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1112 PyObject
* _resultobj
;
1113 wxStyledTextCtrl
* _arg0
;
1115 PyObject
* _argo0
= 0;
1116 char *_kwnames
[] = { "self","eolMode", NULL
};
1119 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetEOLMode",_kwnames
,&_argo0
,&_arg1
))
1122 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1123 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1124 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetEOLMode. Expected _wxStyledTextCtrl_p.");
1129 wxPy_BEGIN_ALLOW_THREADS
;
1130 wxStyledTextCtrl_SetEOLMode(_arg0
,_arg1
);
1132 wxPy_END_ALLOW_THREADS
;
1133 } Py_INCREF(Py_None
);
1134 _resultobj
= Py_None
;
1138 #define wxStyledTextCtrl_StartStyling(_swigobj,_swigarg0,_swigarg1) (_swigobj->StartStyling(_swigarg0,_swigarg1))
1139 static PyObject
*_wrap_wxStyledTextCtrl_StartStyling(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1140 PyObject
* _resultobj
;
1141 wxStyledTextCtrl
* _arg0
;
1144 PyObject
* _argo0
= 0;
1145 char *_kwnames
[] = { "self","pos","mask", NULL
};
1148 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StartStyling",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1151 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1152 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1153 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StartStyling. Expected _wxStyledTextCtrl_p.");
1158 wxPy_BEGIN_ALLOW_THREADS
;
1159 wxStyledTextCtrl_StartStyling(_arg0
,_arg1
,_arg2
);
1161 wxPy_END_ALLOW_THREADS
;
1162 } Py_INCREF(Py_None
);
1163 _resultobj
= Py_None
;
1167 #define wxStyledTextCtrl_SetStyling(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetStyling(_swigarg0,_swigarg1))
1168 static PyObject
*_wrap_wxStyledTextCtrl_SetStyling(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1169 PyObject
* _resultobj
;
1170 wxStyledTextCtrl
* _arg0
;
1173 PyObject
* _argo0
= 0;
1174 char *_kwnames
[] = { "self","length","style", NULL
};
1177 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetStyling",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1180 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1181 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1182 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetStyling. Expected _wxStyledTextCtrl_p.");
1187 wxPy_BEGIN_ALLOW_THREADS
;
1188 wxStyledTextCtrl_SetStyling(_arg0
,_arg1
,_arg2
);
1190 wxPy_END_ALLOW_THREADS
;
1191 } Py_INCREF(Py_None
);
1192 _resultobj
= Py_None
;
1196 #define wxStyledTextCtrl_GetBufferedDraw(_swigobj) (_swigobj->GetBufferedDraw())
1197 static PyObject
*_wrap_wxStyledTextCtrl_GetBufferedDraw(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1198 PyObject
* _resultobj
;
1200 wxStyledTextCtrl
* _arg0
;
1201 PyObject
* _argo0
= 0;
1202 char *_kwnames
[] = { "self", NULL
};
1205 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetBufferedDraw",_kwnames
,&_argo0
))
1208 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1209 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1210 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetBufferedDraw. Expected _wxStyledTextCtrl_p.");
1215 wxPy_BEGIN_ALLOW_THREADS
;
1216 _result
= (bool )wxStyledTextCtrl_GetBufferedDraw(_arg0
);
1218 wxPy_END_ALLOW_THREADS
;
1219 } _resultobj
= Py_BuildValue("i",_result
);
1223 #define wxStyledTextCtrl_SetBufferedDraw(_swigobj,_swigarg0) (_swigobj->SetBufferedDraw(_swigarg0))
1224 static PyObject
*_wrap_wxStyledTextCtrl_SetBufferedDraw(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1225 PyObject
* _resultobj
;
1226 wxStyledTextCtrl
* _arg0
;
1228 PyObject
* _argo0
= 0;
1230 char *_kwnames
[] = { "self","buffered", NULL
};
1233 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetBufferedDraw",_kwnames
,&_argo0
,&tempbool1
))
1236 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1237 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1238 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetBufferedDraw. Expected _wxStyledTextCtrl_p.");
1242 _arg1
= (bool ) tempbool1
;
1244 wxPy_BEGIN_ALLOW_THREADS
;
1245 wxStyledTextCtrl_SetBufferedDraw(_arg0
,_arg1
);
1247 wxPy_END_ALLOW_THREADS
;
1248 } Py_INCREF(Py_None
);
1249 _resultobj
= Py_None
;
1253 #define wxStyledTextCtrl_SetTabWidth(_swigobj,_swigarg0) (_swigobj->SetTabWidth(_swigarg0))
1254 static PyObject
*_wrap_wxStyledTextCtrl_SetTabWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1255 PyObject
* _resultobj
;
1256 wxStyledTextCtrl
* _arg0
;
1258 PyObject
* _argo0
= 0;
1259 char *_kwnames
[] = { "self","tabWidth", NULL
};
1262 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetTabWidth",_kwnames
,&_argo0
,&_arg1
))
1265 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1266 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1267 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetTabWidth. Expected _wxStyledTextCtrl_p.");
1272 wxPy_BEGIN_ALLOW_THREADS
;
1273 wxStyledTextCtrl_SetTabWidth(_arg0
,_arg1
);
1275 wxPy_END_ALLOW_THREADS
;
1276 } Py_INCREF(Py_None
);
1277 _resultobj
= Py_None
;
1281 #define wxStyledTextCtrl_GetTabWidth(_swigobj) (_swigobj->GetTabWidth())
1282 static PyObject
*_wrap_wxStyledTextCtrl_GetTabWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1283 PyObject
* _resultobj
;
1285 wxStyledTextCtrl
* _arg0
;
1286 PyObject
* _argo0
= 0;
1287 char *_kwnames
[] = { "self", NULL
};
1290 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetTabWidth",_kwnames
,&_argo0
))
1293 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1294 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1295 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTabWidth. Expected _wxStyledTextCtrl_p.");
1300 wxPy_BEGIN_ALLOW_THREADS
;
1301 _result
= (int )wxStyledTextCtrl_GetTabWidth(_arg0
);
1303 wxPy_END_ALLOW_THREADS
;
1304 } _resultobj
= Py_BuildValue("i",_result
);
1308 #define wxStyledTextCtrl_SetCodePage(_swigobj,_swigarg0) (_swigobj->SetCodePage(_swigarg0))
1309 static PyObject
*_wrap_wxStyledTextCtrl_SetCodePage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1310 PyObject
* _resultobj
;
1311 wxStyledTextCtrl
* _arg0
;
1313 PyObject
* _argo0
= 0;
1314 char *_kwnames
[] = { "self","codePage", NULL
};
1317 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCodePage",_kwnames
,&_argo0
,&_arg1
))
1320 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1321 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1322 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCodePage. Expected _wxStyledTextCtrl_p.");
1327 wxPy_BEGIN_ALLOW_THREADS
;
1328 wxStyledTextCtrl_SetCodePage(_arg0
,_arg1
);
1330 wxPy_END_ALLOW_THREADS
;
1331 } Py_INCREF(Py_None
);
1332 _resultobj
= Py_None
;
1336 #define wxStyledTextCtrl_MarkerDefine(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3) (_swigobj->MarkerDefine(_swigarg0,_swigarg1,_swigarg2,_swigarg3))
1337 static PyObject
*_wrap_wxStyledTextCtrl_MarkerDefine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1338 PyObject
* _resultobj
;
1339 wxStyledTextCtrl
* _arg0
;
1342 wxColour
* _arg3
= (wxColour
*) &wxNullColour
;
1343 wxColour
* _arg4
= (wxColour
*) &wxNullColour
;
1344 PyObject
* _argo0
= 0;
1346 PyObject
* _obj3
= 0;
1348 PyObject
* _obj4
= 0;
1349 char *_kwnames
[] = { "self","markerNumber","markerSymbol","foreground","background", NULL
};
1352 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii|OO:wxStyledTextCtrl_MarkerDefine",_kwnames
,&_argo0
,&_arg1
,&_arg2
,&_obj3
,&_obj4
))
1355 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1356 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1357 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerDefine. Expected _wxStyledTextCtrl_p.");
1364 if (! wxColour_helper(_obj3
, &_arg3
))
1370 if (! wxColour_helper(_obj4
, &_arg4
))
1374 wxPy_BEGIN_ALLOW_THREADS
;
1375 wxStyledTextCtrl_MarkerDefine(_arg0
,_arg1
,_arg2
,*_arg3
,*_arg4
);
1377 wxPy_END_ALLOW_THREADS
;
1378 } Py_INCREF(Py_None
);
1379 _resultobj
= Py_None
;
1383 #define wxStyledTextCtrl_MarkerSetForeground(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerSetForeground(_swigarg0,_swigarg1))
1384 static PyObject
*_wrap_wxStyledTextCtrl_MarkerSetForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1385 PyObject
* _resultobj
;
1386 wxStyledTextCtrl
* _arg0
;
1389 PyObject
* _argo0
= 0;
1391 PyObject
* _obj2
= 0;
1392 char *_kwnames
[] = { "self","markerNumber","fore", NULL
};
1395 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_MarkerSetForeground",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
1398 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1399 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1400 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerSetForeground. Expected _wxStyledTextCtrl_p.");
1406 if (! wxColour_helper(_obj2
, &_arg2
))
1410 wxPy_BEGIN_ALLOW_THREADS
;
1411 wxStyledTextCtrl_MarkerSetForeground(_arg0
,_arg1
,*_arg2
);
1413 wxPy_END_ALLOW_THREADS
;
1414 } Py_INCREF(Py_None
);
1415 _resultobj
= Py_None
;
1419 #define wxStyledTextCtrl_MarkerSetBackground(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerSetBackground(_swigarg0,_swigarg1))
1420 static PyObject
*_wrap_wxStyledTextCtrl_MarkerSetBackground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1421 PyObject
* _resultobj
;
1422 wxStyledTextCtrl
* _arg0
;
1425 PyObject
* _argo0
= 0;
1427 PyObject
* _obj2
= 0;
1428 char *_kwnames
[] = { "self","markerNumber","back", NULL
};
1431 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_MarkerSetBackground",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
1434 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1435 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1436 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerSetBackground. Expected _wxStyledTextCtrl_p.");
1442 if (! wxColour_helper(_obj2
, &_arg2
))
1446 wxPy_BEGIN_ALLOW_THREADS
;
1447 wxStyledTextCtrl_MarkerSetBackground(_arg0
,_arg1
,*_arg2
);
1449 wxPy_END_ALLOW_THREADS
;
1450 } Py_INCREF(Py_None
);
1451 _resultobj
= Py_None
;
1455 #define wxStyledTextCtrl_MarkerAdd(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerAdd(_swigarg0,_swigarg1))
1456 static PyObject
*_wrap_wxStyledTextCtrl_MarkerAdd(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1457 PyObject
* _resultobj
;
1458 wxStyledTextCtrl
* _arg0
;
1461 PyObject
* _argo0
= 0;
1462 char *_kwnames
[] = { "self","line","markerNumber", NULL
};
1465 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_MarkerAdd",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1468 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1469 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1470 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerAdd. Expected _wxStyledTextCtrl_p.");
1475 wxPy_BEGIN_ALLOW_THREADS
;
1476 wxStyledTextCtrl_MarkerAdd(_arg0
,_arg1
,_arg2
);
1478 wxPy_END_ALLOW_THREADS
;
1479 } Py_INCREF(Py_None
);
1480 _resultobj
= Py_None
;
1484 #define wxStyledTextCtrl_MarkerDelete(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerDelete(_swigarg0,_swigarg1))
1485 static PyObject
*_wrap_wxStyledTextCtrl_MarkerDelete(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1486 PyObject
* _resultobj
;
1487 wxStyledTextCtrl
* _arg0
;
1490 PyObject
* _argo0
= 0;
1491 char *_kwnames
[] = { "self","line","markerNumber", NULL
};
1494 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_MarkerDelete",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1497 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1498 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1499 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerDelete. Expected _wxStyledTextCtrl_p.");
1504 wxPy_BEGIN_ALLOW_THREADS
;
1505 wxStyledTextCtrl_MarkerDelete(_arg0
,_arg1
,_arg2
);
1507 wxPy_END_ALLOW_THREADS
;
1508 } Py_INCREF(Py_None
);
1509 _resultobj
= Py_None
;
1513 #define wxStyledTextCtrl_MarkerDeleteAll(_swigobj,_swigarg0) (_swigobj->MarkerDeleteAll(_swigarg0))
1514 static PyObject
*_wrap_wxStyledTextCtrl_MarkerDeleteAll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1515 PyObject
* _resultobj
;
1516 wxStyledTextCtrl
* _arg0
;
1518 PyObject
* _argo0
= 0;
1519 char *_kwnames
[] = { "self","markerNumber", NULL
};
1522 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_MarkerDeleteAll",_kwnames
,&_argo0
,&_arg1
))
1525 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1526 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1527 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerDeleteAll. Expected _wxStyledTextCtrl_p.");
1532 wxPy_BEGIN_ALLOW_THREADS
;
1533 wxStyledTextCtrl_MarkerDeleteAll(_arg0
,_arg1
);
1535 wxPy_END_ALLOW_THREADS
;
1536 } Py_INCREF(Py_None
);
1537 _resultobj
= Py_None
;
1541 #define wxStyledTextCtrl_MarkerGet(_swigobj,_swigarg0) (_swigobj->MarkerGet(_swigarg0))
1542 static PyObject
*_wrap_wxStyledTextCtrl_MarkerGet(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1543 PyObject
* _resultobj
;
1545 wxStyledTextCtrl
* _arg0
;
1547 PyObject
* _argo0
= 0;
1548 char *_kwnames
[] = { "self","line", NULL
};
1551 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_MarkerGet",_kwnames
,&_argo0
,&_arg1
))
1554 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1555 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1556 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerGet. Expected _wxStyledTextCtrl_p.");
1561 wxPy_BEGIN_ALLOW_THREADS
;
1562 _result
= (int )wxStyledTextCtrl_MarkerGet(_arg0
,_arg1
);
1564 wxPy_END_ALLOW_THREADS
;
1565 } _resultobj
= Py_BuildValue("i",_result
);
1569 #define wxStyledTextCtrl_MarkerNext(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerNext(_swigarg0,_swigarg1))
1570 static PyObject
*_wrap_wxStyledTextCtrl_MarkerNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1571 PyObject
* _resultobj
;
1573 wxStyledTextCtrl
* _arg0
;
1576 PyObject
* _argo0
= 0;
1577 char *_kwnames
[] = { "self","lineStart","markerMask", NULL
};
1580 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_MarkerNext",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1583 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1584 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1585 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerNext. Expected _wxStyledTextCtrl_p.");
1590 wxPy_BEGIN_ALLOW_THREADS
;
1591 _result
= (int )wxStyledTextCtrl_MarkerNext(_arg0
,_arg1
,_arg2
);
1593 wxPy_END_ALLOW_THREADS
;
1594 } _resultobj
= Py_BuildValue("i",_result
);
1598 #define wxStyledTextCtrl_MarkerPrevious(_swigobj,_swigarg0,_swigarg1) (_swigobj->MarkerPrevious(_swigarg0,_swigarg1))
1599 static PyObject
*_wrap_wxStyledTextCtrl_MarkerPrevious(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1600 PyObject
* _resultobj
;
1602 wxStyledTextCtrl
* _arg0
;
1605 PyObject
* _argo0
= 0;
1606 char *_kwnames
[] = { "self","lineStart","markerMask", NULL
};
1609 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_MarkerPrevious",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1612 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1613 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1614 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MarkerPrevious. Expected _wxStyledTextCtrl_p.");
1619 wxPy_BEGIN_ALLOW_THREADS
;
1620 _result
= (int )wxStyledTextCtrl_MarkerPrevious(_arg0
,_arg1
,_arg2
);
1622 wxPy_END_ALLOW_THREADS
;
1623 } _resultobj
= Py_BuildValue("i",_result
);
1627 #define wxStyledTextCtrl_SetMarginType(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetMarginType(_swigarg0,_swigarg1))
1628 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1629 PyObject
* _resultobj
;
1630 wxStyledTextCtrl
* _arg0
;
1633 PyObject
* _argo0
= 0;
1634 char *_kwnames
[] = { "self","margin","marginType", NULL
};
1637 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetMarginType",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1640 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1641 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1642 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginType. Expected _wxStyledTextCtrl_p.");
1647 wxPy_BEGIN_ALLOW_THREADS
;
1648 wxStyledTextCtrl_SetMarginType(_arg0
,_arg1
,_arg2
);
1650 wxPy_END_ALLOW_THREADS
;
1651 } Py_INCREF(Py_None
);
1652 _resultobj
= Py_None
;
1656 #define wxStyledTextCtrl_GetMarginType(_swigobj,_swigarg0) (_swigobj->GetMarginType(_swigarg0))
1657 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1658 PyObject
* _resultobj
;
1660 wxStyledTextCtrl
* _arg0
;
1662 PyObject
* _argo0
= 0;
1663 char *_kwnames
[] = { "self","margin", NULL
};
1666 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetMarginType",_kwnames
,&_argo0
,&_arg1
))
1669 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1670 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1671 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginType. Expected _wxStyledTextCtrl_p.");
1676 wxPy_BEGIN_ALLOW_THREADS
;
1677 _result
= (int )wxStyledTextCtrl_GetMarginType(_arg0
,_arg1
);
1679 wxPy_END_ALLOW_THREADS
;
1680 } _resultobj
= Py_BuildValue("i",_result
);
1684 #define wxStyledTextCtrl_SetMarginWidth(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetMarginWidth(_swigarg0,_swigarg1))
1685 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1686 PyObject
* _resultobj
;
1687 wxStyledTextCtrl
* _arg0
;
1690 PyObject
* _argo0
= 0;
1691 char *_kwnames
[] = { "self","margin","pixelWidth", NULL
};
1694 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetMarginWidth",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1697 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1698 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1699 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginWidth. Expected _wxStyledTextCtrl_p.");
1704 wxPy_BEGIN_ALLOW_THREADS
;
1705 wxStyledTextCtrl_SetMarginWidth(_arg0
,_arg1
,_arg2
);
1707 wxPy_END_ALLOW_THREADS
;
1708 } Py_INCREF(Py_None
);
1709 _resultobj
= Py_None
;
1713 #define wxStyledTextCtrl_GetMarginWidth(_swigobj,_swigarg0) (_swigobj->GetMarginWidth(_swigarg0))
1714 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1715 PyObject
* _resultobj
;
1717 wxStyledTextCtrl
* _arg0
;
1719 PyObject
* _argo0
= 0;
1720 char *_kwnames
[] = { "self","margin", NULL
};
1723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetMarginWidth",_kwnames
,&_argo0
,&_arg1
))
1726 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1727 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1728 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginWidth. Expected _wxStyledTextCtrl_p.");
1733 wxPy_BEGIN_ALLOW_THREADS
;
1734 _result
= (int )wxStyledTextCtrl_GetMarginWidth(_arg0
,_arg1
);
1736 wxPy_END_ALLOW_THREADS
;
1737 } _resultobj
= Py_BuildValue("i",_result
);
1741 #define wxStyledTextCtrl_SetMarginMask(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetMarginMask(_swigarg0,_swigarg1))
1742 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginMask(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1743 PyObject
* _resultobj
;
1744 wxStyledTextCtrl
* _arg0
;
1747 PyObject
* _argo0
= 0;
1748 char *_kwnames
[] = { "self","margin","mask", NULL
};
1751 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetMarginMask",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
1754 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1755 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1756 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginMask. Expected _wxStyledTextCtrl_p.");
1761 wxPy_BEGIN_ALLOW_THREADS
;
1762 wxStyledTextCtrl_SetMarginMask(_arg0
,_arg1
,_arg2
);
1764 wxPy_END_ALLOW_THREADS
;
1765 } Py_INCREF(Py_None
);
1766 _resultobj
= Py_None
;
1770 #define wxStyledTextCtrl_GetMarginMask(_swigobj,_swigarg0) (_swigobj->GetMarginMask(_swigarg0))
1771 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginMask(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1772 PyObject
* _resultobj
;
1774 wxStyledTextCtrl
* _arg0
;
1776 PyObject
* _argo0
= 0;
1777 char *_kwnames
[] = { "self","margin", NULL
};
1780 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetMarginMask",_kwnames
,&_argo0
,&_arg1
))
1783 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1784 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1785 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginMask. Expected _wxStyledTextCtrl_p.");
1790 wxPy_BEGIN_ALLOW_THREADS
;
1791 _result
= (int )wxStyledTextCtrl_GetMarginMask(_arg0
,_arg1
);
1793 wxPy_END_ALLOW_THREADS
;
1794 } _resultobj
= Py_BuildValue("i",_result
);
1798 #define wxStyledTextCtrl_SetMarginSensitive(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetMarginSensitive(_swigarg0,_swigarg1))
1799 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginSensitive(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1800 PyObject
* _resultobj
;
1801 wxStyledTextCtrl
* _arg0
;
1804 PyObject
* _argo0
= 0;
1806 char *_kwnames
[] = { "self","margin","sensitive", NULL
};
1809 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetMarginSensitive",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
1812 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1813 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1814 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginSensitive. Expected _wxStyledTextCtrl_p.");
1818 _arg2
= (bool ) tempbool2
;
1820 wxPy_BEGIN_ALLOW_THREADS
;
1821 wxStyledTextCtrl_SetMarginSensitive(_arg0
,_arg1
,_arg2
);
1823 wxPy_END_ALLOW_THREADS
;
1824 } Py_INCREF(Py_None
);
1825 _resultobj
= Py_None
;
1829 #define wxStyledTextCtrl_GetMarginSensitive(_swigobj,_swigarg0) (_swigobj->GetMarginSensitive(_swigarg0))
1830 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginSensitive(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1831 PyObject
* _resultobj
;
1833 wxStyledTextCtrl
* _arg0
;
1835 PyObject
* _argo0
= 0;
1836 char *_kwnames
[] = { "self","margin", NULL
};
1839 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetMarginSensitive",_kwnames
,&_argo0
,&_arg1
))
1842 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1843 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1844 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginSensitive. Expected _wxStyledTextCtrl_p.");
1849 wxPy_BEGIN_ALLOW_THREADS
;
1850 _result
= (bool )wxStyledTextCtrl_GetMarginSensitive(_arg0
,_arg1
);
1852 wxPy_END_ALLOW_THREADS
;
1853 } _resultobj
= Py_BuildValue("i",_result
);
1857 #define wxStyledTextCtrl_StyleClearAll(_swigobj) (_swigobj->StyleClearAll())
1858 static PyObject
*_wrap_wxStyledTextCtrl_StyleClearAll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1859 PyObject
* _resultobj
;
1860 wxStyledTextCtrl
* _arg0
;
1861 PyObject
* _argo0
= 0;
1862 char *_kwnames
[] = { "self", NULL
};
1865 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_StyleClearAll",_kwnames
,&_argo0
))
1868 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1869 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1870 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleClearAll. Expected _wxStyledTextCtrl_p.");
1875 wxPy_BEGIN_ALLOW_THREADS
;
1876 wxStyledTextCtrl_StyleClearAll(_arg0
);
1878 wxPy_END_ALLOW_THREADS
;
1879 } Py_INCREF(Py_None
);
1880 _resultobj
= Py_None
;
1884 #define wxStyledTextCtrl_StyleSetForeground(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetForeground(_swigarg0,_swigarg1))
1885 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1886 PyObject
* _resultobj
;
1887 wxStyledTextCtrl
* _arg0
;
1890 PyObject
* _argo0
= 0;
1892 PyObject
* _obj2
= 0;
1893 char *_kwnames
[] = { "self","style","fore", NULL
};
1896 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_StyleSetForeground",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
1899 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1900 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1901 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetForeground. Expected _wxStyledTextCtrl_p.");
1907 if (! wxColour_helper(_obj2
, &_arg2
))
1911 wxPy_BEGIN_ALLOW_THREADS
;
1912 wxStyledTextCtrl_StyleSetForeground(_arg0
,_arg1
,*_arg2
);
1914 wxPy_END_ALLOW_THREADS
;
1915 } Py_INCREF(Py_None
);
1916 _resultobj
= Py_None
;
1920 #define wxStyledTextCtrl_StyleSetBackground(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetBackground(_swigarg0,_swigarg1))
1921 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetBackground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1922 PyObject
* _resultobj
;
1923 wxStyledTextCtrl
* _arg0
;
1926 PyObject
* _argo0
= 0;
1928 PyObject
* _obj2
= 0;
1929 char *_kwnames
[] = { "self","style","back", NULL
};
1932 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_StyleSetBackground",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
1935 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1936 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1937 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetBackground. Expected _wxStyledTextCtrl_p.");
1943 if (! wxColour_helper(_obj2
, &_arg2
))
1947 wxPy_BEGIN_ALLOW_THREADS
;
1948 wxStyledTextCtrl_StyleSetBackground(_arg0
,_arg1
,*_arg2
);
1950 wxPy_END_ALLOW_THREADS
;
1951 } Py_INCREF(Py_None
);
1952 _resultobj
= Py_None
;
1956 #define wxStyledTextCtrl_StyleSetBold(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetBold(_swigarg0,_swigarg1))
1957 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetBold(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1958 PyObject
* _resultobj
;
1959 wxStyledTextCtrl
* _arg0
;
1962 PyObject
* _argo0
= 0;
1964 char *_kwnames
[] = { "self","style","bold", NULL
};
1967 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetBold",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
1970 if (_argo0
== Py_None
) { _arg0
= NULL
; }
1971 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
1972 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetBold. Expected _wxStyledTextCtrl_p.");
1976 _arg2
= (bool ) tempbool2
;
1978 wxPy_BEGIN_ALLOW_THREADS
;
1979 wxStyledTextCtrl_StyleSetBold(_arg0
,_arg1
,_arg2
);
1981 wxPy_END_ALLOW_THREADS
;
1982 } Py_INCREF(Py_None
);
1983 _resultobj
= Py_None
;
1987 #define wxStyledTextCtrl_StyleSetItalic(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetItalic(_swigarg0,_swigarg1))
1988 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetItalic(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
1989 PyObject
* _resultobj
;
1990 wxStyledTextCtrl
* _arg0
;
1993 PyObject
* _argo0
= 0;
1995 char *_kwnames
[] = { "self","style","italic", NULL
};
1998 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetItalic",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
2001 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2002 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2003 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetItalic. Expected _wxStyledTextCtrl_p.");
2007 _arg2
= (bool ) tempbool2
;
2009 wxPy_BEGIN_ALLOW_THREADS
;
2010 wxStyledTextCtrl_StyleSetItalic(_arg0
,_arg1
,_arg2
);
2012 wxPy_END_ALLOW_THREADS
;
2013 } Py_INCREF(Py_None
);
2014 _resultobj
= Py_None
;
2018 #define wxStyledTextCtrl_StyleSetSize(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetSize(_swigarg0,_swigarg1))
2019 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetSize(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2020 PyObject
* _resultobj
;
2021 wxStyledTextCtrl
* _arg0
;
2024 PyObject
* _argo0
= 0;
2025 char *_kwnames
[] = { "self","style","sizePoints", NULL
};
2028 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetSize",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2031 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2032 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2033 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetSize. Expected _wxStyledTextCtrl_p.");
2038 wxPy_BEGIN_ALLOW_THREADS
;
2039 wxStyledTextCtrl_StyleSetSize(_arg0
,_arg1
,_arg2
);
2041 wxPy_END_ALLOW_THREADS
;
2042 } Py_INCREF(Py_None
);
2043 _resultobj
= Py_None
;
2047 #define wxStyledTextCtrl_StyleSetFaceName(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetFaceName(_swigarg0,_swigarg1))
2048 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetFaceName(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2049 PyObject
* _resultobj
;
2050 wxStyledTextCtrl
* _arg0
;
2053 PyObject
* _argo0
= 0;
2054 PyObject
* _obj2
= 0;
2055 char *_kwnames
[] = { "self","style","fontName", NULL
};
2058 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_StyleSetFaceName",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
2061 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2062 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2063 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetFaceName. Expected _wxStyledTextCtrl_p.");
2068 #if PYTHON_API_VERSION >= 1009
2069 char* tmpPtr
; int tmpSize
;
2070 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
2071 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2074 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
2076 _arg2
= new wxString(tmpPtr
, tmpSize
);
2078 if (!PyString_Check(_obj2
)) {
2079 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2082 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
2086 wxPy_BEGIN_ALLOW_THREADS
;
2087 wxStyledTextCtrl_StyleSetFaceName(_arg0
,_arg1
,*_arg2
);
2089 wxPy_END_ALLOW_THREADS
;
2090 } Py_INCREF(Py_None
);
2091 _resultobj
= Py_None
;
2099 #define wxStyledTextCtrl_StyleSetEOLFilled(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetEOLFilled(_swigarg0,_swigarg1))
2100 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetEOLFilled(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2101 PyObject
* _resultobj
;
2102 wxStyledTextCtrl
* _arg0
;
2105 PyObject
* _argo0
= 0;
2107 char *_kwnames
[] = { "self","style","filled", NULL
};
2110 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetEOLFilled",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
2113 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2114 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2115 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetEOLFilled. Expected _wxStyledTextCtrl_p.");
2119 _arg2
= (bool ) tempbool2
;
2121 wxPy_BEGIN_ALLOW_THREADS
;
2122 wxStyledTextCtrl_StyleSetEOLFilled(_arg0
,_arg1
,_arg2
);
2124 wxPy_END_ALLOW_THREADS
;
2125 } Py_INCREF(Py_None
);
2126 _resultobj
= Py_None
;
2130 #define wxStyledTextCtrl_StyleResetDefault(_swigobj) (_swigobj->StyleResetDefault())
2131 static PyObject
*_wrap_wxStyledTextCtrl_StyleResetDefault(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2132 PyObject
* _resultobj
;
2133 wxStyledTextCtrl
* _arg0
;
2134 PyObject
* _argo0
= 0;
2135 char *_kwnames
[] = { "self", NULL
};
2138 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_StyleResetDefault",_kwnames
,&_argo0
))
2141 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2142 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2143 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleResetDefault. Expected _wxStyledTextCtrl_p.");
2148 wxPy_BEGIN_ALLOW_THREADS
;
2149 wxStyledTextCtrl_StyleResetDefault(_arg0
);
2151 wxPy_END_ALLOW_THREADS
;
2152 } Py_INCREF(Py_None
);
2153 _resultobj
= Py_None
;
2157 #define wxStyledTextCtrl_StyleSetUnderline(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetUnderline(_swigarg0,_swigarg1))
2158 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetUnderline(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2159 PyObject
* _resultobj
;
2160 wxStyledTextCtrl
* _arg0
;
2163 PyObject
* _argo0
= 0;
2165 char *_kwnames
[] = { "self","style","underline", NULL
};
2168 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetUnderline",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
2171 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2172 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2173 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetUnderline. Expected _wxStyledTextCtrl_p.");
2177 _arg2
= (bool ) tempbool2
;
2179 wxPy_BEGIN_ALLOW_THREADS
;
2180 wxStyledTextCtrl_StyleSetUnderline(_arg0
,_arg1
,_arg2
);
2182 wxPy_END_ALLOW_THREADS
;
2183 } Py_INCREF(Py_None
);
2184 _resultobj
= Py_None
;
2188 #define wxStyledTextCtrl_StyleSetCase(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetCase(_swigarg0,_swigarg1))
2189 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetCase(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2190 PyObject
* _resultobj
;
2191 wxStyledTextCtrl
* _arg0
;
2194 PyObject
* _argo0
= 0;
2195 char *_kwnames
[] = { "self","style","caseForce", NULL
};
2198 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetCase",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2201 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2202 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2203 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetCase. Expected _wxStyledTextCtrl_p.");
2208 wxPy_BEGIN_ALLOW_THREADS
;
2209 wxStyledTextCtrl_StyleSetCase(_arg0
,_arg1
,_arg2
);
2211 wxPy_END_ALLOW_THREADS
;
2212 } Py_INCREF(Py_None
);
2213 _resultobj
= Py_None
;
2217 #define wxStyledTextCtrl_SetSelForeground(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetSelForeground(_swigarg0,_swigarg1))
2218 static PyObject
*_wrap_wxStyledTextCtrl_SetSelForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2219 PyObject
* _resultobj
;
2220 wxStyledTextCtrl
* _arg0
;
2223 PyObject
* _argo0
= 0;
2226 PyObject
* _obj2
= 0;
2227 char *_kwnames
[] = { "self","useSetting","fore", NULL
};
2230 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_SetSelForeground",_kwnames
,&_argo0
,&tempbool1
,&_obj2
))
2233 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2234 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2235 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSelForeground. Expected _wxStyledTextCtrl_p.");
2239 _arg1
= (bool ) tempbool1
;
2242 if (! wxColour_helper(_obj2
, &_arg2
))
2246 wxPy_BEGIN_ALLOW_THREADS
;
2247 wxStyledTextCtrl_SetSelForeground(_arg0
,_arg1
,*_arg2
);
2249 wxPy_END_ALLOW_THREADS
;
2250 } Py_INCREF(Py_None
);
2251 _resultobj
= Py_None
;
2255 #define wxStyledTextCtrl_SetSelBackground(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetSelBackground(_swigarg0,_swigarg1))
2256 static PyObject
*_wrap_wxStyledTextCtrl_SetSelBackground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2257 PyObject
* _resultobj
;
2258 wxStyledTextCtrl
* _arg0
;
2261 PyObject
* _argo0
= 0;
2264 PyObject
* _obj2
= 0;
2265 char *_kwnames
[] = { "self","useSetting","back", NULL
};
2268 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_SetSelBackground",_kwnames
,&_argo0
,&tempbool1
,&_obj2
))
2271 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2272 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2273 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSelBackground. Expected _wxStyledTextCtrl_p.");
2277 _arg1
= (bool ) tempbool1
;
2280 if (! wxColour_helper(_obj2
, &_arg2
))
2284 wxPy_BEGIN_ALLOW_THREADS
;
2285 wxStyledTextCtrl_SetSelBackground(_arg0
,_arg1
,*_arg2
);
2287 wxPy_END_ALLOW_THREADS
;
2288 } Py_INCREF(Py_None
);
2289 _resultobj
= Py_None
;
2293 #define wxStyledTextCtrl_SetCaretForeground(_swigobj,_swigarg0) (_swigobj->SetCaretForeground(_swigarg0))
2294 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2295 PyObject
* _resultobj
;
2296 wxStyledTextCtrl
* _arg0
;
2298 PyObject
* _argo0
= 0;
2300 PyObject
* _obj1
= 0;
2301 char *_kwnames
[] = { "self","fore", NULL
};
2304 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetCaretForeground",_kwnames
,&_argo0
,&_obj1
))
2307 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2308 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2309 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretForeground. Expected _wxStyledTextCtrl_p.");
2315 if (! wxColour_helper(_obj1
, &_arg1
))
2319 wxPy_BEGIN_ALLOW_THREADS
;
2320 wxStyledTextCtrl_SetCaretForeground(_arg0
,*_arg1
);
2322 wxPy_END_ALLOW_THREADS
;
2323 } Py_INCREF(Py_None
);
2324 _resultobj
= Py_None
;
2328 #define wxStyledTextCtrl_CmdKeyAssign(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->CmdKeyAssign(_swigarg0,_swigarg1,_swigarg2))
2329 static PyObject
*_wrap_wxStyledTextCtrl_CmdKeyAssign(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2330 PyObject
* _resultobj
;
2331 wxStyledTextCtrl
* _arg0
;
2335 PyObject
* _argo0
= 0;
2336 char *_kwnames
[] = { "self","key","modifiers","cmd", NULL
};
2339 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oiii:wxStyledTextCtrl_CmdKeyAssign",_kwnames
,&_argo0
,&_arg1
,&_arg2
,&_arg3
))
2342 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2343 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2344 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CmdKeyAssign. Expected _wxStyledTextCtrl_p.");
2349 wxPy_BEGIN_ALLOW_THREADS
;
2350 wxStyledTextCtrl_CmdKeyAssign(_arg0
,_arg1
,_arg2
,_arg3
);
2352 wxPy_END_ALLOW_THREADS
;
2353 } Py_INCREF(Py_None
);
2354 _resultobj
= Py_None
;
2358 #define wxStyledTextCtrl_CmdKeyClear(_swigobj,_swigarg0,_swigarg1) (_swigobj->CmdKeyClear(_swigarg0,_swigarg1))
2359 static PyObject
*_wrap_wxStyledTextCtrl_CmdKeyClear(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2360 PyObject
* _resultobj
;
2361 wxStyledTextCtrl
* _arg0
;
2364 PyObject
* _argo0
= 0;
2365 char *_kwnames
[] = { "self","key","modifiers", NULL
};
2368 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_CmdKeyClear",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2371 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2372 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2373 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CmdKeyClear. Expected _wxStyledTextCtrl_p.");
2378 wxPy_BEGIN_ALLOW_THREADS
;
2379 wxStyledTextCtrl_CmdKeyClear(_arg0
,_arg1
,_arg2
);
2381 wxPy_END_ALLOW_THREADS
;
2382 } Py_INCREF(Py_None
);
2383 _resultobj
= Py_None
;
2387 #define wxStyledTextCtrl_CmdKeyClearAll(_swigobj) (_swigobj->CmdKeyClearAll())
2388 static PyObject
*_wrap_wxStyledTextCtrl_CmdKeyClearAll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2389 PyObject
* _resultobj
;
2390 wxStyledTextCtrl
* _arg0
;
2391 PyObject
* _argo0
= 0;
2392 char *_kwnames
[] = { "self", NULL
};
2395 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CmdKeyClearAll",_kwnames
,&_argo0
))
2398 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2399 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2400 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CmdKeyClearAll. Expected _wxStyledTextCtrl_p.");
2405 wxPy_BEGIN_ALLOW_THREADS
;
2406 wxStyledTextCtrl_CmdKeyClearAll(_arg0
);
2408 wxPy_END_ALLOW_THREADS
;
2409 } Py_INCREF(Py_None
);
2410 _resultobj
= Py_None
;
2414 #define wxStyledTextCtrl_SetStyleBytes(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetStyleBytes(_swigarg0,_swigarg1))
2415 static PyObject
*_wrap_wxStyledTextCtrl_SetStyleBytes(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2416 PyObject
* _resultobj
;
2417 wxStyledTextCtrl
* _arg0
;
2420 PyObject
* _argo0
= 0;
2421 char *_kwnames
[] = { "self","length","styleBytes", NULL
};
2424 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Ois:wxStyledTextCtrl_SetStyleBytes",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2427 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2428 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2429 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetStyleBytes. Expected _wxStyledTextCtrl_p.");
2434 wxPy_BEGIN_ALLOW_THREADS
;
2435 wxStyledTextCtrl_SetStyleBytes(_arg0
,_arg1
,_arg2
);
2437 wxPy_END_ALLOW_THREADS
;
2438 } Py_INCREF(Py_None
);
2439 _resultobj
= Py_None
;
2443 #define wxStyledTextCtrl_StyleSetVisible(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetVisible(_swigarg0,_swigarg1))
2444 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2445 PyObject
* _resultobj
;
2446 wxStyledTextCtrl
* _arg0
;
2449 PyObject
* _argo0
= 0;
2451 char *_kwnames
[] = { "self","style","visible", NULL
};
2454 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_StyleSetVisible",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
2457 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2458 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2459 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetVisible. Expected _wxStyledTextCtrl_p.");
2463 _arg2
= (bool ) tempbool2
;
2465 wxPy_BEGIN_ALLOW_THREADS
;
2466 wxStyledTextCtrl_StyleSetVisible(_arg0
,_arg1
,_arg2
);
2468 wxPy_END_ALLOW_THREADS
;
2469 } Py_INCREF(Py_None
);
2470 _resultobj
= Py_None
;
2474 #define wxStyledTextCtrl_GetCaretPeriod(_swigobj) (_swigobj->GetCaretPeriod())
2475 static PyObject
*_wrap_wxStyledTextCtrl_GetCaretPeriod(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2476 PyObject
* _resultobj
;
2478 wxStyledTextCtrl
* _arg0
;
2479 PyObject
* _argo0
= 0;
2480 char *_kwnames
[] = { "self", NULL
};
2483 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCaretPeriod",_kwnames
,&_argo0
))
2486 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2487 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2488 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCaretPeriod. Expected _wxStyledTextCtrl_p.");
2493 wxPy_BEGIN_ALLOW_THREADS
;
2494 _result
= (int )wxStyledTextCtrl_GetCaretPeriod(_arg0
);
2496 wxPy_END_ALLOW_THREADS
;
2497 } _resultobj
= Py_BuildValue("i",_result
);
2501 #define wxStyledTextCtrl_SetCaretPeriod(_swigobj,_swigarg0) (_swigobj->SetCaretPeriod(_swigarg0))
2502 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretPeriod(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2503 PyObject
* _resultobj
;
2504 wxStyledTextCtrl
* _arg0
;
2506 PyObject
* _argo0
= 0;
2507 char *_kwnames
[] = { "self","periodMilliseconds", NULL
};
2510 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCaretPeriod",_kwnames
,&_argo0
,&_arg1
))
2513 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2514 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2515 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretPeriod. Expected _wxStyledTextCtrl_p.");
2520 wxPy_BEGIN_ALLOW_THREADS
;
2521 wxStyledTextCtrl_SetCaretPeriod(_arg0
,_arg1
);
2523 wxPy_END_ALLOW_THREADS
;
2524 } Py_INCREF(Py_None
);
2525 _resultobj
= Py_None
;
2529 #define wxStyledTextCtrl_SetWordChars(_swigobj,_swigarg0) (_swigobj->SetWordChars(_swigarg0))
2530 static PyObject
*_wrap_wxStyledTextCtrl_SetWordChars(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2531 PyObject
* _resultobj
;
2532 wxStyledTextCtrl
* _arg0
;
2534 PyObject
* _argo0
= 0;
2535 PyObject
* _obj1
= 0;
2536 char *_kwnames
[] = { "self","characters", NULL
};
2539 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetWordChars",_kwnames
,&_argo0
,&_obj1
))
2542 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2543 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2544 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetWordChars. Expected _wxStyledTextCtrl_p.");
2549 #if PYTHON_API_VERSION >= 1009
2550 char* tmpPtr
; int tmpSize
;
2551 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
2552 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2555 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
2557 _arg1
= new wxString(tmpPtr
, tmpSize
);
2559 if (!PyString_Check(_obj1
)) {
2560 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
2563 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
2567 wxPy_BEGIN_ALLOW_THREADS
;
2568 wxStyledTextCtrl_SetWordChars(_arg0
,*_arg1
);
2570 wxPy_END_ALLOW_THREADS
;
2571 } Py_INCREF(Py_None
);
2572 _resultobj
= Py_None
;
2580 #define wxStyledTextCtrl_BeginUndoAction(_swigobj) (_swigobj->BeginUndoAction())
2581 static PyObject
*_wrap_wxStyledTextCtrl_BeginUndoAction(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2582 PyObject
* _resultobj
;
2583 wxStyledTextCtrl
* _arg0
;
2584 PyObject
* _argo0
= 0;
2585 char *_kwnames
[] = { "self", NULL
};
2588 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_BeginUndoAction",_kwnames
,&_argo0
))
2591 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2592 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2593 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_BeginUndoAction. Expected _wxStyledTextCtrl_p.");
2598 wxPy_BEGIN_ALLOW_THREADS
;
2599 wxStyledTextCtrl_BeginUndoAction(_arg0
);
2601 wxPy_END_ALLOW_THREADS
;
2602 } Py_INCREF(Py_None
);
2603 _resultobj
= Py_None
;
2607 #define wxStyledTextCtrl_EndUndoAction(_swigobj) (_swigobj->EndUndoAction())
2608 static PyObject
*_wrap_wxStyledTextCtrl_EndUndoAction(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2609 PyObject
* _resultobj
;
2610 wxStyledTextCtrl
* _arg0
;
2611 PyObject
* _argo0
= 0;
2612 char *_kwnames
[] = { "self", NULL
};
2615 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_EndUndoAction",_kwnames
,&_argo0
))
2618 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2619 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2620 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_EndUndoAction. Expected _wxStyledTextCtrl_p.");
2625 wxPy_BEGIN_ALLOW_THREADS
;
2626 wxStyledTextCtrl_EndUndoAction(_arg0
);
2628 wxPy_END_ALLOW_THREADS
;
2629 } Py_INCREF(Py_None
);
2630 _resultobj
= Py_None
;
2634 #define wxStyledTextCtrl_IndicatorSetStyle(_swigobj,_swigarg0,_swigarg1) (_swigobj->IndicatorSetStyle(_swigarg0,_swigarg1))
2635 static PyObject
*_wrap_wxStyledTextCtrl_IndicatorSetStyle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2636 PyObject
* _resultobj
;
2637 wxStyledTextCtrl
* _arg0
;
2640 PyObject
* _argo0
= 0;
2641 char *_kwnames
[] = { "self","indic","style", NULL
};
2644 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_IndicatorSetStyle",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2647 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2648 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2649 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_IndicatorSetStyle. Expected _wxStyledTextCtrl_p.");
2654 wxPy_BEGIN_ALLOW_THREADS
;
2655 wxStyledTextCtrl_IndicatorSetStyle(_arg0
,_arg1
,_arg2
);
2657 wxPy_END_ALLOW_THREADS
;
2658 } Py_INCREF(Py_None
);
2659 _resultobj
= Py_None
;
2663 #define wxStyledTextCtrl_IndicatorGetStyle(_swigobj,_swigarg0) (_swigobj->IndicatorGetStyle(_swigarg0))
2664 static PyObject
*_wrap_wxStyledTextCtrl_IndicatorGetStyle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2665 PyObject
* _resultobj
;
2667 wxStyledTextCtrl
* _arg0
;
2669 PyObject
* _argo0
= 0;
2670 char *_kwnames
[] = { "self","indic", NULL
};
2673 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_IndicatorGetStyle",_kwnames
,&_argo0
,&_arg1
))
2676 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2677 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2678 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_IndicatorGetStyle. Expected _wxStyledTextCtrl_p.");
2683 wxPy_BEGIN_ALLOW_THREADS
;
2684 _result
= (int )wxStyledTextCtrl_IndicatorGetStyle(_arg0
,_arg1
);
2686 wxPy_END_ALLOW_THREADS
;
2687 } _resultobj
= Py_BuildValue("i",_result
);
2691 #define wxStyledTextCtrl_IndicatorSetForeground(_swigobj,_swigarg0,_swigarg1) (_swigobj->IndicatorSetForeground(_swigarg0,_swigarg1))
2692 static PyObject
*_wrap_wxStyledTextCtrl_IndicatorSetForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2693 PyObject
* _resultobj
;
2694 wxStyledTextCtrl
* _arg0
;
2697 PyObject
* _argo0
= 0;
2699 PyObject
* _obj2
= 0;
2700 char *_kwnames
[] = { "self","indic","fore", NULL
};
2703 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_IndicatorSetForeground",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
2706 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2707 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2708 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_IndicatorSetForeground. Expected _wxStyledTextCtrl_p.");
2714 if (! wxColour_helper(_obj2
, &_arg2
))
2718 wxPy_BEGIN_ALLOW_THREADS
;
2719 wxStyledTextCtrl_IndicatorSetForeground(_arg0
,_arg1
,*_arg2
);
2721 wxPy_END_ALLOW_THREADS
;
2722 } Py_INCREF(Py_None
);
2723 _resultobj
= Py_None
;
2727 #define wxStyledTextCtrl_IndicatorGetForeground(_swigobj,_swigarg0) (_swigobj->IndicatorGetForeground(_swigarg0))
2728 static PyObject
*_wrap_wxStyledTextCtrl_IndicatorGetForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2729 PyObject
* _resultobj
;
2731 wxStyledTextCtrl
* _arg0
;
2733 PyObject
* _argo0
= 0;
2734 char *_kwnames
[] = { "self","indic", NULL
};
2738 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_IndicatorGetForeground",_kwnames
,&_argo0
,&_arg1
))
2741 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2742 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2743 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_IndicatorGetForeground. Expected _wxStyledTextCtrl_p.");
2748 wxPy_BEGIN_ALLOW_THREADS
;
2749 _result
= new wxColour (wxStyledTextCtrl_IndicatorGetForeground(_arg0
,_arg1
));
2751 wxPy_END_ALLOW_THREADS
;
2752 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxColour_p");
2753 _resultobj
= Py_BuildValue("s",_ptemp
);
2757 #define wxStyledTextCtrl_SetStyleBits(_swigobj,_swigarg0) (_swigobj->SetStyleBits(_swigarg0))
2758 static PyObject
*_wrap_wxStyledTextCtrl_SetStyleBits(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2759 PyObject
* _resultobj
;
2760 wxStyledTextCtrl
* _arg0
;
2762 PyObject
* _argo0
= 0;
2763 char *_kwnames
[] = { "self","bits", NULL
};
2766 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetStyleBits",_kwnames
,&_argo0
,&_arg1
))
2769 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2770 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2771 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetStyleBits. Expected _wxStyledTextCtrl_p.");
2776 wxPy_BEGIN_ALLOW_THREADS
;
2777 wxStyledTextCtrl_SetStyleBits(_arg0
,_arg1
);
2779 wxPy_END_ALLOW_THREADS
;
2780 } Py_INCREF(Py_None
);
2781 _resultobj
= Py_None
;
2785 #define wxStyledTextCtrl_GetStyleBits(_swigobj) (_swigobj->GetStyleBits())
2786 static PyObject
*_wrap_wxStyledTextCtrl_GetStyleBits(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2787 PyObject
* _resultobj
;
2789 wxStyledTextCtrl
* _arg0
;
2790 PyObject
* _argo0
= 0;
2791 char *_kwnames
[] = { "self", NULL
};
2794 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetStyleBits",_kwnames
,&_argo0
))
2797 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2798 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2799 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetStyleBits. Expected _wxStyledTextCtrl_p.");
2804 wxPy_BEGIN_ALLOW_THREADS
;
2805 _result
= (int )wxStyledTextCtrl_GetStyleBits(_arg0
);
2807 wxPy_END_ALLOW_THREADS
;
2808 } _resultobj
= Py_BuildValue("i",_result
);
2812 #define wxStyledTextCtrl_SetLineState(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLineState(_swigarg0,_swigarg1))
2813 static PyObject
*_wrap_wxStyledTextCtrl_SetLineState(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2814 PyObject
* _resultobj
;
2815 wxStyledTextCtrl
* _arg0
;
2818 PyObject
* _argo0
= 0;
2819 char *_kwnames
[] = { "self","line","state", NULL
};
2822 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetLineState",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
2825 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2826 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2827 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetLineState. Expected _wxStyledTextCtrl_p.");
2832 wxPy_BEGIN_ALLOW_THREADS
;
2833 wxStyledTextCtrl_SetLineState(_arg0
,_arg1
,_arg2
);
2835 wxPy_END_ALLOW_THREADS
;
2836 } Py_INCREF(Py_None
);
2837 _resultobj
= Py_None
;
2841 #define wxStyledTextCtrl_GetLineState(_swigobj,_swigarg0) (_swigobj->GetLineState(_swigarg0))
2842 static PyObject
*_wrap_wxStyledTextCtrl_GetLineState(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2843 PyObject
* _resultobj
;
2845 wxStyledTextCtrl
* _arg0
;
2847 PyObject
* _argo0
= 0;
2848 char *_kwnames
[] = { "self","line", NULL
};
2851 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLineState",_kwnames
,&_argo0
,&_arg1
))
2854 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2855 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2856 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineState. Expected _wxStyledTextCtrl_p.");
2861 wxPy_BEGIN_ALLOW_THREADS
;
2862 _result
= (int )wxStyledTextCtrl_GetLineState(_arg0
,_arg1
);
2864 wxPy_END_ALLOW_THREADS
;
2865 } _resultobj
= Py_BuildValue("i",_result
);
2869 #define wxStyledTextCtrl_GetMaxLineState(_swigobj) (_swigobj->GetMaxLineState())
2870 static PyObject
*_wrap_wxStyledTextCtrl_GetMaxLineState(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2871 PyObject
* _resultobj
;
2873 wxStyledTextCtrl
* _arg0
;
2874 PyObject
* _argo0
= 0;
2875 char *_kwnames
[] = { "self", NULL
};
2878 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetMaxLineState",_kwnames
,&_argo0
))
2881 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2882 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2883 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMaxLineState. Expected _wxStyledTextCtrl_p.");
2888 wxPy_BEGIN_ALLOW_THREADS
;
2889 _result
= (int )wxStyledTextCtrl_GetMaxLineState(_arg0
);
2891 wxPy_END_ALLOW_THREADS
;
2892 } _resultobj
= Py_BuildValue("i",_result
);
2896 #define wxStyledTextCtrl_GetCaretLineVisible(_swigobj) (_swigobj->GetCaretLineVisible())
2897 static PyObject
*_wrap_wxStyledTextCtrl_GetCaretLineVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2898 PyObject
* _resultobj
;
2900 wxStyledTextCtrl
* _arg0
;
2901 PyObject
* _argo0
= 0;
2902 char *_kwnames
[] = { "self", NULL
};
2905 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCaretLineVisible",_kwnames
,&_argo0
))
2908 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2909 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2910 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCaretLineVisible. Expected _wxStyledTextCtrl_p.");
2915 wxPy_BEGIN_ALLOW_THREADS
;
2916 _result
= (bool )wxStyledTextCtrl_GetCaretLineVisible(_arg0
);
2918 wxPy_END_ALLOW_THREADS
;
2919 } _resultobj
= Py_BuildValue("i",_result
);
2923 #define wxStyledTextCtrl_SetCaretLineVisible(_swigobj,_swigarg0) (_swigobj->SetCaretLineVisible(_swigarg0))
2924 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretLineVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2925 PyObject
* _resultobj
;
2926 wxStyledTextCtrl
* _arg0
;
2928 PyObject
* _argo0
= 0;
2930 char *_kwnames
[] = { "self","show", NULL
};
2933 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCaretLineVisible",_kwnames
,&_argo0
,&tempbool1
))
2936 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2937 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2938 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretLineVisible. Expected _wxStyledTextCtrl_p.");
2942 _arg1
= (bool ) tempbool1
;
2944 wxPy_BEGIN_ALLOW_THREADS
;
2945 wxStyledTextCtrl_SetCaretLineVisible(_arg0
,_arg1
);
2947 wxPy_END_ALLOW_THREADS
;
2948 } Py_INCREF(Py_None
);
2949 _resultobj
= Py_None
;
2953 #define wxStyledTextCtrl_GetCaretLineBack(_swigobj) (_swigobj->GetCaretLineBack())
2954 static PyObject
*_wrap_wxStyledTextCtrl_GetCaretLineBack(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2955 PyObject
* _resultobj
;
2957 wxStyledTextCtrl
* _arg0
;
2958 PyObject
* _argo0
= 0;
2959 char *_kwnames
[] = { "self", NULL
};
2963 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCaretLineBack",_kwnames
,&_argo0
))
2966 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2967 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2968 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCaretLineBack. Expected _wxStyledTextCtrl_p.");
2973 wxPy_BEGIN_ALLOW_THREADS
;
2974 _result
= new wxColour (wxStyledTextCtrl_GetCaretLineBack(_arg0
));
2976 wxPy_END_ALLOW_THREADS
;
2977 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxColour_p");
2978 _resultobj
= Py_BuildValue("s",_ptemp
);
2982 #define wxStyledTextCtrl_SetCaretLineBack(_swigobj,_swigarg0) (_swigobj->SetCaretLineBack(_swigarg0))
2983 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretLineBack(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
2984 PyObject
* _resultobj
;
2985 wxStyledTextCtrl
* _arg0
;
2987 PyObject
* _argo0
= 0;
2989 PyObject
* _obj1
= 0;
2990 char *_kwnames
[] = { "self","back", NULL
};
2993 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetCaretLineBack",_kwnames
,&_argo0
,&_obj1
))
2996 if (_argo0
== Py_None
) { _arg0
= NULL
; }
2997 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
2998 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretLineBack. Expected _wxStyledTextCtrl_p.");
3004 if (! wxColour_helper(_obj1
, &_arg1
))
3008 wxPy_BEGIN_ALLOW_THREADS
;
3009 wxStyledTextCtrl_SetCaretLineBack(_arg0
,*_arg1
);
3011 wxPy_END_ALLOW_THREADS
;
3012 } Py_INCREF(Py_None
);
3013 _resultobj
= Py_None
;
3017 #define wxStyledTextCtrl_AutoCompShow(_swigobj,_swigarg0,_swigarg1) (_swigobj->AutoCompShow(_swigarg0,_swigarg1))
3018 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompShow(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3019 PyObject
* _resultobj
;
3020 wxStyledTextCtrl
* _arg0
;
3023 PyObject
* _argo0
= 0;
3024 PyObject
* _obj2
= 0;
3025 char *_kwnames
[] = { "self","lenEntered","itemList", NULL
};
3028 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_AutoCompShow",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
3031 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3032 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3033 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompShow. Expected _wxStyledTextCtrl_p.");
3038 #if PYTHON_API_VERSION >= 1009
3039 char* tmpPtr
; int tmpSize
;
3040 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
3041 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3044 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
3046 _arg2
= new wxString(tmpPtr
, tmpSize
);
3048 if (!PyString_Check(_obj2
)) {
3049 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3052 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
3056 wxPy_BEGIN_ALLOW_THREADS
;
3057 wxStyledTextCtrl_AutoCompShow(_arg0
,_arg1
,*_arg2
);
3059 wxPy_END_ALLOW_THREADS
;
3060 } Py_INCREF(Py_None
);
3061 _resultobj
= Py_None
;
3069 #define wxStyledTextCtrl_AutoCompCancel(_swigobj) (_swigobj->AutoCompCancel())
3070 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompCancel(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3071 PyObject
* _resultobj
;
3072 wxStyledTextCtrl
* _arg0
;
3073 PyObject
* _argo0
= 0;
3074 char *_kwnames
[] = { "self", NULL
};
3077 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompCancel",_kwnames
,&_argo0
))
3080 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3081 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3082 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompCancel. Expected _wxStyledTextCtrl_p.");
3087 wxPy_BEGIN_ALLOW_THREADS
;
3088 wxStyledTextCtrl_AutoCompCancel(_arg0
);
3090 wxPy_END_ALLOW_THREADS
;
3091 } Py_INCREF(Py_None
);
3092 _resultobj
= Py_None
;
3096 #define wxStyledTextCtrl_AutoCompActive(_swigobj) (_swigobj->AutoCompActive())
3097 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompActive(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3098 PyObject
* _resultobj
;
3100 wxStyledTextCtrl
* _arg0
;
3101 PyObject
* _argo0
= 0;
3102 char *_kwnames
[] = { "self", NULL
};
3105 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompActive",_kwnames
,&_argo0
))
3108 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3109 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3110 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompActive. Expected _wxStyledTextCtrl_p.");
3115 wxPy_BEGIN_ALLOW_THREADS
;
3116 _result
= (bool )wxStyledTextCtrl_AutoCompActive(_arg0
);
3118 wxPy_END_ALLOW_THREADS
;
3119 } _resultobj
= Py_BuildValue("i",_result
);
3123 #define wxStyledTextCtrl_AutoCompPosStart(_swigobj) (_swigobj->AutoCompPosStart())
3124 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompPosStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3125 PyObject
* _resultobj
;
3127 wxStyledTextCtrl
* _arg0
;
3128 PyObject
* _argo0
= 0;
3129 char *_kwnames
[] = { "self", NULL
};
3132 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompPosStart",_kwnames
,&_argo0
))
3135 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3136 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3137 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompPosStart. Expected _wxStyledTextCtrl_p.");
3142 wxPy_BEGIN_ALLOW_THREADS
;
3143 _result
= (int )wxStyledTextCtrl_AutoCompPosStart(_arg0
);
3145 wxPy_END_ALLOW_THREADS
;
3146 } _resultobj
= Py_BuildValue("i",_result
);
3150 #define wxStyledTextCtrl_AutoCompComplete(_swigobj) (_swigobj->AutoCompComplete())
3151 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompComplete(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3152 PyObject
* _resultobj
;
3153 wxStyledTextCtrl
* _arg0
;
3154 PyObject
* _argo0
= 0;
3155 char *_kwnames
[] = { "self", NULL
};
3158 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompComplete",_kwnames
,&_argo0
))
3161 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3162 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3163 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompComplete. Expected _wxStyledTextCtrl_p.");
3168 wxPy_BEGIN_ALLOW_THREADS
;
3169 wxStyledTextCtrl_AutoCompComplete(_arg0
);
3171 wxPy_END_ALLOW_THREADS
;
3172 } Py_INCREF(Py_None
);
3173 _resultobj
= Py_None
;
3177 #define wxStyledTextCtrl_AutoCompStops(_swigobj,_swigarg0) (_swigobj->AutoCompStops(_swigarg0))
3178 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompStops(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3179 PyObject
* _resultobj
;
3180 wxStyledTextCtrl
* _arg0
;
3182 PyObject
* _argo0
= 0;
3183 PyObject
* _obj1
= 0;
3184 char *_kwnames
[] = { "self","characterSet", NULL
};
3187 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AutoCompStops",_kwnames
,&_argo0
,&_obj1
))
3190 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3191 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3192 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompStops. Expected _wxStyledTextCtrl_p.");
3197 #if PYTHON_API_VERSION >= 1009
3198 char* tmpPtr
; int tmpSize
;
3199 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
3200 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3203 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
3205 _arg1
= new wxString(tmpPtr
, tmpSize
);
3207 if (!PyString_Check(_obj1
)) {
3208 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3211 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
3215 wxPy_BEGIN_ALLOW_THREADS
;
3216 wxStyledTextCtrl_AutoCompStops(_arg0
,*_arg1
);
3218 wxPy_END_ALLOW_THREADS
;
3219 } Py_INCREF(Py_None
);
3220 _resultobj
= Py_None
;
3228 #define wxStyledTextCtrl_AutoCompSetSeparator(_swigobj,_swigarg0) (_swigobj->AutoCompSetSeparator(_swigarg0))
3229 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetSeparator(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3230 PyObject
* _resultobj
;
3231 wxStyledTextCtrl
* _arg0
;
3233 PyObject
* _argo0
= 0;
3234 char *_kwnames
[] = { "self","separatorCharacter", NULL
};
3237 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_AutoCompSetSeparator",_kwnames
,&_argo0
,&_arg1
))
3240 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3241 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3242 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetSeparator. Expected _wxStyledTextCtrl_p.");
3247 wxPy_BEGIN_ALLOW_THREADS
;
3248 wxStyledTextCtrl_AutoCompSetSeparator(_arg0
,_arg1
);
3250 wxPy_END_ALLOW_THREADS
;
3251 } Py_INCREF(Py_None
);
3252 _resultobj
= Py_None
;
3256 #define wxStyledTextCtrl_AutoCompGetSeparator(_swigobj) (_swigobj->AutoCompGetSeparator())
3257 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompGetSeparator(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3258 PyObject
* _resultobj
;
3260 wxStyledTextCtrl
* _arg0
;
3261 PyObject
* _argo0
= 0;
3262 char *_kwnames
[] = { "self", NULL
};
3265 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompGetSeparator",_kwnames
,&_argo0
))
3268 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3269 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3270 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompGetSeparator. Expected _wxStyledTextCtrl_p.");
3275 wxPy_BEGIN_ALLOW_THREADS
;
3276 _result
= (int )wxStyledTextCtrl_AutoCompGetSeparator(_arg0
);
3278 wxPy_END_ALLOW_THREADS
;
3279 } _resultobj
= Py_BuildValue("i",_result
);
3283 #define wxStyledTextCtrl_AutoCompSelect(_swigobj,_swigarg0) (_swigobj->AutoCompSelect(_swigarg0))
3284 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSelect(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3285 PyObject
* _resultobj
;
3286 wxStyledTextCtrl
* _arg0
;
3288 PyObject
* _argo0
= 0;
3289 PyObject
* _obj1
= 0;
3290 char *_kwnames
[] = { "self","text", NULL
};
3293 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AutoCompSelect",_kwnames
,&_argo0
,&_obj1
))
3296 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3297 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3298 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSelect. Expected _wxStyledTextCtrl_p.");
3303 #if PYTHON_API_VERSION >= 1009
3304 char* tmpPtr
; int tmpSize
;
3305 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
3306 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3309 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
3311 _arg1
= new wxString(tmpPtr
, tmpSize
);
3313 if (!PyString_Check(_obj1
)) {
3314 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3317 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
3321 wxPy_BEGIN_ALLOW_THREADS
;
3322 wxStyledTextCtrl_AutoCompSelect(_arg0
,*_arg1
);
3324 wxPy_END_ALLOW_THREADS
;
3325 } Py_INCREF(Py_None
);
3326 _resultobj
= Py_None
;
3334 #define wxStyledTextCtrl_AutoCompSetCancelAtStart(_swigobj,_swigarg0) (_swigobj->AutoCompSetCancelAtStart(_swigarg0))
3335 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetCancelAtStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3336 PyObject
* _resultobj
;
3337 wxStyledTextCtrl
* _arg0
;
3339 PyObject
* _argo0
= 0;
3341 char *_kwnames
[] = { "self","cancel", NULL
};
3344 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_AutoCompSetCancelAtStart",_kwnames
,&_argo0
,&tempbool1
))
3347 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3348 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3349 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetCancelAtStart. Expected _wxStyledTextCtrl_p.");
3353 _arg1
= (bool ) tempbool1
;
3355 wxPy_BEGIN_ALLOW_THREADS
;
3356 wxStyledTextCtrl_AutoCompSetCancelAtStart(_arg0
,_arg1
);
3358 wxPy_END_ALLOW_THREADS
;
3359 } Py_INCREF(Py_None
);
3360 _resultobj
= Py_None
;
3364 #define wxStyledTextCtrl_AutoCompGetCancelAtStart(_swigobj) (_swigobj->AutoCompGetCancelAtStart())
3365 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompGetCancelAtStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3366 PyObject
* _resultobj
;
3368 wxStyledTextCtrl
* _arg0
;
3369 PyObject
* _argo0
= 0;
3370 char *_kwnames
[] = { "self", NULL
};
3373 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompGetCancelAtStart",_kwnames
,&_argo0
))
3376 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3377 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3378 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompGetCancelAtStart. Expected _wxStyledTextCtrl_p.");
3383 wxPy_BEGIN_ALLOW_THREADS
;
3384 _result
= (bool )wxStyledTextCtrl_AutoCompGetCancelAtStart(_arg0
);
3386 wxPy_END_ALLOW_THREADS
;
3387 } _resultobj
= Py_BuildValue("i",_result
);
3391 #define wxStyledTextCtrl_AutoCompSetFillUps(_swigobj,_swigarg0) (_swigobj->AutoCompSetFillUps(_swigarg0))
3392 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetFillUps(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3393 PyObject
* _resultobj
;
3394 wxStyledTextCtrl
* _arg0
;
3396 PyObject
* _argo0
= 0;
3397 PyObject
* _obj1
= 0;
3398 char *_kwnames
[] = { "self","characterSet", NULL
};
3401 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AutoCompSetFillUps",_kwnames
,&_argo0
,&_obj1
))
3404 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3405 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3406 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetFillUps. Expected _wxStyledTextCtrl_p.");
3411 #if PYTHON_API_VERSION >= 1009
3412 char* tmpPtr
; int tmpSize
;
3413 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
3414 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3417 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
3419 _arg1
= new wxString(tmpPtr
, tmpSize
);
3421 if (!PyString_Check(_obj1
)) {
3422 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3425 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
3429 wxPy_BEGIN_ALLOW_THREADS
;
3430 wxStyledTextCtrl_AutoCompSetFillUps(_arg0
,*_arg1
);
3432 wxPy_END_ALLOW_THREADS
;
3433 } Py_INCREF(Py_None
);
3434 _resultobj
= Py_None
;
3442 #define wxStyledTextCtrl_AutoCompSetChooseSingle(_swigobj,_swigarg0) (_swigobj->AutoCompSetChooseSingle(_swigarg0))
3443 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetChooseSingle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3444 PyObject
* _resultobj
;
3445 wxStyledTextCtrl
* _arg0
;
3447 PyObject
* _argo0
= 0;
3449 char *_kwnames
[] = { "self","chooseSingle", NULL
};
3452 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_AutoCompSetChooseSingle",_kwnames
,&_argo0
,&tempbool1
))
3455 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3456 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3457 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetChooseSingle. Expected _wxStyledTextCtrl_p.");
3461 _arg1
= (bool ) tempbool1
;
3463 wxPy_BEGIN_ALLOW_THREADS
;
3464 wxStyledTextCtrl_AutoCompSetChooseSingle(_arg0
,_arg1
);
3466 wxPy_END_ALLOW_THREADS
;
3467 } Py_INCREF(Py_None
);
3468 _resultobj
= Py_None
;
3472 #define wxStyledTextCtrl_AutoCompGetChooseSingle(_swigobj) (_swigobj->AutoCompGetChooseSingle())
3473 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompGetChooseSingle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3474 PyObject
* _resultobj
;
3476 wxStyledTextCtrl
* _arg0
;
3477 PyObject
* _argo0
= 0;
3478 char *_kwnames
[] = { "self", NULL
};
3481 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompGetChooseSingle",_kwnames
,&_argo0
))
3484 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3485 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3486 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompGetChooseSingle. Expected _wxStyledTextCtrl_p.");
3491 wxPy_BEGIN_ALLOW_THREADS
;
3492 _result
= (bool )wxStyledTextCtrl_AutoCompGetChooseSingle(_arg0
);
3494 wxPy_END_ALLOW_THREADS
;
3495 } _resultobj
= Py_BuildValue("i",_result
);
3499 #define wxStyledTextCtrl_AutoCompSetIgnoreCase(_swigobj,_swigarg0) (_swigobj->AutoCompSetIgnoreCase(_swigarg0))
3500 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetIgnoreCase(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3501 PyObject
* _resultobj
;
3502 wxStyledTextCtrl
* _arg0
;
3504 PyObject
* _argo0
= 0;
3506 char *_kwnames
[] = { "self","ignoreCase", NULL
};
3509 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_AutoCompSetIgnoreCase",_kwnames
,&_argo0
,&tempbool1
))
3512 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3513 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3514 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetIgnoreCase. Expected _wxStyledTextCtrl_p.");
3518 _arg1
= (bool ) tempbool1
;
3520 wxPy_BEGIN_ALLOW_THREADS
;
3521 wxStyledTextCtrl_AutoCompSetIgnoreCase(_arg0
,_arg1
);
3523 wxPy_END_ALLOW_THREADS
;
3524 } Py_INCREF(Py_None
);
3525 _resultobj
= Py_None
;
3529 #define wxStyledTextCtrl_AutoCompGetIgnoreCase(_swigobj) (_swigobj->AutoCompGetIgnoreCase())
3530 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompGetIgnoreCase(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3531 PyObject
* _resultobj
;
3533 wxStyledTextCtrl
* _arg0
;
3534 PyObject
* _argo0
= 0;
3535 char *_kwnames
[] = { "self", NULL
};
3538 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompGetIgnoreCase",_kwnames
,&_argo0
))
3541 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3542 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3543 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompGetIgnoreCase. Expected _wxStyledTextCtrl_p.");
3548 wxPy_BEGIN_ALLOW_THREADS
;
3549 _result
= (bool )wxStyledTextCtrl_AutoCompGetIgnoreCase(_arg0
);
3551 wxPy_END_ALLOW_THREADS
;
3552 } _resultobj
= Py_BuildValue("i",_result
);
3556 #define wxStyledTextCtrl_UserListShow(_swigobj,_swigarg0,_swigarg1) (_swigobj->UserListShow(_swigarg0,_swigarg1))
3557 static PyObject
*_wrap_wxStyledTextCtrl_UserListShow(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3558 PyObject
* _resultobj
;
3559 wxStyledTextCtrl
* _arg0
;
3562 PyObject
* _argo0
= 0;
3563 PyObject
* _obj2
= 0;
3564 char *_kwnames
[] = { "self","listType","itemList", NULL
};
3567 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_UserListShow",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
3570 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3571 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3572 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_UserListShow. Expected _wxStyledTextCtrl_p.");
3577 #if PYTHON_API_VERSION >= 1009
3578 char* tmpPtr
; int tmpSize
;
3579 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
3580 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3583 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
3585 _arg2
= new wxString(tmpPtr
, tmpSize
);
3587 if (!PyString_Check(_obj2
)) {
3588 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
3591 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
3595 wxPy_BEGIN_ALLOW_THREADS
;
3596 wxStyledTextCtrl_UserListShow(_arg0
,_arg1
,*_arg2
);
3598 wxPy_END_ALLOW_THREADS
;
3599 } Py_INCREF(Py_None
);
3600 _resultobj
= Py_None
;
3608 #define wxStyledTextCtrl_AutoCompSetAutoHide(_swigobj,_swigarg0) (_swigobj->AutoCompSetAutoHide(_swigarg0))
3609 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompSetAutoHide(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3610 PyObject
* _resultobj
;
3611 wxStyledTextCtrl
* _arg0
;
3613 PyObject
* _argo0
= 0;
3615 char *_kwnames
[] = { "self","autoHide", NULL
};
3618 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_AutoCompSetAutoHide",_kwnames
,&_argo0
,&tempbool1
))
3621 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3622 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3623 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompSetAutoHide. Expected _wxStyledTextCtrl_p.");
3627 _arg1
= (bool ) tempbool1
;
3629 wxPy_BEGIN_ALLOW_THREADS
;
3630 wxStyledTextCtrl_AutoCompSetAutoHide(_arg0
,_arg1
);
3632 wxPy_END_ALLOW_THREADS
;
3633 } Py_INCREF(Py_None
);
3634 _resultobj
= Py_None
;
3638 #define wxStyledTextCtrl_AutoCompGetAutoHide(_swigobj) (_swigobj->AutoCompGetAutoHide())
3639 static PyObject
*_wrap_wxStyledTextCtrl_AutoCompGetAutoHide(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3640 PyObject
* _resultobj
;
3642 wxStyledTextCtrl
* _arg0
;
3643 PyObject
* _argo0
= 0;
3644 char *_kwnames
[] = { "self", NULL
};
3647 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_AutoCompGetAutoHide",_kwnames
,&_argo0
))
3650 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3651 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3652 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AutoCompGetAutoHide. Expected _wxStyledTextCtrl_p.");
3657 wxPy_BEGIN_ALLOW_THREADS
;
3658 _result
= (bool )wxStyledTextCtrl_AutoCompGetAutoHide(_arg0
);
3660 wxPy_END_ALLOW_THREADS
;
3661 } _resultobj
= Py_BuildValue("i",_result
);
3665 #define wxStyledTextCtrl_SetIndent(_swigobj,_swigarg0) (_swigobj->SetIndent(_swigarg0))
3666 static PyObject
*_wrap_wxStyledTextCtrl_SetIndent(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3667 PyObject
* _resultobj
;
3668 wxStyledTextCtrl
* _arg0
;
3670 PyObject
* _argo0
= 0;
3671 char *_kwnames
[] = { "self","indentSize", NULL
};
3674 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetIndent",_kwnames
,&_argo0
,&_arg1
))
3677 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3678 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3679 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetIndent. Expected _wxStyledTextCtrl_p.");
3684 wxPy_BEGIN_ALLOW_THREADS
;
3685 wxStyledTextCtrl_SetIndent(_arg0
,_arg1
);
3687 wxPy_END_ALLOW_THREADS
;
3688 } Py_INCREF(Py_None
);
3689 _resultobj
= Py_None
;
3693 #define wxStyledTextCtrl_GetIndent(_swigobj) (_swigobj->GetIndent())
3694 static PyObject
*_wrap_wxStyledTextCtrl_GetIndent(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3695 PyObject
* _resultobj
;
3697 wxStyledTextCtrl
* _arg0
;
3698 PyObject
* _argo0
= 0;
3699 char *_kwnames
[] = { "self", NULL
};
3702 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetIndent",_kwnames
,&_argo0
))
3705 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3706 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3707 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetIndent. Expected _wxStyledTextCtrl_p.");
3712 wxPy_BEGIN_ALLOW_THREADS
;
3713 _result
= (int )wxStyledTextCtrl_GetIndent(_arg0
);
3715 wxPy_END_ALLOW_THREADS
;
3716 } _resultobj
= Py_BuildValue("i",_result
);
3720 #define wxStyledTextCtrl_SetUseTabs(_swigobj,_swigarg0) (_swigobj->SetUseTabs(_swigarg0))
3721 static PyObject
*_wrap_wxStyledTextCtrl_SetUseTabs(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3722 PyObject
* _resultobj
;
3723 wxStyledTextCtrl
* _arg0
;
3725 PyObject
* _argo0
= 0;
3727 char *_kwnames
[] = { "self","useTabs", NULL
};
3730 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetUseTabs",_kwnames
,&_argo0
,&tempbool1
))
3733 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3734 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3735 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetUseTabs. Expected _wxStyledTextCtrl_p.");
3739 _arg1
= (bool ) tempbool1
;
3741 wxPy_BEGIN_ALLOW_THREADS
;
3742 wxStyledTextCtrl_SetUseTabs(_arg0
,_arg1
);
3744 wxPy_END_ALLOW_THREADS
;
3745 } Py_INCREF(Py_None
);
3746 _resultobj
= Py_None
;
3750 #define wxStyledTextCtrl_GetUseTabs(_swigobj) (_swigobj->GetUseTabs())
3751 static PyObject
*_wrap_wxStyledTextCtrl_GetUseTabs(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3752 PyObject
* _resultobj
;
3754 wxStyledTextCtrl
* _arg0
;
3755 PyObject
* _argo0
= 0;
3756 char *_kwnames
[] = { "self", NULL
};
3759 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetUseTabs",_kwnames
,&_argo0
))
3762 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3763 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3764 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetUseTabs. Expected _wxStyledTextCtrl_p.");
3769 wxPy_BEGIN_ALLOW_THREADS
;
3770 _result
= (bool )wxStyledTextCtrl_GetUseTabs(_arg0
);
3772 wxPy_END_ALLOW_THREADS
;
3773 } _resultobj
= Py_BuildValue("i",_result
);
3777 #define wxStyledTextCtrl_SetLineIndentation(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetLineIndentation(_swigarg0,_swigarg1))
3778 static PyObject
*_wrap_wxStyledTextCtrl_SetLineIndentation(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3779 PyObject
* _resultobj
;
3780 wxStyledTextCtrl
* _arg0
;
3783 PyObject
* _argo0
= 0;
3784 char *_kwnames
[] = { "self","line","indentSize", NULL
};
3787 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetLineIndentation",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
3790 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3791 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3792 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetLineIndentation. Expected _wxStyledTextCtrl_p.");
3797 wxPy_BEGIN_ALLOW_THREADS
;
3798 wxStyledTextCtrl_SetLineIndentation(_arg0
,_arg1
,_arg2
);
3800 wxPy_END_ALLOW_THREADS
;
3801 } Py_INCREF(Py_None
);
3802 _resultobj
= Py_None
;
3806 #define wxStyledTextCtrl_GetLineIndentation(_swigobj,_swigarg0) (_swigobj->GetLineIndentation(_swigarg0))
3807 static PyObject
*_wrap_wxStyledTextCtrl_GetLineIndentation(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3808 PyObject
* _resultobj
;
3810 wxStyledTextCtrl
* _arg0
;
3812 PyObject
* _argo0
= 0;
3813 char *_kwnames
[] = { "self","line", NULL
};
3816 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLineIndentation",_kwnames
,&_argo0
,&_arg1
))
3819 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3820 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3821 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineIndentation. Expected _wxStyledTextCtrl_p.");
3826 wxPy_BEGIN_ALLOW_THREADS
;
3827 _result
= (int )wxStyledTextCtrl_GetLineIndentation(_arg0
,_arg1
);
3829 wxPy_END_ALLOW_THREADS
;
3830 } _resultobj
= Py_BuildValue("i",_result
);
3834 #define wxStyledTextCtrl_GetLineIndentPosition(_swigobj,_swigarg0) (_swigobj->GetLineIndentPosition(_swigarg0))
3835 static PyObject
*_wrap_wxStyledTextCtrl_GetLineIndentPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3836 PyObject
* _resultobj
;
3838 wxStyledTextCtrl
* _arg0
;
3840 PyObject
* _argo0
= 0;
3841 char *_kwnames
[] = { "self","line", NULL
};
3844 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLineIndentPosition",_kwnames
,&_argo0
,&_arg1
))
3847 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3848 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3849 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineIndentPosition. Expected _wxStyledTextCtrl_p.");
3854 wxPy_BEGIN_ALLOW_THREADS
;
3855 _result
= (int )wxStyledTextCtrl_GetLineIndentPosition(_arg0
,_arg1
);
3857 wxPy_END_ALLOW_THREADS
;
3858 } _resultobj
= Py_BuildValue("i",_result
);
3862 #define wxStyledTextCtrl_GetColumn(_swigobj,_swigarg0) (_swigobj->GetColumn(_swigarg0))
3863 static PyObject
*_wrap_wxStyledTextCtrl_GetColumn(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3864 PyObject
* _resultobj
;
3866 wxStyledTextCtrl
* _arg0
;
3868 PyObject
* _argo0
= 0;
3869 char *_kwnames
[] = { "self","pos", NULL
};
3872 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetColumn",_kwnames
,&_argo0
,&_arg1
))
3875 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3876 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3877 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetColumn. Expected _wxStyledTextCtrl_p.");
3882 wxPy_BEGIN_ALLOW_THREADS
;
3883 _result
= (int )wxStyledTextCtrl_GetColumn(_arg0
,_arg1
);
3885 wxPy_END_ALLOW_THREADS
;
3886 } _resultobj
= Py_BuildValue("i",_result
);
3890 #define wxStyledTextCtrl_SetUseHorizontalScrollBar(_swigobj,_swigarg0) (_swigobj->SetUseHorizontalScrollBar(_swigarg0))
3891 static PyObject
*_wrap_wxStyledTextCtrl_SetUseHorizontalScrollBar(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3892 PyObject
* _resultobj
;
3893 wxStyledTextCtrl
* _arg0
;
3895 PyObject
* _argo0
= 0;
3897 char *_kwnames
[] = { "self","show", NULL
};
3900 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetUseHorizontalScrollBar",_kwnames
,&_argo0
,&tempbool1
))
3903 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3904 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3905 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetUseHorizontalScrollBar. Expected _wxStyledTextCtrl_p.");
3909 _arg1
= (bool ) tempbool1
;
3911 wxPy_BEGIN_ALLOW_THREADS
;
3912 wxStyledTextCtrl_SetUseHorizontalScrollBar(_arg0
,_arg1
);
3914 wxPy_END_ALLOW_THREADS
;
3915 } Py_INCREF(Py_None
);
3916 _resultobj
= Py_None
;
3920 #define wxStyledTextCtrl_GetUseHorizontalScrollBar(_swigobj) (_swigobj->GetUseHorizontalScrollBar())
3921 static PyObject
*_wrap_wxStyledTextCtrl_GetUseHorizontalScrollBar(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3922 PyObject
* _resultobj
;
3924 wxStyledTextCtrl
* _arg0
;
3925 PyObject
* _argo0
= 0;
3926 char *_kwnames
[] = { "self", NULL
};
3929 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetUseHorizontalScrollBar",_kwnames
,&_argo0
))
3932 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3933 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3934 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetUseHorizontalScrollBar. Expected _wxStyledTextCtrl_p.");
3939 wxPy_BEGIN_ALLOW_THREADS
;
3940 _result
= (bool )wxStyledTextCtrl_GetUseHorizontalScrollBar(_arg0
);
3942 wxPy_END_ALLOW_THREADS
;
3943 } _resultobj
= Py_BuildValue("i",_result
);
3947 #define wxStyledTextCtrl_SetIndentationGuides(_swigobj,_swigarg0) (_swigobj->SetIndentationGuides(_swigarg0))
3948 static PyObject
*_wrap_wxStyledTextCtrl_SetIndentationGuides(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3949 PyObject
* _resultobj
;
3950 wxStyledTextCtrl
* _arg0
;
3952 PyObject
* _argo0
= 0;
3954 char *_kwnames
[] = { "self","show", NULL
};
3957 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetIndentationGuides",_kwnames
,&_argo0
,&tempbool1
))
3960 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3961 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3962 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetIndentationGuides. Expected _wxStyledTextCtrl_p.");
3966 _arg1
= (bool ) tempbool1
;
3968 wxPy_BEGIN_ALLOW_THREADS
;
3969 wxStyledTextCtrl_SetIndentationGuides(_arg0
,_arg1
);
3971 wxPy_END_ALLOW_THREADS
;
3972 } Py_INCREF(Py_None
);
3973 _resultobj
= Py_None
;
3977 #define wxStyledTextCtrl_GetIndentationGuides(_swigobj) (_swigobj->GetIndentationGuides())
3978 static PyObject
*_wrap_wxStyledTextCtrl_GetIndentationGuides(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
3979 PyObject
* _resultobj
;
3981 wxStyledTextCtrl
* _arg0
;
3982 PyObject
* _argo0
= 0;
3983 char *_kwnames
[] = { "self", NULL
};
3986 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetIndentationGuides",_kwnames
,&_argo0
))
3989 if (_argo0
== Py_None
) { _arg0
= NULL
; }
3990 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
3991 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetIndentationGuides. Expected _wxStyledTextCtrl_p.");
3996 wxPy_BEGIN_ALLOW_THREADS
;
3997 _result
= (bool )wxStyledTextCtrl_GetIndentationGuides(_arg0
);
3999 wxPy_END_ALLOW_THREADS
;
4000 } _resultobj
= Py_BuildValue("i",_result
);
4004 #define wxStyledTextCtrl_SetHighlightGuide(_swigobj,_swigarg0) (_swigobj->SetHighlightGuide(_swigarg0))
4005 static PyObject
*_wrap_wxStyledTextCtrl_SetHighlightGuide(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4006 PyObject
* _resultobj
;
4007 wxStyledTextCtrl
* _arg0
;
4009 PyObject
* _argo0
= 0;
4010 char *_kwnames
[] = { "self","column", NULL
};
4013 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetHighlightGuide",_kwnames
,&_argo0
,&_arg1
))
4016 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4017 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4018 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetHighlightGuide. Expected _wxStyledTextCtrl_p.");
4023 wxPy_BEGIN_ALLOW_THREADS
;
4024 wxStyledTextCtrl_SetHighlightGuide(_arg0
,_arg1
);
4026 wxPy_END_ALLOW_THREADS
;
4027 } Py_INCREF(Py_None
);
4028 _resultobj
= Py_None
;
4032 #define wxStyledTextCtrl_GetHighlightGuide(_swigobj) (_swigobj->GetHighlightGuide())
4033 static PyObject
*_wrap_wxStyledTextCtrl_GetHighlightGuide(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4034 PyObject
* _resultobj
;
4036 wxStyledTextCtrl
* _arg0
;
4037 PyObject
* _argo0
= 0;
4038 char *_kwnames
[] = { "self", NULL
};
4041 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetHighlightGuide",_kwnames
,&_argo0
))
4044 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4045 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4046 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetHighlightGuide. Expected _wxStyledTextCtrl_p.");
4051 wxPy_BEGIN_ALLOW_THREADS
;
4052 _result
= (int )wxStyledTextCtrl_GetHighlightGuide(_arg0
);
4054 wxPy_END_ALLOW_THREADS
;
4055 } _resultobj
= Py_BuildValue("i",_result
);
4059 #define wxStyledTextCtrl_GetLineEndPosition(_swigobj,_swigarg0) (_swigobj->GetLineEndPosition(_swigarg0))
4060 static PyObject
*_wrap_wxStyledTextCtrl_GetLineEndPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4061 PyObject
* _resultobj
;
4063 wxStyledTextCtrl
* _arg0
;
4065 PyObject
* _argo0
= 0;
4066 char *_kwnames
[] = { "self","line", NULL
};
4069 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLineEndPosition",_kwnames
,&_argo0
,&_arg1
))
4072 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4073 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4074 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineEndPosition. Expected _wxStyledTextCtrl_p.");
4079 wxPy_BEGIN_ALLOW_THREADS
;
4080 _result
= (int )wxStyledTextCtrl_GetLineEndPosition(_arg0
,_arg1
);
4082 wxPy_END_ALLOW_THREADS
;
4083 } _resultobj
= Py_BuildValue("i",_result
);
4087 #define wxStyledTextCtrl_GetCodePage(_swigobj) (_swigobj->GetCodePage())
4088 static PyObject
*_wrap_wxStyledTextCtrl_GetCodePage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4089 PyObject
* _resultobj
;
4091 wxStyledTextCtrl
* _arg0
;
4092 PyObject
* _argo0
= 0;
4093 char *_kwnames
[] = { "self", NULL
};
4096 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCodePage",_kwnames
,&_argo0
))
4099 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4100 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4101 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCodePage. Expected _wxStyledTextCtrl_p.");
4106 wxPy_BEGIN_ALLOW_THREADS
;
4107 _result
= (int )wxStyledTextCtrl_GetCodePage(_arg0
);
4109 wxPy_END_ALLOW_THREADS
;
4110 } _resultobj
= Py_BuildValue("i",_result
);
4114 #define wxStyledTextCtrl_GetCaretForeground(_swigobj) (_swigobj->GetCaretForeground())
4115 static PyObject
*_wrap_wxStyledTextCtrl_GetCaretForeground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4116 PyObject
* _resultobj
;
4118 wxStyledTextCtrl
* _arg0
;
4119 PyObject
* _argo0
= 0;
4120 char *_kwnames
[] = { "self", NULL
};
4124 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCaretForeground",_kwnames
,&_argo0
))
4127 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4128 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4129 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCaretForeground. Expected _wxStyledTextCtrl_p.");
4134 wxPy_BEGIN_ALLOW_THREADS
;
4135 _result
= new wxColour (wxStyledTextCtrl_GetCaretForeground(_arg0
));
4137 wxPy_END_ALLOW_THREADS
;
4138 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxColour_p");
4139 _resultobj
= Py_BuildValue("s",_ptemp
);
4143 #define wxStyledTextCtrl_GetReadOnly(_swigobj) (_swigobj->GetReadOnly())
4144 static PyObject
*_wrap_wxStyledTextCtrl_GetReadOnly(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4145 PyObject
* _resultobj
;
4147 wxStyledTextCtrl
* _arg0
;
4148 PyObject
* _argo0
= 0;
4149 char *_kwnames
[] = { "self", NULL
};
4152 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetReadOnly",_kwnames
,&_argo0
))
4155 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4156 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4157 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetReadOnly. Expected _wxStyledTextCtrl_p.");
4162 wxPy_BEGIN_ALLOW_THREADS
;
4163 _result
= (bool )wxStyledTextCtrl_GetReadOnly(_arg0
);
4165 wxPy_END_ALLOW_THREADS
;
4166 } _resultobj
= Py_BuildValue("i",_result
);
4170 #define wxStyledTextCtrl_SetCurrentPos(_swigobj,_swigarg0) (_swigobj->SetCurrentPos(_swigarg0))
4171 static PyObject
*_wrap_wxStyledTextCtrl_SetCurrentPos(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4172 PyObject
* _resultobj
;
4173 wxStyledTextCtrl
* _arg0
;
4175 PyObject
* _argo0
= 0;
4176 char *_kwnames
[] = { "self","pos", NULL
};
4179 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCurrentPos",_kwnames
,&_argo0
,&_arg1
))
4182 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4183 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4184 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCurrentPos. Expected _wxStyledTextCtrl_p.");
4189 wxPy_BEGIN_ALLOW_THREADS
;
4190 wxStyledTextCtrl_SetCurrentPos(_arg0
,_arg1
);
4192 wxPy_END_ALLOW_THREADS
;
4193 } Py_INCREF(Py_None
);
4194 _resultobj
= Py_None
;
4198 #define wxStyledTextCtrl_SetSelectionStart(_swigobj,_swigarg0) (_swigobj->SetSelectionStart(_swigarg0))
4199 static PyObject
*_wrap_wxStyledTextCtrl_SetSelectionStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4200 PyObject
* _resultobj
;
4201 wxStyledTextCtrl
* _arg0
;
4203 PyObject
* _argo0
= 0;
4204 char *_kwnames
[] = { "self","pos", NULL
};
4207 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetSelectionStart",_kwnames
,&_argo0
,&_arg1
))
4210 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4211 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4212 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSelectionStart. Expected _wxStyledTextCtrl_p.");
4217 wxPy_BEGIN_ALLOW_THREADS
;
4218 wxStyledTextCtrl_SetSelectionStart(_arg0
,_arg1
);
4220 wxPy_END_ALLOW_THREADS
;
4221 } Py_INCREF(Py_None
);
4222 _resultobj
= Py_None
;
4226 #define wxStyledTextCtrl_GetSelectionStart(_swigobj) (_swigobj->GetSelectionStart())
4227 static PyObject
*_wrap_wxStyledTextCtrl_GetSelectionStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4228 PyObject
* _resultobj
;
4230 wxStyledTextCtrl
* _arg0
;
4231 PyObject
* _argo0
= 0;
4232 char *_kwnames
[] = { "self", NULL
};
4235 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSelectionStart",_kwnames
,&_argo0
))
4238 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4239 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4240 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSelectionStart. Expected _wxStyledTextCtrl_p.");
4245 wxPy_BEGIN_ALLOW_THREADS
;
4246 _result
= (int )wxStyledTextCtrl_GetSelectionStart(_arg0
);
4248 wxPy_END_ALLOW_THREADS
;
4249 } _resultobj
= Py_BuildValue("i",_result
);
4253 #define wxStyledTextCtrl_SetSelectionEnd(_swigobj,_swigarg0) (_swigobj->SetSelectionEnd(_swigarg0))
4254 static PyObject
*_wrap_wxStyledTextCtrl_SetSelectionEnd(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4255 PyObject
* _resultobj
;
4256 wxStyledTextCtrl
* _arg0
;
4258 PyObject
* _argo0
= 0;
4259 char *_kwnames
[] = { "self","pos", NULL
};
4262 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetSelectionEnd",_kwnames
,&_argo0
,&_arg1
))
4265 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4266 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4267 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSelectionEnd. Expected _wxStyledTextCtrl_p.");
4272 wxPy_BEGIN_ALLOW_THREADS
;
4273 wxStyledTextCtrl_SetSelectionEnd(_arg0
,_arg1
);
4275 wxPy_END_ALLOW_THREADS
;
4276 } Py_INCREF(Py_None
);
4277 _resultobj
= Py_None
;
4281 #define wxStyledTextCtrl_GetSelectionEnd(_swigobj) (_swigobj->GetSelectionEnd())
4282 static PyObject
*_wrap_wxStyledTextCtrl_GetSelectionEnd(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4283 PyObject
* _resultobj
;
4285 wxStyledTextCtrl
* _arg0
;
4286 PyObject
* _argo0
= 0;
4287 char *_kwnames
[] = { "self", NULL
};
4290 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSelectionEnd",_kwnames
,&_argo0
))
4293 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4294 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4295 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSelectionEnd. Expected _wxStyledTextCtrl_p.");
4300 wxPy_BEGIN_ALLOW_THREADS
;
4301 _result
= (int )wxStyledTextCtrl_GetSelectionEnd(_arg0
);
4303 wxPy_END_ALLOW_THREADS
;
4304 } _resultobj
= Py_BuildValue("i",_result
);
4308 #define wxStyledTextCtrl_SetPrintMagnification(_swigobj,_swigarg0) (_swigobj->SetPrintMagnification(_swigarg0))
4309 static PyObject
*_wrap_wxStyledTextCtrl_SetPrintMagnification(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4310 PyObject
* _resultobj
;
4311 wxStyledTextCtrl
* _arg0
;
4313 PyObject
* _argo0
= 0;
4314 char *_kwnames
[] = { "self","magnification", NULL
};
4317 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetPrintMagnification",_kwnames
,&_argo0
,&_arg1
))
4320 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4321 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4322 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetPrintMagnification. Expected _wxStyledTextCtrl_p.");
4327 wxPy_BEGIN_ALLOW_THREADS
;
4328 wxStyledTextCtrl_SetPrintMagnification(_arg0
,_arg1
);
4330 wxPy_END_ALLOW_THREADS
;
4331 } Py_INCREF(Py_None
);
4332 _resultobj
= Py_None
;
4336 #define wxStyledTextCtrl_GetPrintMagnification(_swigobj) (_swigobj->GetPrintMagnification())
4337 static PyObject
*_wrap_wxStyledTextCtrl_GetPrintMagnification(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4338 PyObject
* _resultobj
;
4340 wxStyledTextCtrl
* _arg0
;
4341 PyObject
* _argo0
= 0;
4342 char *_kwnames
[] = { "self", NULL
};
4345 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetPrintMagnification",_kwnames
,&_argo0
))
4348 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4349 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4350 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetPrintMagnification. Expected _wxStyledTextCtrl_p.");
4355 wxPy_BEGIN_ALLOW_THREADS
;
4356 _result
= (int )wxStyledTextCtrl_GetPrintMagnification(_arg0
);
4358 wxPy_END_ALLOW_THREADS
;
4359 } _resultobj
= Py_BuildValue("i",_result
);
4363 #define wxStyledTextCtrl_SetPrintColourMode(_swigobj,_swigarg0) (_swigobj->SetPrintColourMode(_swigarg0))
4364 static PyObject
*_wrap_wxStyledTextCtrl_SetPrintColourMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4365 PyObject
* _resultobj
;
4366 wxStyledTextCtrl
* _arg0
;
4368 PyObject
* _argo0
= 0;
4369 char *_kwnames
[] = { "self","mode", NULL
};
4372 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetPrintColourMode",_kwnames
,&_argo0
,&_arg1
))
4375 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4376 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4377 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetPrintColourMode. Expected _wxStyledTextCtrl_p.");
4382 wxPy_BEGIN_ALLOW_THREADS
;
4383 wxStyledTextCtrl_SetPrintColourMode(_arg0
,_arg1
);
4385 wxPy_END_ALLOW_THREADS
;
4386 } Py_INCREF(Py_None
);
4387 _resultobj
= Py_None
;
4391 #define wxStyledTextCtrl_GetPrintColourMode(_swigobj) (_swigobj->GetPrintColourMode())
4392 static PyObject
*_wrap_wxStyledTextCtrl_GetPrintColourMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4393 PyObject
* _resultobj
;
4395 wxStyledTextCtrl
* _arg0
;
4396 PyObject
* _argo0
= 0;
4397 char *_kwnames
[] = { "self", NULL
};
4400 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetPrintColourMode",_kwnames
,&_argo0
))
4403 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4404 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4405 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetPrintColourMode. Expected _wxStyledTextCtrl_p.");
4410 wxPy_BEGIN_ALLOW_THREADS
;
4411 _result
= (int )wxStyledTextCtrl_GetPrintColourMode(_arg0
);
4413 wxPy_END_ALLOW_THREADS
;
4414 } _resultobj
= Py_BuildValue("i",_result
);
4418 #define wxStyledTextCtrl_FindText(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4) (_swigobj->FindText(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4))
4419 static PyObject
*_wrap_wxStyledTextCtrl_FindText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4420 PyObject
* _resultobj
;
4422 wxStyledTextCtrl
* _arg0
;
4428 PyObject
* _argo0
= 0;
4429 PyObject
* _obj3
= 0;
4432 char *_kwnames
[] = { "self","minPos","maxPos","text","caseSensitive","wholeWord", NULL
};
4435 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiiOii:wxStyledTextCtrl_FindText",_kwnames
,&_argo0
,&_arg1
,&_arg2
,&_obj3
,&tempbool4
,&tempbool5
))
4438 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4439 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4440 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_FindText. Expected _wxStyledTextCtrl_p.");
4445 #if PYTHON_API_VERSION >= 1009
4446 char* tmpPtr
; int tmpSize
;
4447 if (!PyString_Check(_obj3
) && !PyUnicode_Check(_obj3
)) {
4448 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
4451 if (PyString_AsStringAndSize(_obj3
, &tmpPtr
, &tmpSize
) == -1)
4453 _arg3
= new wxString(tmpPtr
, tmpSize
);
4455 if (!PyString_Check(_obj3
)) {
4456 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
4459 _arg3
= new wxString(PyString_AS_STRING(_obj3
), PyString_GET_SIZE(_obj3
));
4462 _arg4
= (bool ) tempbool4
;
4463 _arg5
= (bool ) tempbool5
;
4465 wxPy_BEGIN_ALLOW_THREADS
;
4466 _result
= (int )wxStyledTextCtrl_FindText(_arg0
,_arg1
,_arg2
,*_arg3
,_arg4
,_arg5
);
4468 wxPy_END_ALLOW_THREADS
;
4469 } _resultobj
= Py_BuildValue("i",_result
);
4477 #define wxStyledTextCtrl_FormatRange(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6) (_swigobj->FormatRange(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5,_swigarg6))
4478 static PyObject
*_wrap_wxStyledTextCtrl_FormatRange(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4479 PyObject
* _resultobj
;
4481 wxStyledTextCtrl
* _arg0
;
4489 PyObject
* _argo0
= 0;
4491 PyObject
* _argo4
= 0;
4492 PyObject
* _argo5
= 0;
4494 PyObject
* _obj6
= 0;
4496 PyObject
* _obj7
= 0;
4497 char *_kwnames
[] = { "self","doDraw","startPos","endPos","draw","target","renderRect","pageRect", NULL
};
4500 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiiiOOOO:wxStyledTextCtrl_FormatRange",_kwnames
,&_argo0
,&tempbool1
,&_arg2
,&_arg3
,&_argo4
,&_argo5
,&_obj6
,&_obj7
))
4503 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4504 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4505 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_FormatRange. Expected _wxStyledTextCtrl_p.");
4509 _arg1
= (bool ) tempbool1
;
4511 if (_argo4
== Py_None
) { _arg4
= NULL
; }
4512 else if (SWIG_GetPtrObj(_argo4
,(void **) &_arg4
,"_wxDC_p")) {
4513 PyErr_SetString(PyExc_TypeError
,"Type error in argument 5 of wxStyledTextCtrl_FormatRange. Expected _wxDC_p.");
4518 if (_argo5
== Py_None
) { _arg5
= NULL
; }
4519 else if (SWIG_GetPtrObj(_argo5
,(void **) &_arg5
,"_wxDC_p")) {
4520 PyErr_SetString(PyExc_TypeError
,"Type error in argument 6 of wxStyledTextCtrl_FormatRange. Expected _wxDC_p.");
4526 if (! wxRect_helper(_obj6
, &_arg6
))
4531 if (! wxRect_helper(_obj7
, &_arg7
))
4535 wxPy_BEGIN_ALLOW_THREADS
;
4536 _result
= (int )wxStyledTextCtrl_FormatRange(_arg0
,_arg1
,_arg2
,_arg3
,_arg4
,_arg5
,*_arg6
,*_arg7
);
4538 wxPy_END_ALLOW_THREADS
;
4539 } _resultobj
= Py_BuildValue("i",_result
);
4543 #define wxStyledTextCtrl_GetFirstVisibleLine(_swigobj) (_swigobj->GetFirstVisibleLine())
4544 static PyObject
*_wrap_wxStyledTextCtrl_GetFirstVisibleLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4545 PyObject
* _resultobj
;
4547 wxStyledTextCtrl
* _arg0
;
4548 PyObject
* _argo0
= 0;
4549 char *_kwnames
[] = { "self", NULL
};
4552 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetFirstVisibleLine",_kwnames
,&_argo0
))
4555 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4556 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4557 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetFirstVisibleLine. Expected _wxStyledTextCtrl_p.");
4562 wxPy_BEGIN_ALLOW_THREADS
;
4563 _result
= (int )wxStyledTextCtrl_GetFirstVisibleLine(_arg0
);
4565 wxPy_END_ALLOW_THREADS
;
4566 } _resultobj
= Py_BuildValue("i",_result
);
4570 #define wxStyledTextCtrl_GetLine(_swigobj,_swigarg0) (_swigobj->GetLine(_swigarg0))
4571 static PyObject
*_wrap_wxStyledTextCtrl_GetLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4572 PyObject
* _resultobj
;
4574 wxStyledTextCtrl
* _arg0
;
4576 PyObject
* _argo0
= 0;
4577 char *_kwnames
[] = { "self","line", NULL
};
4580 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLine",_kwnames
,&_argo0
,&_arg1
))
4583 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4584 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4585 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLine. Expected _wxStyledTextCtrl_p.");
4590 wxPy_BEGIN_ALLOW_THREADS
;
4591 _result
= new wxString (wxStyledTextCtrl_GetLine(_arg0
,_arg1
));
4593 wxPy_END_ALLOW_THREADS
;
4595 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
4603 #define wxStyledTextCtrl_GetLineCount(_swigobj) (_swigobj->GetLineCount())
4604 static PyObject
*_wrap_wxStyledTextCtrl_GetLineCount(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4605 PyObject
* _resultobj
;
4607 wxStyledTextCtrl
* _arg0
;
4608 PyObject
* _argo0
= 0;
4609 char *_kwnames
[] = { "self", NULL
};
4612 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetLineCount",_kwnames
,&_argo0
))
4615 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4616 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4617 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineCount. Expected _wxStyledTextCtrl_p.");
4622 wxPy_BEGIN_ALLOW_THREADS
;
4623 _result
= (int )wxStyledTextCtrl_GetLineCount(_arg0
);
4625 wxPy_END_ALLOW_THREADS
;
4626 } _resultobj
= Py_BuildValue("i",_result
);
4630 #define wxStyledTextCtrl_SetMarginLeft(_swigobj,_swigarg0) (_swigobj->SetMarginLeft(_swigarg0))
4631 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginLeft(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4632 PyObject
* _resultobj
;
4633 wxStyledTextCtrl
* _arg0
;
4635 PyObject
* _argo0
= 0;
4636 char *_kwnames
[] = { "self","pixelWidth", NULL
};
4639 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetMarginLeft",_kwnames
,&_argo0
,&_arg1
))
4642 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4643 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4644 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginLeft. Expected _wxStyledTextCtrl_p.");
4649 wxPy_BEGIN_ALLOW_THREADS
;
4650 wxStyledTextCtrl_SetMarginLeft(_arg0
,_arg1
);
4652 wxPy_END_ALLOW_THREADS
;
4653 } Py_INCREF(Py_None
);
4654 _resultobj
= Py_None
;
4658 #define wxStyledTextCtrl_GetMarginLeft(_swigobj) (_swigobj->GetMarginLeft())
4659 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginLeft(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4660 PyObject
* _resultobj
;
4662 wxStyledTextCtrl
* _arg0
;
4663 PyObject
* _argo0
= 0;
4664 char *_kwnames
[] = { "self", NULL
};
4667 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetMarginLeft",_kwnames
,&_argo0
))
4670 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4671 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4672 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginLeft. Expected _wxStyledTextCtrl_p.");
4677 wxPy_BEGIN_ALLOW_THREADS
;
4678 _result
= (int )wxStyledTextCtrl_GetMarginLeft(_arg0
);
4680 wxPy_END_ALLOW_THREADS
;
4681 } _resultobj
= Py_BuildValue("i",_result
);
4685 #define wxStyledTextCtrl_SetMarginRight(_swigobj,_swigarg0) (_swigobj->SetMarginRight(_swigarg0))
4686 static PyObject
*_wrap_wxStyledTextCtrl_SetMarginRight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4687 PyObject
* _resultobj
;
4688 wxStyledTextCtrl
* _arg0
;
4690 PyObject
* _argo0
= 0;
4691 char *_kwnames
[] = { "self","pixelWidth", NULL
};
4694 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetMarginRight",_kwnames
,&_argo0
,&_arg1
))
4697 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4698 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4699 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMarginRight. Expected _wxStyledTextCtrl_p.");
4704 wxPy_BEGIN_ALLOW_THREADS
;
4705 wxStyledTextCtrl_SetMarginRight(_arg0
,_arg1
);
4707 wxPy_END_ALLOW_THREADS
;
4708 } Py_INCREF(Py_None
);
4709 _resultobj
= Py_None
;
4713 #define wxStyledTextCtrl_GetMarginRight(_swigobj) (_swigobj->GetMarginRight())
4714 static PyObject
*_wrap_wxStyledTextCtrl_GetMarginRight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4715 PyObject
* _resultobj
;
4717 wxStyledTextCtrl
* _arg0
;
4718 PyObject
* _argo0
= 0;
4719 char *_kwnames
[] = { "self", NULL
};
4722 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetMarginRight",_kwnames
,&_argo0
))
4725 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4726 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4727 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMarginRight. Expected _wxStyledTextCtrl_p.");
4732 wxPy_BEGIN_ALLOW_THREADS
;
4733 _result
= (int )wxStyledTextCtrl_GetMarginRight(_arg0
);
4735 wxPy_END_ALLOW_THREADS
;
4736 } _resultobj
= Py_BuildValue("i",_result
);
4740 #define wxStyledTextCtrl_GetModify(_swigobj) (_swigobj->GetModify())
4741 static PyObject
*_wrap_wxStyledTextCtrl_GetModify(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4742 PyObject
* _resultobj
;
4744 wxStyledTextCtrl
* _arg0
;
4745 PyObject
* _argo0
= 0;
4746 char *_kwnames
[] = { "self", NULL
};
4749 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetModify",_kwnames
,&_argo0
))
4752 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4753 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4754 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetModify. Expected _wxStyledTextCtrl_p.");
4759 wxPy_BEGIN_ALLOW_THREADS
;
4760 _result
= (bool )wxStyledTextCtrl_GetModify(_arg0
);
4762 wxPy_END_ALLOW_THREADS
;
4763 } _resultobj
= Py_BuildValue("i",_result
);
4767 #define wxStyledTextCtrl_SetSelection(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetSelection(_swigarg0,_swigarg1))
4768 static PyObject
*_wrap_wxStyledTextCtrl_SetSelection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4769 PyObject
* _resultobj
;
4770 wxStyledTextCtrl
* _arg0
;
4773 PyObject
* _argo0
= 0;
4774 char *_kwnames
[] = { "self","start","end", NULL
};
4777 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetSelection",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
4780 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4781 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4782 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSelection. Expected _wxStyledTextCtrl_p.");
4787 wxPy_BEGIN_ALLOW_THREADS
;
4788 wxStyledTextCtrl_SetSelection(_arg0
,_arg1
,_arg2
);
4790 wxPy_END_ALLOW_THREADS
;
4791 } Py_INCREF(Py_None
);
4792 _resultobj
= Py_None
;
4796 #define wxStyledTextCtrl_GetSelectedText(_swigobj) (_swigobj->GetSelectedText())
4797 static PyObject
*_wrap_wxStyledTextCtrl_GetSelectedText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4798 PyObject
* _resultobj
;
4800 wxStyledTextCtrl
* _arg0
;
4801 PyObject
* _argo0
= 0;
4802 char *_kwnames
[] = { "self", NULL
};
4805 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSelectedText",_kwnames
,&_argo0
))
4808 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4809 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4810 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSelectedText. Expected _wxStyledTextCtrl_p.");
4815 wxPy_BEGIN_ALLOW_THREADS
;
4816 _result
= new wxString (wxStyledTextCtrl_GetSelectedText(_arg0
));
4818 wxPy_END_ALLOW_THREADS
;
4820 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
4828 #define wxStyledTextCtrl_GetTextRange(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetTextRange(_swigarg0,_swigarg1))
4829 static PyObject
*_wrap_wxStyledTextCtrl_GetTextRange(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4830 PyObject
* _resultobj
;
4832 wxStyledTextCtrl
* _arg0
;
4835 PyObject
* _argo0
= 0;
4836 char *_kwnames
[] = { "self","startPos","endPos", NULL
};
4839 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_GetTextRange",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
4842 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4843 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4844 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTextRange. Expected _wxStyledTextCtrl_p.");
4849 wxPy_BEGIN_ALLOW_THREADS
;
4850 _result
= new wxString (wxStyledTextCtrl_GetTextRange(_arg0
,_arg1
,_arg2
));
4852 wxPy_END_ALLOW_THREADS
;
4854 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
4862 #define wxStyledTextCtrl_HideSelection(_swigobj,_swigarg0) (_swigobj->HideSelection(_swigarg0))
4863 static PyObject
*_wrap_wxStyledTextCtrl_HideSelection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4864 PyObject
* _resultobj
;
4865 wxStyledTextCtrl
* _arg0
;
4867 PyObject
* _argo0
= 0;
4869 char *_kwnames
[] = { "self","normal", NULL
};
4872 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_HideSelection",_kwnames
,&_argo0
,&tempbool1
))
4875 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4876 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4877 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_HideSelection. Expected _wxStyledTextCtrl_p.");
4881 _arg1
= (bool ) tempbool1
;
4883 wxPy_BEGIN_ALLOW_THREADS
;
4884 wxStyledTextCtrl_HideSelection(_arg0
,_arg1
);
4886 wxPy_END_ALLOW_THREADS
;
4887 } Py_INCREF(Py_None
);
4888 _resultobj
= Py_None
;
4892 #define wxStyledTextCtrl_LineFromPosition(_swigobj,_swigarg0) (_swigobj->LineFromPosition(_swigarg0))
4893 static PyObject
*_wrap_wxStyledTextCtrl_LineFromPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4894 PyObject
* _resultobj
;
4896 wxStyledTextCtrl
* _arg0
;
4898 PyObject
* _argo0
= 0;
4899 char *_kwnames
[] = { "self","pos", NULL
};
4902 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_LineFromPosition",_kwnames
,&_argo0
,&_arg1
))
4905 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4906 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4907 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_LineFromPosition. Expected _wxStyledTextCtrl_p.");
4912 wxPy_BEGIN_ALLOW_THREADS
;
4913 _result
= (int )wxStyledTextCtrl_LineFromPosition(_arg0
,_arg1
);
4915 wxPy_END_ALLOW_THREADS
;
4916 } _resultobj
= Py_BuildValue("i",_result
);
4920 #define wxStyledTextCtrl_PositionFromLine(_swigobj,_swigarg0) (_swigobj->PositionFromLine(_swigarg0))
4921 static PyObject
*_wrap_wxStyledTextCtrl_PositionFromLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4922 PyObject
* _resultobj
;
4924 wxStyledTextCtrl
* _arg0
;
4926 PyObject
* _argo0
= 0;
4927 char *_kwnames
[] = { "self","line", NULL
};
4930 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_PositionFromLine",_kwnames
,&_argo0
,&_arg1
))
4933 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4934 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4935 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_PositionFromLine. Expected _wxStyledTextCtrl_p.");
4940 wxPy_BEGIN_ALLOW_THREADS
;
4941 _result
= (int )wxStyledTextCtrl_PositionFromLine(_arg0
,_arg1
);
4943 wxPy_END_ALLOW_THREADS
;
4944 } _resultobj
= Py_BuildValue("i",_result
);
4948 #define wxStyledTextCtrl_LineScroll(_swigobj,_swigarg0,_swigarg1) (_swigobj->LineScroll(_swigarg0,_swigarg1))
4949 static PyObject
*_wrap_wxStyledTextCtrl_LineScroll(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4950 PyObject
* _resultobj
;
4951 wxStyledTextCtrl
* _arg0
;
4954 PyObject
* _argo0
= 0;
4955 char *_kwnames
[] = { "self","columns","lines", NULL
};
4958 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_LineScroll",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
4961 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4962 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4963 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_LineScroll. Expected _wxStyledTextCtrl_p.");
4968 wxPy_BEGIN_ALLOW_THREADS
;
4969 wxStyledTextCtrl_LineScroll(_arg0
,_arg1
,_arg2
);
4971 wxPy_END_ALLOW_THREADS
;
4972 } Py_INCREF(Py_None
);
4973 _resultobj
= Py_None
;
4977 #define wxStyledTextCtrl_EnsureCaretVisible(_swigobj) (_swigobj->EnsureCaretVisible())
4978 static PyObject
*_wrap_wxStyledTextCtrl_EnsureCaretVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
4979 PyObject
* _resultobj
;
4980 wxStyledTextCtrl
* _arg0
;
4981 PyObject
* _argo0
= 0;
4982 char *_kwnames
[] = { "self", NULL
};
4985 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_EnsureCaretVisible",_kwnames
,&_argo0
))
4988 if (_argo0
== Py_None
) { _arg0
= NULL
; }
4989 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
4990 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_EnsureCaretVisible. Expected _wxStyledTextCtrl_p.");
4995 wxPy_BEGIN_ALLOW_THREADS
;
4996 wxStyledTextCtrl_EnsureCaretVisible(_arg0
);
4998 wxPy_END_ALLOW_THREADS
;
4999 } Py_INCREF(Py_None
);
5000 _resultobj
= Py_None
;
5004 #define wxStyledTextCtrl_ReplaceSelection(_swigobj,_swigarg0) (_swigobj->ReplaceSelection(_swigarg0))
5005 static PyObject
*_wrap_wxStyledTextCtrl_ReplaceSelection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5006 PyObject
* _resultobj
;
5007 wxStyledTextCtrl
* _arg0
;
5009 PyObject
* _argo0
= 0;
5010 PyObject
* _obj1
= 0;
5011 char *_kwnames
[] = { "self","text", NULL
};
5014 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_ReplaceSelection",_kwnames
,&_argo0
,&_obj1
))
5017 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5018 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5019 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ReplaceSelection. Expected _wxStyledTextCtrl_p.");
5024 #if PYTHON_API_VERSION >= 1009
5025 char* tmpPtr
; int tmpSize
;
5026 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
5027 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5030 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
5032 _arg1
= new wxString(tmpPtr
, tmpSize
);
5034 if (!PyString_Check(_obj1
)) {
5035 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5038 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
5042 wxPy_BEGIN_ALLOW_THREADS
;
5043 wxStyledTextCtrl_ReplaceSelection(_arg0
,*_arg1
);
5045 wxPy_END_ALLOW_THREADS
;
5046 } Py_INCREF(Py_None
);
5047 _resultobj
= Py_None
;
5055 #define wxStyledTextCtrl_SetReadOnly(_swigobj,_swigarg0) (_swigobj->SetReadOnly(_swigarg0))
5056 static PyObject
*_wrap_wxStyledTextCtrl_SetReadOnly(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5057 PyObject
* _resultobj
;
5058 wxStyledTextCtrl
* _arg0
;
5060 PyObject
* _argo0
= 0;
5062 char *_kwnames
[] = { "self","readOnly", NULL
};
5065 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetReadOnly",_kwnames
,&_argo0
,&tempbool1
))
5068 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5069 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5070 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetReadOnly. Expected _wxStyledTextCtrl_p.");
5074 _arg1
= (bool ) tempbool1
;
5076 wxPy_BEGIN_ALLOW_THREADS
;
5077 wxStyledTextCtrl_SetReadOnly(_arg0
,_arg1
);
5079 wxPy_END_ALLOW_THREADS
;
5080 } Py_INCREF(Py_None
);
5081 _resultobj
= Py_None
;
5085 #define wxStyledTextCtrl_CanPaste(_swigobj) (_swigobj->CanPaste())
5086 static PyObject
*_wrap_wxStyledTextCtrl_CanPaste(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5087 PyObject
* _resultobj
;
5089 wxStyledTextCtrl
* _arg0
;
5090 PyObject
* _argo0
= 0;
5091 char *_kwnames
[] = { "self", NULL
};
5094 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CanPaste",_kwnames
,&_argo0
))
5097 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5098 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5099 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CanPaste. Expected _wxStyledTextCtrl_p.");
5104 wxPy_BEGIN_ALLOW_THREADS
;
5105 _result
= (bool )wxStyledTextCtrl_CanPaste(_arg0
);
5107 wxPy_END_ALLOW_THREADS
;
5108 } _resultobj
= Py_BuildValue("i",_result
);
5112 #define wxStyledTextCtrl_CanUndo(_swigobj) (_swigobj->CanUndo())
5113 static PyObject
*_wrap_wxStyledTextCtrl_CanUndo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5114 PyObject
* _resultobj
;
5116 wxStyledTextCtrl
* _arg0
;
5117 PyObject
* _argo0
= 0;
5118 char *_kwnames
[] = { "self", NULL
};
5121 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CanUndo",_kwnames
,&_argo0
))
5124 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5125 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5126 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CanUndo. Expected _wxStyledTextCtrl_p.");
5131 wxPy_BEGIN_ALLOW_THREADS
;
5132 _result
= (bool )wxStyledTextCtrl_CanUndo(_arg0
);
5134 wxPy_END_ALLOW_THREADS
;
5135 } _resultobj
= Py_BuildValue("i",_result
);
5139 #define wxStyledTextCtrl_EmptyUndoBuffer(_swigobj) (_swigobj->EmptyUndoBuffer())
5140 static PyObject
*_wrap_wxStyledTextCtrl_EmptyUndoBuffer(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5141 PyObject
* _resultobj
;
5142 wxStyledTextCtrl
* _arg0
;
5143 PyObject
* _argo0
= 0;
5144 char *_kwnames
[] = { "self", NULL
};
5147 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_EmptyUndoBuffer",_kwnames
,&_argo0
))
5150 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5151 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5152 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_EmptyUndoBuffer. Expected _wxStyledTextCtrl_p.");
5157 wxPy_BEGIN_ALLOW_THREADS
;
5158 wxStyledTextCtrl_EmptyUndoBuffer(_arg0
);
5160 wxPy_END_ALLOW_THREADS
;
5161 } Py_INCREF(Py_None
);
5162 _resultobj
= Py_None
;
5166 #define wxStyledTextCtrl_Undo(_swigobj) (_swigobj->Undo())
5167 static PyObject
*_wrap_wxStyledTextCtrl_Undo(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5168 PyObject
* _resultobj
;
5169 wxStyledTextCtrl
* _arg0
;
5170 PyObject
* _argo0
= 0;
5171 char *_kwnames
[] = { "self", NULL
};
5174 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Undo",_kwnames
,&_argo0
))
5177 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5178 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5179 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Undo. Expected _wxStyledTextCtrl_p.");
5184 wxPy_BEGIN_ALLOW_THREADS
;
5185 wxStyledTextCtrl_Undo(_arg0
);
5187 wxPy_END_ALLOW_THREADS
;
5188 } Py_INCREF(Py_None
);
5189 _resultobj
= Py_None
;
5193 #define wxStyledTextCtrl_Cut(_swigobj) (_swigobj->Cut())
5194 static PyObject
*_wrap_wxStyledTextCtrl_Cut(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5195 PyObject
* _resultobj
;
5196 wxStyledTextCtrl
* _arg0
;
5197 PyObject
* _argo0
= 0;
5198 char *_kwnames
[] = { "self", NULL
};
5201 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Cut",_kwnames
,&_argo0
))
5204 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5205 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5206 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Cut. Expected _wxStyledTextCtrl_p.");
5211 wxPy_BEGIN_ALLOW_THREADS
;
5212 wxStyledTextCtrl_Cut(_arg0
);
5214 wxPy_END_ALLOW_THREADS
;
5215 } Py_INCREF(Py_None
);
5216 _resultobj
= Py_None
;
5220 #define wxStyledTextCtrl_Copy(_swigobj) (_swigobj->Copy())
5221 static PyObject
*_wrap_wxStyledTextCtrl_Copy(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5222 PyObject
* _resultobj
;
5223 wxStyledTextCtrl
* _arg0
;
5224 PyObject
* _argo0
= 0;
5225 char *_kwnames
[] = { "self", NULL
};
5228 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Copy",_kwnames
,&_argo0
))
5231 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5232 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5233 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Copy. Expected _wxStyledTextCtrl_p.");
5238 wxPy_BEGIN_ALLOW_THREADS
;
5239 wxStyledTextCtrl_Copy(_arg0
);
5241 wxPy_END_ALLOW_THREADS
;
5242 } Py_INCREF(Py_None
);
5243 _resultobj
= Py_None
;
5247 #define wxStyledTextCtrl_Paste(_swigobj) (_swigobj->Paste())
5248 static PyObject
*_wrap_wxStyledTextCtrl_Paste(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5249 PyObject
* _resultobj
;
5250 wxStyledTextCtrl
* _arg0
;
5251 PyObject
* _argo0
= 0;
5252 char *_kwnames
[] = { "self", NULL
};
5255 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Paste",_kwnames
,&_argo0
))
5258 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5259 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5260 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Paste. Expected _wxStyledTextCtrl_p.");
5265 wxPy_BEGIN_ALLOW_THREADS
;
5266 wxStyledTextCtrl_Paste(_arg0
);
5268 wxPy_END_ALLOW_THREADS
;
5269 } Py_INCREF(Py_None
);
5270 _resultobj
= Py_None
;
5274 #define wxStyledTextCtrl_Clear(_swigobj) (_swigobj->Clear())
5275 static PyObject
*_wrap_wxStyledTextCtrl_Clear(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5276 PyObject
* _resultobj
;
5277 wxStyledTextCtrl
* _arg0
;
5278 PyObject
* _argo0
= 0;
5279 char *_kwnames
[] = { "self", NULL
};
5282 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_Clear",_kwnames
,&_argo0
))
5285 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5286 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5287 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Clear. Expected _wxStyledTextCtrl_p.");
5292 wxPy_BEGIN_ALLOW_THREADS
;
5293 wxStyledTextCtrl_Clear(_arg0
);
5295 wxPy_END_ALLOW_THREADS
;
5296 } Py_INCREF(Py_None
);
5297 _resultobj
= Py_None
;
5301 #define wxStyledTextCtrl_SetText(_swigobj,_swigarg0) (_swigobj->SetText(_swigarg0))
5302 static PyObject
*_wrap_wxStyledTextCtrl_SetText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5303 PyObject
* _resultobj
;
5304 wxStyledTextCtrl
* _arg0
;
5306 PyObject
* _argo0
= 0;
5307 PyObject
* _obj1
= 0;
5308 char *_kwnames
[] = { "self","text", NULL
};
5311 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetText",_kwnames
,&_argo0
,&_obj1
))
5314 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5315 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5316 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetText. Expected _wxStyledTextCtrl_p.");
5321 #if PYTHON_API_VERSION >= 1009
5322 char* tmpPtr
; int tmpSize
;
5323 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
5324 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5327 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
5329 _arg1
= new wxString(tmpPtr
, tmpSize
);
5331 if (!PyString_Check(_obj1
)) {
5332 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5335 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
5339 wxPy_BEGIN_ALLOW_THREADS
;
5340 wxStyledTextCtrl_SetText(_arg0
,*_arg1
);
5342 wxPy_END_ALLOW_THREADS
;
5343 } Py_INCREF(Py_None
);
5344 _resultobj
= Py_None
;
5352 #define wxStyledTextCtrl_GetText(_swigobj) (_swigobj->GetText())
5353 static PyObject
*_wrap_wxStyledTextCtrl_GetText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5354 PyObject
* _resultobj
;
5356 wxStyledTextCtrl
* _arg0
;
5357 PyObject
* _argo0
= 0;
5358 char *_kwnames
[] = { "self", NULL
};
5361 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetText",_kwnames
,&_argo0
))
5364 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5365 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5366 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetText. Expected _wxStyledTextCtrl_p.");
5371 wxPy_BEGIN_ALLOW_THREADS
;
5372 _result
= new wxString (wxStyledTextCtrl_GetText(_arg0
));
5374 wxPy_END_ALLOW_THREADS
;
5376 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
5384 #define wxStyledTextCtrl_GetTextLength(_swigobj) (_swigobj->GetTextLength())
5385 static PyObject
*_wrap_wxStyledTextCtrl_GetTextLength(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5386 PyObject
* _resultobj
;
5388 wxStyledTextCtrl
* _arg0
;
5389 PyObject
* _argo0
= 0;
5390 char *_kwnames
[] = { "self", NULL
};
5393 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetTextLength",_kwnames
,&_argo0
))
5396 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5397 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5398 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTextLength. Expected _wxStyledTextCtrl_p.");
5403 wxPy_BEGIN_ALLOW_THREADS
;
5404 _result
= (int )wxStyledTextCtrl_GetTextLength(_arg0
);
5406 wxPy_END_ALLOW_THREADS
;
5407 } _resultobj
= Py_BuildValue("i",_result
);
5411 #define wxStyledTextCtrl_SetOvertype(_swigobj,_swigarg0) (_swigobj->SetOvertype(_swigarg0))
5412 static PyObject
*_wrap_wxStyledTextCtrl_SetOvertype(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5413 PyObject
* _resultobj
;
5414 wxStyledTextCtrl
* _arg0
;
5416 PyObject
* _argo0
= 0;
5418 char *_kwnames
[] = { "self","overtype", NULL
};
5421 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetOvertype",_kwnames
,&_argo0
,&tempbool1
))
5424 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5425 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5426 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetOvertype. Expected _wxStyledTextCtrl_p.");
5430 _arg1
= (bool ) tempbool1
;
5432 wxPy_BEGIN_ALLOW_THREADS
;
5433 wxStyledTextCtrl_SetOvertype(_arg0
,_arg1
);
5435 wxPy_END_ALLOW_THREADS
;
5436 } Py_INCREF(Py_None
);
5437 _resultobj
= Py_None
;
5441 #define wxStyledTextCtrl_GetOvertype(_swigobj) (_swigobj->GetOvertype())
5442 static PyObject
*_wrap_wxStyledTextCtrl_GetOvertype(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5443 PyObject
* _resultobj
;
5445 wxStyledTextCtrl
* _arg0
;
5446 PyObject
* _argo0
= 0;
5447 char *_kwnames
[] = { "self", NULL
};
5450 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetOvertype",_kwnames
,&_argo0
))
5453 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5454 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5455 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetOvertype. Expected _wxStyledTextCtrl_p.");
5460 wxPy_BEGIN_ALLOW_THREADS
;
5461 _result
= (bool )wxStyledTextCtrl_GetOvertype(_arg0
);
5463 wxPy_END_ALLOW_THREADS
;
5464 } _resultobj
= Py_BuildValue("i",_result
);
5468 #define wxStyledTextCtrl_SetCaretWidth(_swigobj,_swigarg0) (_swigobj->SetCaretWidth(_swigarg0))
5469 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5470 PyObject
* _resultobj
;
5471 wxStyledTextCtrl
* _arg0
;
5473 PyObject
* _argo0
= 0;
5474 char *_kwnames
[] = { "self","pixelWidth", NULL
};
5477 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCaretWidth",_kwnames
,&_argo0
,&_arg1
))
5480 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5481 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5482 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretWidth. Expected _wxStyledTextCtrl_p.");
5487 wxPy_BEGIN_ALLOW_THREADS
;
5488 wxStyledTextCtrl_SetCaretWidth(_arg0
,_arg1
);
5490 wxPy_END_ALLOW_THREADS
;
5491 } Py_INCREF(Py_None
);
5492 _resultobj
= Py_None
;
5496 #define wxStyledTextCtrl_GetCaretWidth(_swigobj) (_swigobj->GetCaretWidth())
5497 static PyObject
*_wrap_wxStyledTextCtrl_GetCaretWidth(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5498 PyObject
* _resultobj
;
5500 wxStyledTextCtrl
* _arg0
;
5501 PyObject
* _argo0
= 0;
5502 char *_kwnames
[] = { "self", NULL
};
5505 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCaretWidth",_kwnames
,&_argo0
))
5508 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5509 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5510 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCaretWidth. Expected _wxStyledTextCtrl_p.");
5515 wxPy_BEGIN_ALLOW_THREADS
;
5516 _result
= (int )wxStyledTextCtrl_GetCaretWidth(_arg0
);
5518 wxPy_END_ALLOW_THREADS
;
5519 } _resultobj
= Py_BuildValue("i",_result
);
5523 #define wxStyledTextCtrl_SetTargetStart(_swigobj,_swigarg0) (_swigobj->SetTargetStart(_swigarg0))
5524 static PyObject
*_wrap_wxStyledTextCtrl_SetTargetStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5525 PyObject
* _resultobj
;
5526 wxStyledTextCtrl
* _arg0
;
5528 PyObject
* _argo0
= 0;
5529 char *_kwnames
[] = { "self","pos", NULL
};
5532 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetTargetStart",_kwnames
,&_argo0
,&_arg1
))
5535 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5536 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5537 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetTargetStart. Expected _wxStyledTextCtrl_p.");
5542 wxPy_BEGIN_ALLOW_THREADS
;
5543 wxStyledTextCtrl_SetTargetStart(_arg0
,_arg1
);
5545 wxPy_END_ALLOW_THREADS
;
5546 } Py_INCREF(Py_None
);
5547 _resultobj
= Py_None
;
5551 #define wxStyledTextCtrl_GetTargetStart(_swigobj) (_swigobj->GetTargetStart())
5552 static PyObject
*_wrap_wxStyledTextCtrl_GetTargetStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5553 PyObject
* _resultobj
;
5555 wxStyledTextCtrl
* _arg0
;
5556 PyObject
* _argo0
= 0;
5557 char *_kwnames
[] = { "self", NULL
};
5560 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetTargetStart",_kwnames
,&_argo0
))
5563 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5564 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5565 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTargetStart. Expected _wxStyledTextCtrl_p.");
5570 wxPy_BEGIN_ALLOW_THREADS
;
5571 _result
= (int )wxStyledTextCtrl_GetTargetStart(_arg0
);
5573 wxPy_END_ALLOW_THREADS
;
5574 } _resultobj
= Py_BuildValue("i",_result
);
5578 #define wxStyledTextCtrl_SetTargetEnd(_swigobj,_swigarg0) (_swigobj->SetTargetEnd(_swigarg0))
5579 static PyObject
*_wrap_wxStyledTextCtrl_SetTargetEnd(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5580 PyObject
* _resultobj
;
5581 wxStyledTextCtrl
* _arg0
;
5583 PyObject
* _argo0
= 0;
5584 char *_kwnames
[] = { "self","pos", NULL
};
5587 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetTargetEnd",_kwnames
,&_argo0
,&_arg1
))
5590 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5591 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5592 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetTargetEnd. Expected _wxStyledTextCtrl_p.");
5597 wxPy_BEGIN_ALLOW_THREADS
;
5598 wxStyledTextCtrl_SetTargetEnd(_arg0
,_arg1
);
5600 wxPy_END_ALLOW_THREADS
;
5601 } Py_INCREF(Py_None
);
5602 _resultobj
= Py_None
;
5606 #define wxStyledTextCtrl_GetTargetEnd(_swigobj) (_swigobj->GetTargetEnd())
5607 static PyObject
*_wrap_wxStyledTextCtrl_GetTargetEnd(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5608 PyObject
* _resultobj
;
5610 wxStyledTextCtrl
* _arg0
;
5611 PyObject
* _argo0
= 0;
5612 char *_kwnames
[] = { "self", NULL
};
5615 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetTargetEnd",_kwnames
,&_argo0
))
5618 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5619 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5620 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTargetEnd. Expected _wxStyledTextCtrl_p.");
5625 wxPy_BEGIN_ALLOW_THREADS
;
5626 _result
= (int )wxStyledTextCtrl_GetTargetEnd(_arg0
);
5628 wxPy_END_ALLOW_THREADS
;
5629 } _resultobj
= Py_BuildValue("i",_result
);
5633 #define wxStyledTextCtrl_ReplaceTarget(_swigobj,_swigarg0) (_swigobj->ReplaceTarget(_swigarg0))
5634 static PyObject
*_wrap_wxStyledTextCtrl_ReplaceTarget(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5635 PyObject
* _resultobj
;
5637 wxStyledTextCtrl
* _arg0
;
5639 PyObject
* _argo0
= 0;
5640 PyObject
* _obj1
= 0;
5641 char *_kwnames
[] = { "self","text", NULL
};
5644 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_ReplaceTarget",_kwnames
,&_argo0
,&_obj1
))
5647 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5648 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5649 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ReplaceTarget. Expected _wxStyledTextCtrl_p.");
5654 #if PYTHON_API_VERSION >= 1009
5655 char* tmpPtr
; int tmpSize
;
5656 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
5657 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5660 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
5662 _arg1
= new wxString(tmpPtr
, tmpSize
);
5664 if (!PyString_Check(_obj1
)) {
5665 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5668 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
5672 wxPy_BEGIN_ALLOW_THREADS
;
5673 _result
= (int )wxStyledTextCtrl_ReplaceTarget(_arg0
,*_arg1
);
5675 wxPy_END_ALLOW_THREADS
;
5676 } _resultobj
= Py_BuildValue("i",_result
);
5684 #define wxStyledTextCtrl_ReplaceTargetRE(_swigobj,_swigarg0) (_swigobj->ReplaceTargetRE(_swigarg0))
5685 static PyObject
*_wrap_wxStyledTextCtrl_ReplaceTargetRE(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5686 PyObject
* _resultobj
;
5688 wxStyledTextCtrl
* _arg0
;
5690 PyObject
* _argo0
= 0;
5691 PyObject
* _obj1
= 0;
5692 char *_kwnames
[] = { "self","text", NULL
};
5695 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_ReplaceTargetRE",_kwnames
,&_argo0
,&_obj1
))
5698 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5699 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5700 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ReplaceTargetRE. Expected _wxStyledTextCtrl_p.");
5705 #if PYTHON_API_VERSION >= 1009
5706 char* tmpPtr
; int tmpSize
;
5707 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
5708 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5711 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
5713 _arg1
= new wxString(tmpPtr
, tmpSize
);
5715 if (!PyString_Check(_obj1
)) {
5716 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5719 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
5723 wxPy_BEGIN_ALLOW_THREADS
;
5724 _result
= (int )wxStyledTextCtrl_ReplaceTargetRE(_arg0
,*_arg1
);
5726 wxPy_END_ALLOW_THREADS
;
5727 } _resultobj
= Py_BuildValue("i",_result
);
5735 #define wxStyledTextCtrl_SearchInTarget(_swigobj,_swigarg0) (_swigobj->SearchInTarget(_swigarg0))
5736 static PyObject
*_wrap_wxStyledTextCtrl_SearchInTarget(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5737 PyObject
* _resultobj
;
5739 wxStyledTextCtrl
* _arg0
;
5741 PyObject
* _argo0
= 0;
5742 PyObject
* _obj1
= 0;
5743 char *_kwnames
[] = { "self","text", NULL
};
5746 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SearchInTarget",_kwnames
,&_argo0
,&_obj1
))
5749 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5750 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5751 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SearchInTarget. Expected _wxStyledTextCtrl_p.");
5756 #if PYTHON_API_VERSION >= 1009
5757 char* tmpPtr
; int tmpSize
;
5758 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
5759 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5762 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
5764 _arg1
= new wxString(tmpPtr
, tmpSize
);
5766 if (!PyString_Check(_obj1
)) {
5767 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5770 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
5774 wxPy_BEGIN_ALLOW_THREADS
;
5775 _result
= (int )wxStyledTextCtrl_SearchInTarget(_arg0
,*_arg1
);
5777 wxPy_END_ALLOW_THREADS
;
5778 } _resultobj
= Py_BuildValue("i",_result
);
5786 #define wxStyledTextCtrl_SetSearchFlags(_swigobj,_swigarg0) (_swigobj->SetSearchFlags(_swigarg0))
5787 static PyObject
*_wrap_wxStyledTextCtrl_SetSearchFlags(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5788 PyObject
* _resultobj
;
5789 wxStyledTextCtrl
* _arg0
;
5791 PyObject
* _argo0
= 0;
5792 char *_kwnames
[] = { "self","flags", NULL
};
5795 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetSearchFlags",_kwnames
,&_argo0
,&_arg1
))
5798 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5799 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5800 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSearchFlags. Expected _wxStyledTextCtrl_p.");
5805 wxPy_BEGIN_ALLOW_THREADS
;
5806 wxStyledTextCtrl_SetSearchFlags(_arg0
,_arg1
);
5808 wxPy_END_ALLOW_THREADS
;
5809 } Py_INCREF(Py_None
);
5810 _resultobj
= Py_None
;
5814 #define wxStyledTextCtrl_GetSearchFlags(_swigobj) (_swigobj->GetSearchFlags())
5815 static PyObject
*_wrap_wxStyledTextCtrl_GetSearchFlags(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5816 PyObject
* _resultobj
;
5818 wxStyledTextCtrl
* _arg0
;
5819 PyObject
* _argo0
= 0;
5820 char *_kwnames
[] = { "self", NULL
};
5823 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSearchFlags",_kwnames
,&_argo0
))
5826 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5827 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5828 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSearchFlags. Expected _wxStyledTextCtrl_p.");
5833 wxPy_BEGIN_ALLOW_THREADS
;
5834 _result
= (int )wxStyledTextCtrl_GetSearchFlags(_arg0
);
5836 wxPy_END_ALLOW_THREADS
;
5837 } _resultobj
= Py_BuildValue("i",_result
);
5841 #define wxStyledTextCtrl_CallTipShow(_swigobj,_swigarg0,_swigarg1) (_swigobj->CallTipShow(_swigarg0,_swigarg1))
5842 static PyObject
*_wrap_wxStyledTextCtrl_CallTipShow(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5843 PyObject
* _resultobj
;
5844 wxStyledTextCtrl
* _arg0
;
5847 PyObject
* _argo0
= 0;
5848 PyObject
* _obj2
= 0;
5849 char *_kwnames
[] = { "self","pos","definition", NULL
};
5852 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_CallTipShow",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
5855 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5856 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5857 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipShow. Expected _wxStyledTextCtrl_p.");
5862 #if PYTHON_API_VERSION >= 1009
5863 char* tmpPtr
; int tmpSize
;
5864 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
5865 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5868 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
5870 _arg2
= new wxString(tmpPtr
, tmpSize
);
5872 if (!PyString_Check(_obj2
)) {
5873 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
5876 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
5880 wxPy_BEGIN_ALLOW_THREADS
;
5881 wxStyledTextCtrl_CallTipShow(_arg0
,_arg1
,*_arg2
);
5883 wxPy_END_ALLOW_THREADS
;
5884 } Py_INCREF(Py_None
);
5885 _resultobj
= Py_None
;
5893 #define wxStyledTextCtrl_CallTipCancel(_swigobj) (_swigobj->CallTipCancel())
5894 static PyObject
*_wrap_wxStyledTextCtrl_CallTipCancel(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5895 PyObject
* _resultobj
;
5896 wxStyledTextCtrl
* _arg0
;
5897 PyObject
* _argo0
= 0;
5898 char *_kwnames
[] = { "self", NULL
};
5901 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CallTipCancel",_kwnames
,&_argo0
))
5904 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5905 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5906 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipCancel. Expected _wxStyledTextCtrl_p.");
5911 wxPy_BEGIN_ALLOW_THREADS
;
5912 wxStyledTextCtrl_CallTipCancel(_arg0
);
5914 wxPy_END_ALLOW_THREADS
;
5915 } Py_INCREF(Py_None
);
5916 _resultobj
= Py_None
;
5920 #define wxStyledTextCtrl_CallTipActive(_swigobj) (_swigobj->CallTipActive())
5921 static PyObject
*_wrap_wxStyledTextCtrl_CallTipActive(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5922 PyObject
* _resultobj
;
5924 wxStyledTextCtrl
* _arg0
;
5925 PyObject
* _argo0
= 0;
5926 char *_kwnames
[] = { "self", NULL
};
5929 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CallTipActive",_kwnames
,&_argo0
))
5932 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5933 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5934 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipActive. Expected _wxStyledTextCtrl_p.");
5939 wxPy_BEGIN_ALLOW_THREADS
;
5940 _result
= (bool )wxStyledTextCtrl_CallTipActive(_arg0
);
5942 wxPy_END_ALLOW_THREADS
;
5943 } _resultobj
= Py_BuildValue("i",_result
);
5947 #define wxStyledTextCtrl_CallTipPosAtStart(_swigobj) (_swigobj->CallTipPosAtStart())
5948 static PyObject
*_wrap_wxStyledTextCtrl_CallTipPosAtStart(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5949 PyObject
* _resultobj
;
5951 wxStyledTextCtrl
* _arg0
;
5952 PyObject
* _argo0
= 0;
5953 char *_kwnames
[] = { "self", NULL
};
5956 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CallTipPosAtStart",_kwnames
,&_argo0
))
5959 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5960 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5961 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipPosAtStart. Expected _wxStyledTextCtrl_p.");
5966 wxPy_BEGIN_ALLOW_THREADS
;
5967 _result
= (int )wxStyledTextCtrl_CallTipPosAtStart(_arg0
);
5969 wxPy_END_ALLOW_THREADS
;
5970 } _resultobj
= Py_BuildValue("i",_result
);
5974 #define wxStyledTextCtrl_CallTipSetHighlight(_swigobj,_swigarg0,_swigarg1) (_swigobj->CallTipSetHighlight(_swigarg0,_swigarg1))
5975 static PyObject
*_wrap_wxStyledTextCtrl_CallTipSetHighlight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
5976 PyObject
* _resultobj
;
5977 wxStyledTextCtrl
* _arg0
;
5980 PyObject
* _argo0
= 0;
5981 char *_kwnames
[] = { "self","start","end", NULL
};
5984 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_CallTipSetHighlight",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
5987 if (_argo0
== Py_None
) { _arg0
= NULL
; }
5988 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
5989 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipSetHighlight. Expected _wxStyledTextCtrl_p.");
5994 wxPy_BEGIN_ALLOW_THREADS
;
5995 wxStyledTextCtrl_CallTipSetHighlight(_arg0
,_arg1
,_arg2
);
5997 wxPy_END_ALLOW_THREADS
;
5998 } Py_INCREF(Py_None
);
5999 _resultobj
= Py_None
;
6003 #define wxStyledTextCtrl_CallTipSetBackground(_swigobj,_swigarg0) (_swigobj->CallTipSetBackground(_swigarg0))
6004 static PyObject
*_wrap_wxStyledTextCtrl_CallTipSetBackground(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6005 PyObject
* _resultobj
;
6006 wxStyledTextCtrl
* _arg0
;
6008 PyObject
* _argo0
= 0;
6010 PyObject
* _obj1
= 0;
6011 char *_kwnames
[] = { "self","back", NULL
};
6014 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_CallTipSetBackground",_kwnames
,&_argo0
,&_obj1
))
6017 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6018 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6019 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CallTipSetBackground. Expected _wxStyledTextCtrl_p.");
6025 if (! wxColour_helper(_obj1
, &_arg1
))
6029 wxPy_BEGIN_ALLOW_THREADS
;
6030 wxStyledTextCtrl_CallTipSetBackground(_arg0
,*_arg1
);
6032 wxPy_END_ALLOW_THREADS
;
6033 } Py_INCREF(Py_None
);
6034 _resultobj
= Py_None
;
6038 #define wxStyledTextCtrl_VisibleFromDocLine(_swigobj,_swigarg0) (_swigobj->VisibleFromDocLine(_swigarg0))
6039 static PyObject
*_wrap_wxStyledTextCtrl_VisibleFromDocLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6040 PyObject
* _resultobj
;
6042 wxStyledTextCtrl
* _arg0
;
6044 PyObject
* _argo0
= 0;
6045 char *_kwnames
[] = { "self","line", NULL
};
6048 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_VisibleFromDocLine",_kwnames
,&_argo0
,&_arg1
))
6051 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6052 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6053 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_VisibleFromDocLine. Expected _wxStyledTextCtrl_p.");
6058 wxPy_BEGIN_ALLOW_THREADS
;
6059 _result
= (int )wxStyledTextCtrl_VisibleFromDocLine(_arg0
,_arg1
);
6061 wxPy_END_ALLOW_THREADS
;
6062 } _resultobj
= Py_BuildValue("i",_result
);
6066 #define wxStyledTextCtrl_DocLineFromVisible(_swigobj,_swigarg0) (_swigobj->DocLineFromVisible(_swigarg0))
6067 static PyObject
*_wrap_wxStyledTextCtrl_DocLineFromVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6068 PyObject
* _resultobj
;
6070 wxStyledTextCtrl
* _arg0
;
6072 PyObject
* _argo0
= 0;
6073 char *_kwnames
[] = { "self","lineDisplay", NULL
};
6076 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_DocLineFromVisible",_kwnames
,&_argo0
,&_arg1
))
6079 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6080 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6081 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_DocLineFromVisible. Expected _wxStyledTextCtrl_p.");
6086 wxPy_BEGIN_ALLOW_THREADS
;
6087 _result
= (int )wxStyledTextCtrl_DocLineFromVisible(_arg0
,_arg1
);
6089 wxPy_END_ALLOW_THREADS
;
6090 } _resultobj
= Py_BuildValue("i",_result
);
6094 #define wxStyledTextCtrl_SetFoldLevel(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetFoldLevel(_swigarg0,_swigarg1))
6095 static PyObject
*_wrap_wxStyledTextCtrl_SetFoldLevel(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6096 PyObject
* _resultobj
;
6097 wxStyledTextCtrl
* _arg0
;
6100 PyObject
* _argo0
= 0;
6101 char *_kwnames
[] = { "self","line","level", NULL
};
6104 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetFoldLevel",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
6107 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6108 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6109 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetFoldLevel. Expected _wxStyledTextCtrl_p.");
6114 wxPy_BEGIN_ALLOW_THREADS
;
6115 wxStyledTextCtrl_SetFoldLevel(_arg0
,_arg1
,_arg2
);
6117 wxPy_END_ALLOW_THREADS
;
6118 } Py_INCREF(Py_None
);
6119 _resultobj
= Py_None
;
6123 #define wxStyledTextCtrl_GetFoldLevel(_swigobj,_swigarg0) (_swigobj->GetFoldLevel(_swigarg0))
6124 static PyObject
*_wrap_wxStyledTextCtrl_GetFoldLevel(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6125 PyObject
* _resultobj
;
6127 wxStyledTextCtrl
* _arg0
;
6129 PyObject
* _argo0
= 0;
6130 char *_kwnames
[] = { "self","line", NULL
};
6133 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetFoldLevel",_kwnames
,&_argo0
,&_arg1
))
6136 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6137 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6138 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetFoldLevel. Expected _wxStyledTextCtrl_p.");
6143 wxPy_BEGIN_ALLOW_THREADS
;
6144 _result
= (int )wxStyledTextCtrl_GetFoldLevel(_arg0
,_arg1
);
6146 wxPy_END_ALLOW_THREADS
;
6147 } _resultobj
= Py_BuildValue("i",_result
);
6151 #define wxStyledTextCtrl_GetLastChild(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetLastChild(_swigarg0,_swigarg1))
6152 static PyObject
*_wrap_wxStyledTextCtrl_GetLastChild(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6153 PyObject
* _resultobj
;
6155 wxStyledTextCtrl
* _arg0
;
6158 PyObject
* _argo0
= 0;
6159 char *_kwnames
[] = { "self","line","level", NULL
};
6162 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_GetLastChild",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
6165 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6166 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6167 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLastChild. Expected _wxStyledTextCtrl_p.");
6172 wxPy_BEGIN_ALLOW_THREADS
;
6173 _result
= (int )wxStyledTextCtrl_GetLastChild(_arg0
,_arg1
,_arg2
);
6175 wxPy_END_ALLOW_THREADS
;
6176 } _resultobj
= Py_BuildValue("i",_result
);
6180 #define wxStyledTextCtrl_GetFoldParent(_swigobj,_swigarg0) (_swigobj->GetFoldParent(_swigarg0))
6181 static PyObject
*_wrap_wxStyledTextCtrl_GetFoldParent(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6182 PyObject
* _resultobj
;
6184 wxStyledTextCtrl
* _arg0
;
6186 PyObject
* _argo0
= 0;
6187 char *_kwnames
[] = { "self","line", NULL
};
6190 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetFoldParent",_kwnames
,&_argo0
,&_arg1
))
6193 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6194 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6195 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetFoldParent. Expected _wxStyledTextCtrl_p.");
6200 wxPy_BEGIN_ALLOW_THREADS
;
6201 _result
= (int )wxStyledTextCtrl_GetFoldParent(_arg0
,_arg1
);
6203 wxPy_END_ALLOW_THREADS
;
6204 } _resultobj
= Py_BuildValue("i",_result
);
6208 #define wxStyledTextCtrl_ShowLines(_swigobj,_swigarg0,_swigarg1) (_swigobj->ShowLines(_swigarg0,_swigarg1))
6209 static PyObject
*_wrap_wxStyledTextCtrl_ShowLines(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6210 PyObject
* _resultobj
;
6211 wxStyledTextCtrl
* _arg0
;
6214 PyObject
* _argo0
= 0;
6215 char *_kwnames
[] = { "self","lineStart","lineEnd", NULL
};
6218 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_ShowLines",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
6221 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6222 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6223 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ShowLines. Expected _wxStyledTextCtrl_p.");
6228 wxPy_BEGIN_ALLOW_THREADS
;
6229 wxStyledTextCtrl_ShowLines(_arg0
,_arg1
,_arg2
);
6231 wxPy_END_ALLOW_THREADS
;
6232 } Py_INCREF(Py_None
);
6233 _resultobj
= Py_None
;
6237 #define wxStyledTextCtrl_HideLines(_swigobj,_swigarg0,_swigarg1) (_swigobj->HideLines(_swigarg0,_swigarg1))
6238 static PyObject
*_wrap_wxStyledTextCtrl_HideLines(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6239 PyObject
* _resultobj
;
6240 wxStyledTextCtrl
* _arg0
;
6243 PyObject
* _argo0
= 0;
6244 char *_kwnames
[] = { "self","lineStart","lineEnd", NULL
};
6247 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_HideLines",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
6250 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6251 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6252 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_HideLines. Expected _wxStyledTextCtrl_p.");
6257 wxPy_BEGIN_ALLOW_THREADS
;
6258 wxStyledTextCtrl_HideLines(_arg0
,_arg1
,_arg2
);
6260 wxPy_END_ALLOW_THREADS
;
6261 } Py_INCREF(Py_None
);
6262 _resultobj
= Py_None
;
6266 #define wxStyledTextCtrl_GetLineVisible(_swigobj,_swigarg0) (_swigobj->GetLineVisible(_swigarg0))
6267 static PyObject
*_wrap_wxStyledTextCtrl_GetLineVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6268 PyObject
* _resultobj
;
6270 wxStyledTextCtrl
* _arg0
;
6272 PyObject
* _argo0
= 0;
6273 char *_kwnames
[] = { "self","line", NULL
};
6276 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetLineVisible",_kwnames
,&_argo0
,&_arg1
))
6279 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6280 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6281 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLineVisible. Expected _wxStyledTextCtrl_p.");
6286 wxPy_BEGIN_ALLOW_THREADS
;
6287 _result
= (bool )wxStyledTextCtrl_GetLineVisible(_arg0
,_arg1
);
6289 wxPy_END_ALLOW_THREADS
;
6290 } _resultobj
= Py_BuildValue("i",_result
);
6294 #define wxStyledTextCtrl_SetFoldExpanded(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetFoldExpanded(_swigarg0,_swigarg1))
6295 static PyObject
*_wrap_wxStyledTextCtrl_SetFoldExpanded(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6296 PyObject
* _resultobj
;
6297 wxStyledTextCtrl
* _arg0
;
6300 PyObject
* _argo0
= 0;
6302 char *_kwnames
[] = { "self","line","expanded", NULL
};
6305 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetFoldExpanded",_kwnames
,&_argo0
,&_arg1
,&tempbool2
))
6308 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6309 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6310 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetFoldExpanded. Expected _wxStyledTextCtrl_p.");
6314 _arg2
= (bool ) tempbool2
;
6316 wxPy_BEGIN_ALLOW_THREADS
;
6317 wxStyledTextCtrl_SetFoldExpanded(_arg0
,_arg1
,_arg2
);
6319 wxPy_END_ALLOW_THREADS
;
6320 } Py_INCREF(Py_None
);
6321 _resultobj
= Py_None
;
6325 #define wxStyledTextCtrl_GetFoldExpanded(_swigobj,_swigarg0) (_swigobj->GetFoldExpanded(_swigarg0))
6326 static PyObject
*_wrap_wxStyledTextCtrl_GetFoldExpanded(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6327 PyObject
* _resultobj
;
6329 wxStyledTextCtrl
* _arg0
;
6331 PyObject
* _argo0
= 0;
6332 char *_kwnames
[] = { "self","line", NULL
};
6335 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_GetFoldExpanded",_kwnames
,&_argo0
,&_arg1
))
6338 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6339 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6340 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetFoldExpanded. Expected _wxStyledTextCtrl_p.");
6345 wxPy_BEGIN_ALLOW_THREADS
;
6346 _result
= (bool )wxStyledTextCtrl_GetFoldExpanded(_arg0
,_arg1
);
6348 wxPy_END_ALLOW_THREADS
;
6349 } _resultobj
= Py_BuildValue("i",_result
);
6353 #define wxStyledTextCtrl_ToggleFold(_swigobj,_swigarg0) (_swigobj->ToggleFold(_swigarg0))
6354 static PyObject
*_wrap_wxStyledTextCtrl_ToggleFold(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6355 PyObject
* _resultobj
;
6356 wxStyledTextCtrl
* _arg0
;
6358 PyObject
* _argo0
= 0;
6359 char *_kwnames
[] = { "self","line", NULL
};
6362 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_ToggleFold",_kwnames
,&_argo0
,&_arg1
))
6365 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6366 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6367 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ToggleFold. Expected _wxStyledTextCtrl_p.");
6372 wxPy_BEGIN_ALLOW_THREADS
;
6373 wxStyledTextCtrl_ToggleFold(_arg0
,_arg1
);
6375 wxPy_END_ALLOW_THREADS
;
6376 } Py_INCREF(Py_None
);
6377 _resultobj
= Py_None
;
6381 #define wxStyledTextCtrl_EnsureVisible(_swigobj,_swigarg0) (_swigobj->EnsureVisible(_swigarg0))
6382 static PyObject
*_wrap_wxStyledTextCtrl_EnsureVisible(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6383 PyObject
* _resultobj
;
6384 wxStyledTextCtrl
* _arg0
;
6386 PyObject
* _argo0
= 0;
6387 char *_kwnames
[] = { "self","line", NULL
};
6390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_EnsureVisible",_kwnames
,&_argo0
,&_arg1
))
6393 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6394 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6395 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_EnsureVisible. Expected _wxStyledTextCtrl_p.");
6400 wxPy_BEGIN_ALLOW_THREADS
;
6401 wxStyledTextCtrl_EnsureVisible(_arg0
,_arg1
);
6403 wxPy_END_ALLOW_THREADS
;
6404 } Py_INCREF(Py_None
);
6405 _resultobj
= Py_None
;
6409 #define wxStyledTextCtrl_SetFoldFlags(_swigobj,_swigarg0) (_swigobj->SetFoldFlags(_swigarg0))
6410 static PyObject
*_wrap_wxStyledTextCtrl_SetFoldFlags(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6411 PyObject
* _resultobj
;
6412 wxStyledTextCtrl
* _arg0
;
6414 PyObject
* _argo0
= 0;
6415 char *_kwnames
[] = { "self","flags", NULL
};
6418 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetFoldFlags",_kwnames
,&_argo0
,&_arg1
))
6421 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6422 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6423 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetFoldFlags. Expected _wxStyledTextCtrl_p.");
6428 wxPy_BEGIN_ALLOW_THREADS
;
6429 wxStyledTextCtrl_SetFoldFlags(_arg0
,_arg1
);
6431 wxPy_END_ALLOW_THREADS
;
6432 } Py_INCREF(Py_None
);
6433 _resultobj
= Py_None
;
6437 #define wxStyledTextCtrl_EnsureVisibleEnforcePolicy(_swigobj,_swigarg0) (_swigobj->EnsureVisibleEnforcePolicy(_swigarg0))
6438 static PyObject
*_wrap_wxStyledTextCtrl_EnsureVisibleEnforcePolicy(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6439 PyObject
* _resultobj
;
6440 wxStyledTextCtrl
* _arg0
;
6442 PyObject
* _argo0
= 0;
6443 char *_kwnames
[] = { "self","line", NULL
};
6446 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_EnsureVisibleEnforcePolicy",_kwnames
,&_argo0
,&_arg1
))
6449 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6450 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6451 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_EnsureVisibleEnforcePolicy. Expected _wxStyledTextCtrl_p.");
6456 wxPy_BEGIN_ALLOW_THREADS
;
6457 wxStyledTextCtrl_EnsureVisibleEnforcePolicy(_arg0
,_arg1
);
6459 wxPy_END_ALLOW_THREADS
;
6460 } Py_INCREF(Py_None
);
6461 _resultobj
= Py_None
;
6465 #define wxStyledTextCtrl_SetTabIndents(_swigobj,_swigarg0) (_swigobj->SetTabIndents(_swigarg0))
6466 static PyObject
*_wrap_wxStyledTextCtrl_SetTabIndents(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6467 PyObject
* _resultobj
;
6468 wxStyledTextCtrl
* _arg0
;
6470 PyObject
* _argo0
= 0;
6472 char *_kwnames
[] = { "self","tabIndents", NULL
};
6475 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetTabIndents",_kwnames
,&_argo0
,&tempbool1
))
6478 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6479 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6480 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetTabIndents. Expected _wxStyledTextCtrl_p.");
6484 _arg1
= (bool ) tempbool1
;
6486 wxPy_BEGIN_ALLOW_THREADS
;
6487 wxStyledTextCtrl_SetTabIndents(_arg0
,_arg1
);
6489 wxPy_END_ALLOW_THREADS
;
6490 } Py_INCREF(Py_None
);
6491 _resultobj
= Py_None
;
6495 #define wxStyledTextCtrl_GetTabIndents(_swigobj) (_swigobj->GetTabIndents())
6496 static PyObject
*_wrap_wxStyledTextCtrl_GetTabIndents(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6497 PyObject
* _resultobj
;
6499 wxStyledTextCtrl
* _arg0
;
6500 PyObject
* _argo0
= 0;
6501 char *_kwnames
[] = { "self", NULL
};
6504 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetTabIndents",_kwnames
,&_argo0
))
6507 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6508 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6509 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetTabIndents. Expected _wxStyledTextCtrl_p.");
6514 wxPy_BEGIN_ALLOW_THREADS
;
6515 _result
= (bool )wxStyledTextCtrl_GetTabIndents(_arg0
);
6517 wxPy_END_ALLOW_THREADS
;
6518 } _resultobj
= Py_BuildValue("i",_result
);
6522 #define wxStyledTextCtrl_SetBackSpaceUnIndents(_swigobj,_swigarg0) (_swigobj->SetBackSpaceUnIndents(_swigarg0))
6523 static PyObject
*_wrap_wxStyledTextCtrl_SetBackSpaceUnIndents(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6524 PyObject
* _resultobj
;
6525 wxStyledTextCtrl
* _arg0
;
6527 PyObject
* _argo0
= 0;
6529 char *_kwnames
[] = { "self","bsUnIndents", NULL
};
6532 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetBackSpaceUnIndents",_kwnames
,&_argo0
,&tempbool1
))
6535 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6536 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6537 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetBackSpaceUnIndents. Expected _wxStyledTextCtrl_p.");
6541 _arg1
= (bool ) tempbool1
;
6543 wxPy_BEGIN_ALLOW_THREADS
;
6544 wxStyledTextCtrl_SetBackSpaceUnIndents(_arg0
,_arg1
);
6546 wxPy_END_ALLOW_THREADS
;
6547 } Py_INCREF(Py_None
);
6548 _resultobj
= Py_None
;
6552 #define wxStyledTextCtrl_GetBackSpaceUnIndents(_swigobj) (_swigobj->GetBackSpaceUnIndents())
6553 static PyObject
*_wrap_wxStyledTextCtrl_GetBackSpaceUnIndents(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6554 PyObject
* _resultobj
;
6556 wxStyledTextCtrl
* _arg0
;
6557 PyObject
* _argo0
= 0;
6558 char *_kwnames
[] = { "self", NULL
};
6561 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetBackSpaceUnIndents",_kwnames
,&_argo0
))
6564 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6565 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6566 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetBackSpaceUnIndents. Expected _wxStyledTextCtrl_p.");
6571 wxPy_BEGIN_ALLOW_THREADS
;
6572 _result
= (bool )wxStyledTextCtrl_GetBackSpaceUnIndents(_arg0
);
6574 wxPy_END_ALLOW_THREADS
;
6575 } _resultobj
= Py_BuildValue("i",_result
);
6579 #define wxStyledTextCtrl_SetMouseDwellTime(_swigobj,_swigarg0) (_swigobj->SetMouseDwellTime(_swigarg0))
6580 static PyObject
*_wrap_wxStyledTextCtrl_SetMouseDwellTime(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6581 PyObject
* _resultobj
;
6582 wxStyledTextCtrl
* _arg0
;
6584 PyObject
* _argo0
= 0;
6585 char *_kwnames
[] = { "self","periodMilliseconds", NULL
};
6588 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetMouseDwellTime",_kwnames
,&_argo0
,&_arg1
))
6591 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6592 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6593 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMouseDwellTime. Expected _wxStyledTextCtrl_p.");
6598 wxPy_BEGIN_ALLOW_THREADS
;
6599 wxStyledTextCtrl_SetMouseDwellTime(_arg0
,_arg1
);
6601 wxPy_END_ALLOW_THREADS
;
6602 } Py_INCREF(Py_None
);
6603 _resultobj
= Py_None
;
6607 #define wxStyledTextCtrl_GetMouseDwellTime(_swigobj) (_swigobj->GetMouseDwellTime())
6608 static PyObject
*_wrap_wxStyledTextCtrl_GetMouseDwellTime(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6609 PyObject
* _resultobj
;
6611 wxStyledTextCtrl
* _arg0
;
6612 PyObject
* _argo0
= 0;
6613 char *_kwnames
[] = { "self", NULL
};
6616 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetMouseDwellTime",_kwnames
,&_argo0
))
6619 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6620 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6621 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMouseDwellTime. Expected _wxStyledTextCtrl_p.");
6626 wxPy_BEGIN_ALLOW_THREADS
;
6627 _result
= (int )wxStyledTextCtrl_GetMouseDwellTime(_arg0
);
6629 wxPy_END_ALLOW_THREADS
;
6630 } _resultobj
= Py_BuildValue("i",_result
);
6634 #define wxStyledTextCtrl_MoveCaretInsideView(_swigobj) (_swigobj->MoveCaretInsideView())
6635 static PyObject
*_wrap_wxStyledTextCtrl_MoveCaretInsideView(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6636 PyObject
* _resultobj
;
6637 wxStyledTextCtrl
* _arg0
;
6638 PyObject
* _argo0
= 0;
6639 char *_kwnames
[] = { "self", NULL
};
6642 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_MoveCaretInsideView",_kwnames
,&_argo0
))
6645 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6646 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6647 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_MoveCaretInsideView. Expected _wxStyledTextCtrl_p.");
6652 wxPy_BEGIN_ALLOW_THREADS
;
6653 wxStyledTextCtrl_MoveCaretInsideView(_arg0
);
6655 wxPy_END_ALLOW_THREADS
;
6656 } Py_INCREF(Py_None
);
6657 _resultobj
= Py_None
;
6661 #define wxStyledTextCtrl_LineLength(_swigobj,_swigarg0) (_swigobj->LineLength(_swigarg0))
6662 static PyObject
*_wrap_wxStyledTextCtrl_LineLength(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6663 PyObject
* _resultobj
;
6665 wxStyledTextCtrl
* _arg0
;
6667 PyObject
* _argo0
= 0;
6668 char *_kwnames
[] = { "self","line", NULL
};
6671 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_LineLength",_kwnames
,&_argo0
,&_arg1
))
6674 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6675 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6676 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_LineLength. Expected _wxStyledTextCtrl_p.");
6681 wxPy_BEGIN_ALLOW_THREADS
;
6682 _result
= (int )wxStyledTextCtrl_LineLength(_arg0
,_arg1
);
6684 wxPy_END_ALLOW_THREADS
;
6685 } _resultobj
= Py_BuildValue("i",_result
);
6689 #define wxStyledTextCtrl_BraceHighlight(_swigobj,_swigarg0,_swigarg1) (_swigobj->BraceHighlight(_swigarg0,_swigarg1))
6690 static PyObject
*_wrap_wxStyledTextCtrl_BraceHighlight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6691 PyObject
* _resultobj
;
6692 wxStyledTextCtrl
* _arg0
;
6695 PyObject
* _argo0
= 0;
6696 char *_kwnames
[] = { "self","pos1","pos2", NULL
};
6699 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_BraceHighlight",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
6702 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6703 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6704 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_BraceHighlight. Expected _wxStyledTextCtrl_p.");
6709 wxPy_BEGIN_ALLOW_THREADS
;
6710 wxStyledTextCtrl_BraceHighlight(_arg0
,_arg1
,_arg2
);
6712 wxPy_END_ALLOW_THREADS
;
6713 } Py_INCREF(Py_None
);
6714 _resultobj
= Py_None
;
6718 #define wxStyledTextCtrl_BraceBadLight(_swigobj,_swigarg0) (_swigobj->BraceBadLight(_swigarg0))
6719 static PyObject
*_wrap_wxStyledTextCtrl_BraceBadLight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6720 PyObject
* _resultobj
;
6721 wxStyledTextCtrl
* _arg0
;
6723 PyObject
* _argo0
= 0;
6724 char *_kwnames
[] = { "self","pos", NULL
};
6727 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_BraceBadLight",_kwnames
,&_argo0
,&_arg1
))
6730 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6731 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6732 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_BraceBadLight. Expected _wxStyledTextCtrl_p.");
6737 wxPy_BEGIN_ALLOW_THREADS
;
6738 wxStyledTextCtrl_BraceBadLight(_arg0
,_arg1
);
6740 wxPy_END_ALLOW_THREADS
;
6741 } Py_INCREF(Py_None
);
6742 _resultobj
= Py_None
;
6746 #define wxStyledTextCtrl_BraceMatch(_swigobj,_swigarg0) (_swigobj->BraceMatch(_swigarg0))
6747 static PyObject
*_wrap_wxStyledTextCtrl_BraceMatch(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6748 PyObject
* _resultobj
;
6750 wxStyledTextCtrl
* _arg0
;
6752 PyObject
* _argo0
= 0;
6753 char *_kwnames
[] = { "self","pos", NULL
};
6756 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_BraceMatch",_kwnames
,&_argo0
,&_arg1
))
6759 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6760 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6761 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_BraceMatch. Expected _wxStyledTextCtrl_p.");
6766 wxPy_BEGIN_ALLOW_THREADS
;
6767 _result
= (int )wxStyledTextCtrl_BraceMatch(_arg0
,_arg1
);
6769 wxPy_END_ALLOW_THREADS
;
6770 } _resultobj
= Py_BuildValue("i",_result
);
6774 #define wxStyledTextCtrl_GetViewEOL(_swigobj) (_swigobj->GetViewEOL())
6775 static PyObject
*_wrap_wxStyledTextCtrl_GetViewEOL(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6776 PyObject
* _resultobj
;
6778 wxStyledTextCtrl
* _arg0
;
6779 PyObject
* _argo0
= 0;
6780 char *_kwnames
[] = { "self", NULL
};
6783 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetViewEOL",_kwnames
,&_argo0
))
6786 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6787 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6788 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetViewEOL. Expected _wxStyledTextCtrl_p.");
6793 wxPy_BEGIN_ALLOW_THREADS
;
6794 _result
= (bool )wxStyledTextCtrl_GetViewEOL(_arg0
);
6796 wxPy_END_ALLOW_THREADS
;
6797 } _resultobj
= Py_BuildValue("i",_result
);
6801 #define wxStyledTextCtrl_SetViewEOL(_swigobj,_swigarg0) (_swigobj->SetViewEOL(_swigarg0))
6802 static PyObject
*_wrap_wxStyledTextCtrl_SetViewEOL(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6803 PyObject
* _resultobj
;
6804 wxStyledTextCtrl
* _arg0
;
6806 PyObject
* _argo0
= 0;
6808 char *_kwnames
[] = { "self","visible", NULL
};
6811 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetViewEOL",_kwnames
,&_argo0
,&tempbool1
))
6814 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6815 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6816 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetViewEOL. Expected _wxStyledTextCtrl_p.");
6820 _arg1
= (bool ) tempbool1
;
6822 wxPy_BEGIN_ALLOW_THREADS
;
6823 wxStyledTextCtrl_SetViewEOL(_arg0
,_arg1
);
6825 wxPy_END_ALLOW_THREADS
;
6826 } Py_INCREF(Py_None
);
6827 _resultobj
= Py_None
;
6831 #define wxStyledTextCtrl_GetDocPointer(_swigobj) (_swigobj->GetDocPointer())
6832 static PyObject
*_wrap_wxStyledTextCtrl_GetDocPointer(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6833 PyObject
* _resultobj
;
6835 wxStyledTextCtrl
* _arg0
;
6836 PyObject
* _argo0
= 0;
6837 char *_kwnames
[] = { "self", NULL
};
6841 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetDocPointer",_kwnames
,&_argo0
))
6844 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6845 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6846 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetDocPointer. Expected _wxStyledTextCtrl_p.");
6851 wxPy_BEGIN_ALLOW_THREADS
;
6852 _result
= (void *)wxStyledTextCtrl_GetDocPointer(_arg0
);
6854 wxPy_END_ALLOW_THREADS
;
6856 SWIG_MakePtr(_ptemp
, (char *) _result
,"_void_p");
6857 _resultobj
= Py_BuildValue("s",_ptemp
);
6860 _resultobj
= Py_None
;
6865 #define wxStyledTextCtrl_SetDocPointer(_swigobj,_swigarg0) (_swigobj->SetDocPointer(_swigarg0))
6866 static PyObject
*_wrap_wxStyledTextCtrl_SetDocPointer(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6867 PyObject
* _resultobj
;
6868 wxStyledTextCtrl
* _arg0
;
6870 PyObject
* _argo0
= 0;
6871 PyObject
* _argo1
= 0;
6872 char *_kwnames
[] = { "self","docPointer", NULL
};
6875 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetDocPointer",_kwnames
,&_argo0
,&_argo1
))
6878 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6879 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6880 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetDocPointer. Expected _wxStyledTextCtrl_p.");
6885 if (_argo1
== Py_None
) { _arg1
= NULL
; }
6886 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,(char *) 0 )) {
6887 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxStyledTextCtrl_SetDocPointer. Expected _void_p.");
6892 wxPy_BEGIN_ALLOW_THREADS
;
6893 wxStyledTextCtrl_SetDocPointer(_arg0
,_arg1
);
6895 wxPy_END_ALLOW_THREADS
;
6896 } Py_INCREF(Py_None
);
6897 _resultobj
= Py_None
;
6901 #define wxStyledTextCtrl_SetModEventMask(_swigobj,_swigarg0) (_swigobj->SetModEventMask(_swigarg0))
6902 static PyObject
*_wrap_wxStyledTextCtrl_SetModEventMask(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6903 PyObject
* _resultobj
;
6904 wxStyledTextCtrl
* _arg0
;
6906 PyObject
* _argo0
= 0;
6907 char *_kwnames
[] = { "self","mask", NULL
};
6910 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetModEventMask",_kwnames
,&_argo0
,&_arg1
))
6913 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6914 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6915 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetModEventMask. Expected _wxStyledTextCtrl_p.");
6920 wxPy_BEGIN_ALLOW_THREADS
;
6921 wxStyledTextCtrl_SetModEventMask(_arg0
,_arg1
);
6923 wxPy_END_ALLOW_THREADS
;
6924 } Py_INCREF(Py_None
);
6925 _resultobj
= Py_None
;
6929 #define wxStyledTextCtrl_GetEdgeColumn(_swigobj) (_swigobj->GetEdgeColumn())
6930 static PyObject
*_wrap_wxStyledTextCtrl_GetEdgeColumn(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6931 PyObject
* _resultobj
;
6933 wxStyledTextCtrl
* _arg0
;
6934 PyObject
* _argo0
= 0;
6935 char *_kwnames
[] = { "self", NULL
};
6938 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetEdgeColumn",_kwnames
,&_argo0
))
6941 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6942 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6943 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetEdgeColumn. Expected _wxStyledTextCtrl_p.");
6948 wxPy_BEGIN_ALLOW_THREADS
;
6949 _result
= (int )wxStyledTextCtrl_GetEdgeColumn(_arg0
);
6951 wxPy_END_ALLOW_THREADS
;
6952 } _resultobj
= Py_BuildValue("i",_result
);
6956 #define wxStyledTextCtrl_SetEdgeColumn(_swigobj,_swigarg0) (_swigobj->SetEdgeColumn(_swigarg0))
6957 static PyObject
*_wrap_wxStyledTextCtrl_SetEdgeColumn(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6958 PyObject
* _resultobj
;
6959 wxStyledTextCtrl
* _arg0
;
6961 PyObject
* _argo0
= 0;
6962 char *_kwnames
[] = { "self","column", NULL
};
6965 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetEdgeColumn",_kwnames
,&_argo0
,&_arg1
))
6968 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6969 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6970 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetEdgeColumn. Expected _wxStyledTextCtrl_p.");
6975 wxPy_BEGIN_ALLOW_THREADS
;
6976 wxStyledTextCtrl_SetEdgeColumn(_arg0
,_arg1
);
6978 wxPy_END_ALLOW_THREADS
;
6979 } Py_INCREF(Py_None
);
6980 _resultobj
= Py_None
;
6984 #define wxStyledTextCtrl_GetEdgeMode(_swigobj) (_swigobj->GetEdgeMode())
6985 static PyObject
*_wrap_wxStyledTextCtrl_GetEdgeMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
6986 PyObject
* _resultobj
;
6988 wxStyledTextCtrl
* _arg0
;
6989 PyObject
* _argo0
= 0;
6990 char *_kwnames
[] = { "self", NULL
};
6993 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetEdgeMode",_kwnames
,&_argo0
))
6996 if (_argo0
== Py_None
) { _arg0
= NULL
; }
6997 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
6998 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetEdgeMode. Expected _wxStyledTextCtrl_p.");
7003 wxPy_BEGIN_ALLOW_THREADS
;
7004 _result
= (int )wxStyledTextCtrl_GetEdgeMode(_arg0
);
7006 wxPy_END_ALLOW_THREADS
;
7007 } _resultobj
= Py_BuildValue("i",_result
);
7011 #define wxStyledTextCtrl_SetEdgeMode(_swigobj,_swigarg0) (_swigobj->SetEdgeMode(_swigarg0))
7012 static PyObject
*_wrap_wxStyledTextCtrl_SetEdgeMode(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7013 PyObject
* _resultobj
;
7014 wxStyledTextCtrl
* _arg0
;
7016 PyObject
* _argo0
= 0;
7017 char *_kwnames
[] = { "self","mode", NULL
};
7020 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetEdgeMode",_kwnames
,&_argo0
,&_arg1
))
7023 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7024 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7025 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetEdgeMode. Expected _wxStyledTextCtrl_p.");
7030 wxPy_BEGIN_ALLOW_THREADS
;
7031 wxStyledTextCtrl_SetEdgeMode(_arg0
,_arg1
);
7033 wxPy_END_ALLOW_THREADS
;
7034 } Py_INCREF(Py_None
);
7035 _resultobj
= Py_None
;
7039 #define wxStyledTextCtrl_GetEdgeColour(_swigobj) (_swigobj->GetEdgeColour())
7040 static PyObject
*_wrap_wxStyledTextCtrl_GetEdgeColour(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7041 PyObject
* _resultobj
;
7043 wxStyledTextCtrl
* _arg0
;
7044 PyObject
* _argo0
= 0;
7045 char *_kwnames
[] = { "self", NULL
};
7049 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetEdgeColour",_kwnames
,&_argo0
))
7052 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7053 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7054 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetEdgeColour. Expected _wxStyledTextCtrl_p.");
7059 wxPy_BEGIN_ALLOW_THREADS
;
7060 _result
= new wxColour (wxStyledTextCtrl_GetEdgeColour(_arg0
));
7062 wxPy_END_ALLOW_THREADS
;
7063 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxColour_p");
7064 _resultobj
= Py_BuildValue("s",_ptemp
);
7068 #define wxStyledTextCtrl_SetEdgeColour(_swigobj,_swigarg0) (_swigobj->SetEdgeColour(_swigarg0))
7069 static PyObject
*_wrap_wxStyledTextCtrl_SetEdgeColour(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7070 PyObject
* _resultobj
;
7071 wxStyledTextCtrl
* _arg0
;
7073 PyObject
* _argo0
= 0;
7075 PyObject
* _obj1
= 0;
7076 char *_kwnames
[] = { "self","edgeColour", NULL
};
7079 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetEdgeColour",_kwnames
,&_argo0
,&_obj1
))
7082 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7083 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7084 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetEdgeColour. Expected _wxStyledTextCtrl_p.");
7090 if (! wxColour_helper(_obj1
, &_arg1
))
7094 wxPy_BEGIN_ALLOW_THREADS
;
7095 wxStyledTextCtrl_SetEdgeColour(_arg0
,*_arg1
);
7097 wxPy_END_ALLOW_THREADS
;
7098 } Py_INCREF(Py_None
);
7099 _resultobj
= Py_None
;
7103 #define wxStyledTextCtrl_SearchAnchor(_swigobj) (_swigobj->SearchAnchor())
7104 static PyObject
*_wrap_wxStyledTextCtrl_SearchAnchor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7105 PyObject
* _resultobj
;
7106 wxStyledTextCtrl
* _arg0
;
7107 PyObject
* _argo0
= 0;
7108 char *_kwnames
[] = { "self", NULL
};
7111 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_SearchAnchor",_kwnames
,&_argo0
))
7114 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7115 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7116 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SearchAnchor. Expected _wxStyledTextCtrl_p.");
7121 wxPy_BEGIN_ALLOW_THREADS
;
7122 wxStyledTextCtrl_SearchAnchor(_arg0
);
7124 wxPy_END_ALLOW_THREADS
;
7125 } Py_INCREF(Py_None
);
7126 _resultobj
= Py_None
;
7130 #define wxStyledTextCtrl_SearchNext(_swigobj,_swigarg0,_swigarg1) (_swigobj->SearchNext(_swigarg0,_swigarg1))
7131 static PyObject
*_wrap_wxStyledTextCtrl_SearchNext(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7132 PyObject
* _resultobj
;
7134 wxStyledTextCtrl
* _arg0
;
7137 PyObject
* _argo0
= 0;
7138 PyObject
* _obj2
= 0;
7139 char *_kwnames
[] = { "self","flags","text", NULL
};
7142 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_SearchNext",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
7145 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7146 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7147 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SearchNext. Expected _wxStyledTextCtrl_p.");
7152 #if PYTHON_API_VERSION >= 1009
7153 char* tmpPtr
; int tmpSize
;
7154 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
7155 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
7158 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
7160 _arg2
= new wxString(tmpPtr
, tmpSize
);
7162 if (!PyString_Check(_obj2
)) {
7163 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
7166 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
7170 wxPy_BEGIN_ALLOW_THREADS
;
7171 _result
= (int )wxStyledTextCtrl_SearchNext(_arg0
,_arg1
,*_arg2
);
7173 wxPy_END_ALLOW_THREADS
;
7174 } _resultobj
= Py_BuildValue("i",_result
);
7182 #define wxStyledTextCtrl_SearchPrev(_swigobj,_swigarg0,_swigarg1) (_swigobj->SearchPrev(_swigarg0,_swigarg1))
7183 static PyObject
*_wrap_wxStyledTextCtrl_SearchPrev(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7184 PyObject
* _resultobj
;
7186 wxStyledTextCtrl
* _arg0
;
7189 PyObject
* _argo0
= 0;
7190 PyObject
* _obj2
= 0;
7191 char *_kwnames
[] = { "self","flags","text", NULL
};
7194 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_SearchPrev",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
7197 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7198 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7199 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SearchPrev. Expected _wxStyledTextCtrl_p.");
7204 #if PYTHON_API_VERSION >= 1009
7205 char* tmpPtr
; int tmpSize
;
7206 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
7207 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
7210 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
7212 _arg2
= new wxString(tmpPtr
, tmpSize
);
7214 if (!PyString_Check(_obj2
)) {
7215 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
7218 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
7222 wxPy_BEGIN_ALLOW_THREADS
;
7223 _result
= (int )wxStyledTextCtrl_SearchPrev(_arg0
,_arg1
,*_arg2
);
7225 wxPy_END_ALLOW_THREADS
;
7226 } _resultobj
= Py_BuildValue("i",_result
);
7234 #define wxStyledTextCtrl_SetCaretPolicy(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetCaretPolicy(_swigarg0,_swigarg1))
7235 static PyObject
*_wrap_wxStyledTextCtrl_SetCaretPolicy(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7236 PyObject
* _resultobj
;
7237 wxStyledTextCtrl
* _arg0
;
7240 PyObject
* _argo0
= 0;
7241 char *_kwnames
[] = { "self","caretPolicy","caretSlop", NULL
};
7244 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetCaretPolicy",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
7247 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7248 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7249 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCaretPolicy. Expected _wxStyledTextCtrl_p.");
7254 wxPy_BEGIN_ALLOW_THREADS
;
7255 wxStyledTextCtrl_SetCaretPolicy(_arg0
,_arg1
,_arg2
);
7257 wxPy_END_ALLOW_THREADS
;
7258 } Py_INCREF(Py_None
);
7259 _resultobj
= Py_None
;
7263 #define wxStyledTextCtrl_LinesOnScreen(_swigobj) (_swigobj->LinesOnScreen())
7264 static PyObject
*_wrap_wxStyledTextCtrl_LinesOnScreen(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7265 PyObject
* _resultobj
;
7267 wxStyledTextCtrl
* _arg0
;
7268 PyObject
* _argo0
= 0;
7269 char *_kwnames
[] = { "self", NULL
};
7272 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_LinesOnScreen",_kwnames
,&_argo0
))
7275 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7276 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7277 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_LinesOnScreen. Expected _wxStyledTextCtrl_p.");
7282 wxPy_BEGIN_ALLOW_THREADS
;
7283 _result
= (int )wxStyledTextCtrl_LinesOnScreen(_arg0
);
7285 wxPy_END_ALLOW_THREADS
;
7286 } _resultobj
= Py_BuildValue("i",_result
);
7290 #define wxStyledTextCtrl_UsePopUp(_swigobj,_swigarg0) (_swigobj->UsePopUp(_swigarg0))
7291 static PyObject
*_wrap_wxStyledTextCtrl_UsePopUp(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7292 PyObject
* _resultobj
;
7293 wxStyledTextCtrl
* _arg0
;
7295 PyObject
* _argo0
= 0;
7297 char *_kwnames
[] = { "self","allowPopUp", NULL
};
7300 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_UsePopUp",_kwnames
,&_argo0
,&tempbool1
))
7303 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7304 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7305 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_UsePopUp. Expected _wxStyledTextCtrl_p.");
7309 _arg1
= (bool ) tempbool1
;
7311 wxPy_BEGIN_ALLOW_THREADS
;
7312 wxStyledTextCtrl_UsePopUp(_arg0
,_arg1
);
7314 wxPy_END_ALLOW_THREADS
;
7315 } Py_INCREF(Py_None
);
7316 _resultobj
= Py_None
;
7320 #define wxStyledTextCtrl_SelectionIsRectangle(_swigobj) (_swigobj->SelectionIsRectangle())
7321 static PyObject
*_wrap_wxStyledTextCtrl_SelectionIsRectangle(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7322 PyObject
* _resultobj
;
7324 wxStyledTextCtrl
* _arg0
;
7325 PyObject
* _argo0
= 0;
7326 char *_kwnames
[] = { "self", NULL
};
7329 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_SelectionIsRectangle",_kwnames
,&_argo0
))
7332 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7333 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7334 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SelectionIsRectangle. Expected _wxStyledTextCtrl_p.");
7339 wxPy_BEGIN_ALLOW_THREADS
;
7340 _result
= (bool )wxStyledTextCtrl_SelectionIsRectangle(_arg0
);
7342 wxPy_END_ALLOW_THREADS
;
7343 } _resultobj
= Py_BuildValue("i",_result
);
7347 #define wxStyledTextCtrl_SetZoom(_swigobj,_swigarg0) (_swigobj->SetZoom(_swigarg0))
7348 static PyObject
*_wrap_wxStyledTextCtrl_SetZoom(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7349 PyObject
* _resultobj
;
7350 wxStyledTextCtrl
* _arg0
;
7352 PyObject
* _argo0
= 0;
7353 char *_kwnames
[] = { "self","zoom", NULL
};
7356 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetZoom",_kwnames
,&_argo0
,&_arg1
))
7359 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7360 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7361 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetZoom. Expected _wxStyledTextCtrl_p.");
7366 wxPy_BEGIN_ALLOW_THREADS
;
7367 wxStyledTextCtrl_SetZoom(_arg0
,_arg1
);
7369 wxPy_END_ALLOW_THREADS
;
7370 } Py_INCREF(Py_None
);
7371 _resultobj
= Py_None
;
7375 #define wxStyledTextCtrl_GetZoom(_swigobj) (_swigobj->GetZoom())
7376 static PyObject
*_wrap_wxStyledTextCtrl_GetZoom(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7377 PyObject
* _resultobj
;
7379 wxStyledTextCtrl
* _arg0
;
7380 PyObject
* _argo0
= 0;
7381 char *_kwnames
[] = { "self", NULL
};
7384 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetZoom",_kwnames
,&_argo0
))
7387 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7388 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7389 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetZoom. Expected _wxStyledTextCtrl_p.");
7394 wxPy_BEGIN_ALLOW_THREADS
;
7395 _result
= (int )wxStyledTextCtrl_GetZoom(_arg0
);
7397 wxPy_END_ALLOW_THREADS
;
7398 } _resultobj
= Py_BuildValue("i",_result
);
7402 #define wxStyledTextCtrl_CreateDocument(_swigobj) (_swigobj->CreateDocument())
7403 static PyObject
*_wrap_wxStyledTextCtrl_CreateDocument(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7404 PyObject
* _resultobj
;
7406 wxStyledTextCtrl
* _arg0
;
7407 PyObject
* _argo0
= 0;
7408 char *_kwnames
[] = { "self", NULL
};
7412 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_CreateDocument",_kwnames
,&_argo0
))
7415 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7416 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7417 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CreateDocument. Expected _wxStyledTextCtrl_p.");
7422 wxPy_BEGIN_ALLOW_THREADS
;
7423 _result
= (void *)wxStyledTextCtrl_CreateDocument(_arg0
);
7425 wxPy_END_ALLOW_THREADS
;
7427 SWIG_MakePtr(_ptemp
, (char *) _result
,"_void_p");
7428 _resultobj
= Py_BuildValue("s",_ptemp
);
7431 _resultobj
= Py_None
;
7436 #define wxStyledTextCtrl_AddRefDocument(_swigobj,_swigarg0) (_swigobj->AddRefDocument(_swigarg0))
7437 static PyObject
*_wrap_wxStyledTextCtrl_AddRefDocument(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7438 PyObject
* _resultobj
;
7439 wxStyledTextCtrl
* _arg0
;
7441 PyObject
* _argo0
= 0;
7442 PyObject
* _argo1
= 0;
7443 char *_kwnames
[] = { "self","docPointer", NULL
};
7446 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_AddRefDocument",_kwnames
,&_argo0
,&_argo1
))
7449 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7450 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7451 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_AddRefDocument. Expected _wxStyledTextCtrl_p.");
7456 if (_argo1
== Py_None
) { _arg1
= NULL
; }
7457 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,(char *) 0 )) {
7458 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxStyledTextCtrl_AddRefDocument. Expected _void_p.");
7463 wxPy_BEGIN_ALLOW_THREADS
;
7464 wxStyledTextCtrl_AddRefDocument(_arg0
,_arg1
);
7466 wxPy_END_ALLOW_THREADS
;
7467 } Py_INCREF(Py_None
);
7468 _resultobj
= Py_None
;
7472 #define wxStyledTextCtrl_ReleaseDocument(_swigobj,_swigarg0) (_swigobj->ReleaseDocument(_swigarg0))
7473 static PyObject
*_wrap_wxStyledTextCtrl_ReleaseDocument(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7474 PyObject
* _resultobj
;
7475 wxStyledTextCtrl
* _arg0
;
7477 PyObject
* _argo0
= 0;
7478 PyObject
* _argo1
= 0;
7479 char *_kwnames
[] = { "self","docPointer", NULL
};
7482 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_ReleaseDocument",_kwnames
,&_argo0
,&_argo1
))
7485 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7486 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7487 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ReleaseDocument. Expected _wxStyledTextCtrl_p.");
7492 if (_argo1
== Py_None
) { _arg1
= NULL
; }
7493 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,(char *) 0 )) {
7494 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxStyledTextCtrl_ReleaseDocument. Expected _void_p.");
7499 wxPy_BEGIN_ALLOW_THREADS
;
7500 wxStyledTextCtrl_ReleaseDocument(_arg0
,_arg1
);
7502 wxPy_END_ALLOW_THREADS
;
7503 } Py_INCREF(Py_None
);
7504 _resultobj
= Py_None
;
7508 #define wxStyledTextCtrl_GetModEventMask(_swigobj) (_swigobj->GetModEventMask())
7509 static PyObject
*_wrap_wxStyledTextCtrl_GetModEventMask(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7510 PyObject
* _resultobj
;
7512 wxStyledTextCtrl
* _arg0
;
7513 PyObject
* _argo0
= 0;
7514 char *_kwnames
[] = { "self", NULL
};
7517 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetModEventMask",_kwnames
,&_argo0
))
7520 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7521 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7522 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetModEventMask. Expected _wxStyledTextCtrl_p.");
7527 wxPy_BEGIN_ALLOW_THREADS
;
7528 _result
= (int )wxStyledTextCtrl_GetModEventMask(_arg0
);
7530 wxPy_END_ALLOW_THREADS
;
7531 } _resultobj
= Py_BuildValue("i",_result
);
7535 #define wxStyledTextCtrl_SetSTCFocus(_swigobj,_swigarg0) (_swigobj->SetSTCFocus(_swigarg0))
7536 static PyObject
*_wrap_wxStyledTextCtrl_SetSTCFocus(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7537 PyObject
* _resultobj
;
7538 wxStyledTextCtrl
* _arg0
;
7540 PyObject
* _argo0
= 0;
7542 char *_kwnames
[] = { "self","focus", NULL
};
7545 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetSTCFocus",_kwnames
,&_argo0
,&tempbool1
))
7548 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7549 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7550 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetSTCFocus. Expected _wxStyledTextCtrl_p.");
7554 _arg1
= (bool ) tempbool1
;
7556 wxPy_BEGIN_ALLOW_THREADS
;
7557 wxStyledTextCtrl_SetSTCFocus(_arg0
,_arg1
);
7559 wxPy_END_ALLOW_THREADS
;
7560 } Py_INCREF(Py_None
);
7561 _resultobj
= Py_None
;
7565 #define wxStyledTextCtrl_GetSTCFocus(_swigobj) (_swigobj->GetSTCFocus())
7566 static PyObject
*_wrap_wxStyledTextCtrl_GetSTCFocus(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7567 PyObject
* _resultobj
;
7569 wxStyledTextCtrl
* _arg0
;
7570 PyObject
* _argo0
= 0;
7571 char *_kwnames
[] = { "self", NULL
};
7574 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSTCFocus",_kwnames
,&_argo0
))
7577 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7578 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7579 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSTCFocus. Expected _wxStyledTextCtrl_p.");
7584 wxPy_BEGIN_ALLOW_THREADS
;
7585 _result
= (bool )wxStyledTextCtrl_GetSTCFocus(_arg0
);
7587 wxPy_END_ALLOW_THREADS
;
7588 } _resultobj
= Py_BuildValue("i",_result
);
7592 #define wxStyledTextCtrl_SetStatus(_swigobj,_swigarg0) (_swigobj->SetStatus(_swigarg0))
7593 static PyObject
*_wrap_wxStyledTextCtrl_SetStatus(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7594 PyObject
* _resultobj
;
7595 wxStyledTextCtrl
* _arg0
;
7597 PyObject
* _argo0
= 0;
7598 char *_kwnames
[] = { "self","statusCode", NULL
};
7601 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetStatus",_kwnames
,&_argo0
,&_arg1
))
7604 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7605 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7606 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetStatus. Expected _wxStyledTextCtrl_p.");
7611 wxPy_BEGIN_ALLOW_THREADS
;
7612 wxStyledTextCtrl_SetStatus(_arg0
,_arg1
);
7614 wxPy_END_ALLOW_THREADS
;
7615 } Py_INCREF(Py_None
);
7616 _resultobj
= Py_None
;
7620 #define wxStyledTextCtrl_GetStatus(_swigobj) (_swigobj->GetStatus())
7621 static PyObject
*_wrap_wxStyledTextCtrl_GetStatus(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7622 PyObject
* _resultobj
;
7624 wxStyledTextCtrl
* _arg0
;
7625 PyObject
* _argo0
= 0;
7626 char *_kwnames
[] = { "self", NULL
};
7629 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetStatus",_kwnames
,&_argo0
))
7632 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7633 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7634 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetStatus. Expected _wxStyledTextCtrl_p.");
7639 wxPy_BEGIN_ALLOW_THREADS
;
7640 _result
= (int )wxStyledTextCtrl_GetStatus(_arg0
);
7642 wxPy_END_ALLOW_THREADS
;
7643 } _resultobj
= Py_BuildValue("i",_result
);
7647 #define wxStyledTextCtrl_SetMouseDownCaptures(_swigobj,_swigarg0) (_swigobj->SetMouseDownCaptures(_swigarg0))
7648 static PyObject
*_wrap_wxStyledTextCtrl_SetMouseDownCaptures(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7649 PyObject
* _resultobj
;
7650 wxStyledTextCtrl
* _arg0
;
7652 PyObject
* _argo0
= 0;
7654 char *_kwnames
[] = { "self","captures", NULL
};
7657 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetMouseDownCaptures",_kwnames
,&_argo0
,&tempbool1
))
7660 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7661 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7662 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMouseDownCaptures. Expected _wxStyledTextCtrl_p.");
7666 _arg1
= (bool ) tempbool1
;
7668 wxPy_BEGIN_ALLOW_THREADS
;
7669 wxStyledTextCtrl_SetMouseDownCaptures(_arg0
,_arg1
);
7671 wxPy_END_ALLOW_THREADS
;
7672 } Py_INCREF(Py_None
);
7673 _resultobj
= Py_None
;
7677 #define wxStyledTextCtrl_GetMouseDownCaptures(_swigobj) (_swigobj->GetMouseDownCaptures())
7678 static PyObject
*_wrap_wxStyledTextCtrl_GetMouseDownCaptures(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7679 PyObject
* _resultobj
;
7681 wxStyledTextCtrl
* _arg0
;
7682 PyObject
* _argo0
= 0;
7683 char *_kwnames
[] = { "self", NULL
};
7686 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetMouseDownCaptures",_kwnames
,&_argo0
))
7689 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7690 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7691 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetMouseDownCaptures. Expected _wxStyledTextCtrl_p.");
7696 wxPy_BEGIN_ALLOW_THREADS
;
7697 _result
= (bool )wxStyledTextCtrl_GetMouseDownCaptures(_arg0
);
7699 wxPy_END_ALLOW_THREADS
;
7700 } _resultobj
= Py_BuildValue("i",_result
);
7704 #define wxStyledTextCtrl_SetCursor(_swigobj,_swigarg0) (_swigobj->SetCursor(_swigarg0))
7705 static PyObject
*_wrap_wxStyledTextCtrl_SetCursor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7706 PyObject
* _resultobj
;
7707 wxStyledTextCtrl
* _arg0
;
7709 PyObject
* _argo0
= 0;
7710 char *_kwnames
[] = { "self","cursorType", NULL
};
7713 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetCursor",_kwnames
,&_argo0
,&_arg1
))
7716 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7717 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7718 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetCursor. Expected _wxStyledTextCtrl_p.");
7723 wxPy_BEGIN_ALLOW_THREADS
;
7724 wxStyledTextCtrl_SetCursor(_arg0
,_arg1
);
7726 wxPy_END_ALLOW_THREADS
;
7727 } Py_INCREF(Py_None
);
7728 _resultobj
= Py_None
;
7732 #define wxStyledTextCtrl_GetCursor(_swigobj) (_swigobj->GetCursor())
7733 static PyObject
*_wrap_wxStyledTextCtrl_GetCursor(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7734 PyObject
* _resultobj
;
7736 wxStyledTextCtrl
* _arg0
;
7737 PyObject
* _argo0
= 0;
7738 char *_kwnames
[] = { "self", NULL
};
7741 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCursor",_kwnames
,&_argo0
))
7744 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7745 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7746 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCursor. Expected _wxStyledTextCtrl_p.");
7751 wxPy_BEGIN_ALLOW_THREADS
;
7752 _result
= (int )wxStyledTextCtrl_GetCursor(_arg0
);
7754 wxPy_END_ALLOW_THREADS
;
7755 } _resultobj
= Py_BuildValue("i",_result
);
7759 #define wxStyledTextCtrl_WordPartLeft(_swigobj) (_swigobj->WordPartLeft())
7760 static PyObject
*_wrap_wxStyledTextCtrl_WordPartLeft(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7761 PyObject
* _resultobj
;
7762 wxStyledTextCtrl
* _arg0
;
7763 PyObject
* _argo0
= 0;
7764 char *_kwnames
[] = { "self", NULL
};
7767 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_WordPartLeft",_kwnames
,&_argo0
))
7770 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7771 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7772 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_WordPartLeft. Expected _wxStyledTextCtrl_p.");
7777 wxPy_BEGIN_ALLOW_THREADS
;
7778 wxStyledTextCtrl_WordPartLeft(_arg0
);
7780 wxPy_END_ALLOW_THREADS
;
7781 } Py_INCREF(Py_None
);
7782 _resultobj
= Py_None
;
7786 #define wxStyledTextCtrl_WordPartLeftExtend(_swigobj) (_swigobj->WordPartLeftExtend())
7787 static PyObject
*_wrap_wxStyledTextCtrl_WordPartLeftExtend(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7788 PyObject
* _resultobj
;
7789 wxStyledTextCtrl
* _arg0
;
7790 PyObject
* _argo0
= 0;
7791 char *_kwnames
[] = { "self", NULL
};
7794 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_WordPartLeftExtend",_kwnames
,&_argo0
))
7797 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7798 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7799 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_WordPartLeftExtend. Expected _wxStyledTextCtrl_p.");
7804 wxPy_BEGIN_ALLOW_THREADS
;
7805 wxStyledTextCtrl_WordPartLeftExtend(_arg0
);
7807 wxPy_END_ALLOW_THREADS
;
7808 } Py_INCREF(Py_None
);
7809 _resultobj
= Py_None
;
7813 #define wxStyledTextCtrl_WordPartRight(_swigobj) (_swigobj->WordPartRight())
7814 static PyObject
*_wrap_wxStyledTextCtrl_WordPartRight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7815 PyObject
* _resultobj
;
7816 wxStyledTextCtrl
* _arg0
;
7817 PyObject
* _argo0
= 0;
7818 char *_kwnames
[] = { "self", NULL
};
7821 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_WordPartRight",_kwnames
,&_argo0
))
7824 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7825 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7826 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_WordPartRight. Expected _wxStyledTextCtrl_p.");
7831 wxPy_BEGIN_ALLOW_THREADS
;
7832 wxStyledTextCtrl_WordPartRight(_arg0
);
7834 wxPy_END_ALLOW_THREADS
;
7835 } Py_INCREF(Py_None
);
7836 _resultobj
= Py_None
;
7840 #define wxStyledTextCtrl_WordPartRightExtend(_swigobj) (_swigobj->WordPartRightExtend())
7841 static PyObject
*_wrap_wxStyledTextCtrl_WordPartRightExtend(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7842 PyObject
* _resultobj
;
7843 wxStyledTextCtrl
* _arg0
;
7844 PyObject
* _argo0
= 0;
7845 char *_kwnames
[] = { "self", NULL
};
7848 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_WordPartRightExtend",_kwnames
,&_argo0
))
7851 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7852 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7853 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_WordPartRightExtend. Expected _wxStyledTextCtrl_p.");
7858 wxPy_BEGIN_ALLOW_THREADS
;
7859 wxStyledTextCtrl_WordPartRightExtend(_arg0
);
7861 wxPy_END_ALLOW_THREADS
;
7862 } Py_INCREF(Py_None
);
7863 _resultobj
= Py_None
;
7867 #define wxStyledTextCtrl_SetVisiblePolicy(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetVisiblePolicy(_swigarg0,_swigarg1))
7868 static PyObject
*_wrap_wxStyledTextCtrl_SetVisiblePolicy(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7869 PyObject
* _resultobj
;
7870 wxStyledTextCtrl
* _arg0
;
7873 PyObject
* _argo0
= 0;
7874 char *_kwnames
[] = { "self","visiblePolicy","visibleSlop", NULL
};
7877 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetVisiblePolicy",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
7880 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7881 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7882 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetVisiblePolicy. Expected _wxStyledTextCtrl_p.");
7887 wxPy_BEGIN_ALLOW_THREADS
;
7888 wxStyledTextCtrl_SetVisiblePolicy(_arg0
,_arg1
,_arg2
);
7890 wxPy_END_ALLOW_THREADS
;
7891 } Py_INCREF(Py_None
);
7892 _resultobj
= Py_None
;
7896 #define wxStyledTextCtrl_DelLineLeft(_swigobj) (_swigobj->DelLineLeft())
7897 static PyObject
*_wrap_wxStyledTextCtrl_DelLineLeft(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7898 PyObject
* _resultobj
;
7899 wxStyledTextCtrl
* _arg0
;
7900 PyObject
* _argo0
= 0;
7901 char *_kwnames
[] = { "self", NULL
};
7904 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_DelLineLeft",_kwnames
,&_argo0
))
7907 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7908 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7909 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_DelLineLeft. Expected _wxStyledTextCtrl_p.");
7914 wxPy_BEGIN_ALLOW_THREADS
;
7915 wxStyledTextCtrl_DelLineLeft(_arg0
);
7917 wxPy_END_ALLOW_THREADS
;
7918 } Py_INCREF(Py_None
);
7919 _resultobj
= Py_None
;
7923 #define wxStyledTextCtrl_DelLineRight(_swigobj) (_swigobj->DelLineRight())
7924 static PyObject
*_wrap_wxStyledTextCtrl_DelLineRight(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7925 PyObject
* _resultobj
;
7926 wxStyledTextCtrl
* _arg0
;
7927 PyObject
* _argo0
= 0;
7928 char *_kwnames
[] = { "self", NULL
};
7931 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_DelLineRight",_kwnames
,&_argo0
))
7934 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7935 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7936 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_DelLineRight. Expected _wxStyledTextCtrl_p.");
7941 wxPy_BEGIN_ALLOW_THREADS
;
7942 wxStyledTextCtrl_DelLineRight(_arg0
);
7944 wxPy_END_ALLOW_THREADS
;
7945 } Py_INCREF(Py_None
);
7946 _resultobj
= Py_None
;
7950 #define wxStyledTextCtrl_StartRecord(_swigobj) (_swigobj->StartRecord())
7951 static PyObject
*_wrap_wxStyledTextCtrl_StartRecord(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7952 PyObject
* _resultobj
;
7953 wxStyledTextCtrl
* _arg0
;
7954 PyObject
* _argo0
= 0;
7955 char *_kwnames
[] = { "self", NULL
};
7958 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_StartRecord",_kwnames
,&_argo0
))
7961 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7962 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7963 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StartRecord. Expected _wxStyledTextCtrl_p.");
7968 wxPy_BEGIN_ALLOW_THREADS
;
7969 wxStyledTextCtrl_StartRecord(_arg0
);
7971 wxPy_END_ALLOW_THREADS
;
7972 } Py_INCREF(Py_None
);
7973 _resultobj
= Py_None
;
7977 #define wxStyledTextCtrl_StopRecord(_swigobj) (_swigobj->StopRecord())
7978 static PyObject
*_wrap_wxStyledTextCtrl_StopRecord(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
7979 PyObject
* _resultobj
;
7980 wxStyledTextCtrl
* _arg0
;
7981 PyObject
* _argo0
= 0;
7982 char *_kwnames
[] = { "self", NULL
};
7985 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_StopRecord",_kwnames
,&_argo0
))
7988 if (_argo0
== Py_None
) { _arg0
= NULL
; }
7989 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
7990 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StopRecord. Expected _wxStyledTextCtrl_p.");
7995 wxPy_BEGIN_ALLOW_THREADS
;
7996 wxStyledTextCtrl_StopRecord(_arg0
);
7998 wxPy_END_ALLOW_THREADS
;
7999 } Py_INCREF(Py_None
);
8000 _resultobj
= Py_None
;
8004 #define wxStyledTextCtrl_SetLexer(_swigobj,_swigarg0) (_swigobj->SetLexer(_swigarg0))
8005 static PyObject
*_wrap_wxStyledTextCtrl_SetLexer(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8006 PyObject
* _resultobj
;
8007 wxStyledTextCtrl
* _arg0
;
8009 PyObject
* _argo0
= 0;
8010 char *_kwnames
[] = { "self","lexer", NULL
};
8013 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_SetLexer",_kwnames
,&_argo0
,&_arg1
))
8016 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8017 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8018 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetLexer. Expected _wxStyledTextCtrl_p.");
8023 wxPy_BEGIN_ALLOW_THREADS
;
8024 wxStyledTextCtrl_SetLexer(_arg0
,_arg1
);
8026 wxPy_END_ALLOW_THREADS
;
8027 } Py_INCREF(Py_None
);
8028 _resultobj
= Py_None
;
8032 #define wxStyledTextCtrl_GetLexer(_swigobj) (_swigobj->GetLexer())
8033 static PyObject
*_wrap_wxStyledTextCtrl_GetLexer(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8034 PyObject
* _resultobj
;
8036 wxStyledTextCtrl
* _arg0
;
8037 PyObject
* _argo0
= 0;
8038 char *_kwnames
[] = { "self", NULL
};
8041 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetLexer",_kwnames
,&_argo0
))
8044 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8045 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8046 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetLexer. Expected _wxStyledTextCtrl_p.");
8051 wxPy_BEGIN_ALLOW_THREADS
;
8052 _result
= (int )wxStyledTextCtrl_GetLexer(_arg0
);
8054 wxPy_END_ALLOW_THREADS
;
8055 } _resultobj
= Py_BuildValue("i",_result
);
8059 #define wxStyledTextCtrl_Colourise(_swigobj,_swigarg0,_swigarg1) (_swigobj->Colourise(_swigarg0,_swigarg1))
8060 static PyObject
*_wrap_wxStyledTextCtrl_Colourise(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8061 PyObject
* _resultobj
;
8062 wxStyledTextCtrl
* _arg0
;
8065 PyObject
* _argo0
= 0;
8066 char *_kwnames
[] = { "self","start","end", NULL
};
8069 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_Colourise",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
8072 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8073 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8074 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_Colourise. Expected _wxStyledTextCtrl_p.");
8079 wxPy_BEGIN_ALLOW_THREADS
;
8080 wxStyledTextCtrl_Colourise(_arg0
,_arg1
,_arg2
);
8082 wxPy_END_ALLOW_THREADS
;
8083 } Py_INCREF(Py_None
);
8084 _resultobj
= Py_None
;
8088 #define wxStyledTextCtrl_SetProperty(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetProperty(_swigarg0,_swigarg1))
8089 static PyObject
*_wrap_wxStyledTextCtrl_SetProperty(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8090 PyObject
* _resultobj
;
8091 wxStyledTextCtrl
* _arg0
;
8094 PyObject
* _argo0
= 0;
8095 PyObject
* _obj1
= 0;
8096 PyObject
* _obj2
= 0;
8097 char *_kwnames
[] = { "self","key","value", NULL
};
8100 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OOO:wxStyledTextCtrl_SetProperty",_kwnames
,&_argo0
,&_obj1
,&_obj2
))
8103 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8104 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8105 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetProperty. Expected _wxStyledTextCtrl_p.");
8110 #if PYTHON_API_VERSION >= 1009
8111 char* tmpPtr
; int tmpSize
;
8112 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
8113 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8116 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
8118 _arg1
= new wxString(tmpPtr
, tmpSize
);
8120 if (!PyString_Check(_obj1
)) {
8121 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8124 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
8128 #if PYTHON_API_VERSION >= 1009
8129 char* tmpPtr
; int tmpSize
;
8130 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
8131 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8134 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
8136 _arg2
= new wxString(tmpPtr
, tmpSize
);
8138 if (!PyString_Check(_obj2
)) {
8139 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8142 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
8146 wxPy_BEGIN_ALLOW_THREADS
;
8147 wxStyledTextCtrl_SetProperty(_arg0
,*_arg1
,*_arg2
);
8149 wxPy_END_ALLOW_THREADS
;
8150 } Py_INCREF(Py_None
);
8151 _resultobj
= Py_None
;
8163 #define wxStyledTextCtrl_SetKeyWords(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetKeyWords(_swigarg0,_swigarg1))
8164 static PyObject
*_wrap_wxStyledTextCtrl_SetKeyWords(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8165 PyObject
* _resultobj
;
8166 wxStyledTextCtrl
* _arg0
;
8169 PyObject
* _argo0
= 0;
8170 PyObject
* _obj2
= 0;
8171 char *_kwnames
[] = { "self","keywordSet","keyWords", NULL
};
8174 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_SetKeyWords",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
8177 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8178 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8179 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetKeyWords. Expected _wxStyledTextCtrl_p.");
8184 #if PYTHON_API_VERSION >= 1009
8185 char* tmpPtr
; int tmpSize
;
8186 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
8187 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8190 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
8192 _arg2
= new wxString(tmpPtr
, tmpSize
);
8194 if (!PyString_Check(_obj2
)) {
8195 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8198 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
8202 wxPy_BEGIN_ALLOW_THREADS
;
8203 wxStyledTextCtrl_SetKeyWords(_arg0
,_arg1
,*_arg2
);
8205 wxPy_END_ALLOW_THREADS
;
8206 } Py_INCREF(Py_None
);
8207 _resultobj
= Py_None
;
8215 #define wxStyledTextCtrl_SetLexerLanguage(_swigobj,_swigarg0) (_swigobj->SetLexerLanguage(_swigarg0))
8216 static PyObject
*_wrap_wxStyledTextCtrl_SetLexerLanguage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8217 PyObject
* _resultobj
;
8218 wxStyledTextCtrl
* _arg0
;
8220 PyObject
* _argo0
= 0;
8221 PyObject
* _obj1
= 0;
8222 char *_kwnames
[] = { "self","language", NULL
};
8225 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextCtrl_SetLexerLanguage",_kwnames
,&_argo0
,&_obj1
))
8228 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8229 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8230 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetLexerLanguage. Expected _wxStyledTextCtrl_p.");
8235 #if PYTHON_API_VERSION >= 1009
8236 char* tmpPtr
; int tmpSize
;
8237 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
8238 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8241 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
8243 _arg1
= new wxString(tmpPtr
, tmpSize
);
8245 if (!PyString_Check(_obj1
)) {
8246 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8249 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
8253 wxPy_BEGIN_ALLOW_THREADS
;
8254 wxStyledTextCtrl_SetLexerLanguage(_arg0
,*_arg1
);
8256 wxPy_END_ALLOW_THREADS
;
8257 } Py_INCREF(Py_None
);
8258 _resultobj
= Py_None
;
8266 #define wxStyledTextCtrl_GetCurrentLine(_swigobj) (_swigobj->GetCurrentLine())
8267 static PyObject
*_wrap_wxStyledTextCtrl_GetCurrentLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8268 PyObject
* _resultobj
;
8270 wxStyledTextCtrl
* _arg0
;
8271 PyObject
* _argo0
= 0;
8272 char *_kwnames
[] = { "self", NULL
};
8275 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetCurrentLine",_kwnames
,&_argo0
))
8278 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8279 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8280 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetCurrentLine. Expected _wxStyledTextCtrl_p.");
8285 wxPy_BEGIN_ALLOW_THREADS
;
8286 _result
= (int )wxStyledTextCtrl_GetCurrentLine(_arg0
);
8288 wxPy_END_ALLOW_THREADS
;
8289 } _resultobj
= Py_BuildValue("i",_result
);
8293 #define wxStyledTextCtrl_StyleSetSpec(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetSpec(_swigarg0,_swigarg1))
8294 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetSpec(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8295 PyObject
* _resultobj
;
8296 wxStyledTextCtrl
* _arg0
;
8299 PyObject
* _argo0
= 0;
8300 PyObject
* _obj2
= 0;
8301 char *_kwnames
[] = { "self","styleNum","spec", NULL
};
8304 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_StyleSetSpec",_kwnames
,&_argo0
,&_arg1
,&_obj2
))
8307 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8308 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8309 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetSpec. Expected _wxStyledTextCtrl_p.");
8314 #if PYTHON_API_VERSION >= 1009
8315 char* tmpPtr
; int tmpSize
;
8316 if (!PyString_Check(_obj2
) && !PyUnicode_Check(_obj2
)) {
8317 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8320 if (PyString_AsStringAndSize(_obj2
, &tmpPtr
, &tmpSize
) == -1)
8322 _arg2
= new wxString(tmpPtr
, tmpSize
);
8324 if (!PyString_Check(_obj2
)) {
8325 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8328 _arg2
= new wxString(PyString_AS_STRING(_obj2
), PyString_GET_SIZE(_obj2
));
8332 wxPy_BEGIN_ALLOW_THREADS
;
8333 wxStyledTextCtrl_StyleSetSpec(_arg0
,_arg1
,*_arg2
);
8335 wxPy_END_ALLOW_THREADS
;
8336 } Py_INCREF(Py_None
);
8337 _resultobj
= Py_None
;
8345 #define wxStyledTextCtrl_StyleSetFont(_swigobj,_swigarg0,_swigarg1) (_swigobj->StyleSetFont(_swigarg0,_swigarg1))
8346 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetFont(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8347 PyObject
* _resultobj
;
8348 wxStyledTextCtrl
* _arg0
;
8351 PyObject
* _argo0
= 0;
8352 PyObject
* _argo2
= 0;
8353 char *_kwnames
[] = { "self","styleNum","font", NULL
};
8356 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiO:wxStyledTextCtrl_StyleSetFont",_kwnames
,&_argo0
,&_arg1
,&_argo2
))
8359 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8360 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8361 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetFont. Expected _wxStyledTextCtrl_p.");
8366 if (_argo2
== Py_None
) { _arg2
= NULL
; }
8367 else if (SWIG_GetPtrObj(_argo2
,(void **) &_arg2
,"_wxFont_p")) {
8368 PyErr_SetString(PyExc_TypeError
,"Type error in argument 3 of wxStyledTextCtrl_StyleSetFont. Expected _wxFont_p.");
8373 wxPy_BEGIN_ALLOW_THREADS
;
8374 wxStyledTextCtrl_StyleSetFont(_arg0
,_arg1
,*_arg2
);
8376 wxPy_END_ALLOW_THREADS
;
8377 } Py_INCREF(Py_None
);
8378 _resultobj
= Py_None
;
8382 #define wxStyledTextCtrl_StyleSetFontAttr(_swigobj,_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5) (_swigobj->StyleSetFontAttr(_swigarg0,_swigarg1,_swigarg2,_swigarg3,_swigarg4,_swigarg5))
8383 static PyObject
*_wrap_wxStyledTextCtrl_StyleSetFontAttr(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8384 PyObject
* _resultobj
;
8385 wxStyledTextCtrl
* _arg0
;
8392 PyObject
* _argo0
= 0;
8393 PyObject
* _obj3
= 0;
8397 char *_kwnames
[] = { "self","styleNum","size","faceName","bold","italic","underline", NULL
};
8400 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OiiOiii:wxStyledTextCtrl_StyleSetFontAttr",_kwnames
,&_argo0
,&_arg1
,&_arg2
,&_obj3
,&tempbool4
,&tempbool5
,&tempbool6
))
8403 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8404 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8405 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_StyleSetFontAttr. Expected _wxStyledTextCtrl_p.");
8410 #if PYTHON_API_VERSION >= 1009
8411 char* tmpPtr
; int tmpSize
;
8412 if (!PyString_Check(_obj3
) && !PyUnicode_Check(_obj3
)) {
8413 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8416 if (PyString_AsStringAndSize(_obj3
, &tmpPtr
, &tmpSize
) == -1)
8418 _arg3
= new wxString(tmpPtr
, tmpSize
);
8420 if (!PyString_Check(_obj3
)) {
8421 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
8424 _arg3
= new wxString(PyString_AS_STRING(_obj3
), PyString_GET_SIZE(_obj3
));
8427 _arg4
= (bool ) tempbool4
;
8428 _arg5
= (bool ) tempbool5
;
8429 _arg6
= (bool ) tempbool6
;
8431 wxPy_BEGIN_ALLOW_THREADS
;
8432 wxStyledTextCtrl_StyleSetFontAttr(_arg0
,_arg1
,_arg2
,*_arg3
,_arg4
,_arg5
,_arg6
);
8434 wxPy_END_ALLOW_THREADS
;
8435 } Py_INCREF(Py_None
);
8436 _resultobj
= Py_None
;
8444 #define wxStyledTextCtrl_CmdKeyExecute(_swigobj,_swigarg0) (_swigobj->CmdKeyExecute(_swigarg0))
8445 static PyObject
*_wrap_wxStyledTextCtrl_CmdKeyExecute(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8446 PyObject
* _resultobj
;
8447 wxStyledTextCtrl
* _arg0
;
8449 PyObject
* _argo0
= 0;
8450 char *_kwnames
[] = { "self","cmd", NULL
};
8453 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_CmdKeyExecute",_kwnames
,&_argo0
,&_arg1
))
8456 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8457 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8458 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_CmdKeyExecute. Expected _wxStyledTextCtrl_p.");
8463 wxPy_BEGIN_ALLOW_THREADS
;
8464 wxStyledTextCtrl_CmdKeyExecute(_arg0
,_arg1
);
8466 wxPy_END_ALLOW_THREADS
;
8467 } Py_INCREF(Py_None
);
8468 _resultobj
= Py_None
;
8472 #define wxStyledTextCtrl_SetMargins(_swigobj,_swigarg0,_swigarg1) (_swigobj->SetMargins(_swigarg0,_swigarg1))
8473 static PyObject
*_wrap_wxStyledTextCtrl_SetMargins(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8474 PyObject
* _resultobj
;
8475 wxStyledTextCtrl
* _arg0
;
8478 PyObject
* _argo0
= 0;
8479 char *_kwnames
[] = { "self","left","right", NULL
};
8482 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oii:wxStyledTextCtrl_SetMargins",_kwnames
,&_argo0
,&_arg1
,&_arg2
))
8485 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8486 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8487 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SetMargins. Expected _wxStyledTextCtrl_p.");
8492 wxPy_BEGIN_ALLOW_THREADS
;
8493 wxStyledTextCtrl_SetMargins(_arg0
,_arg1
,_arg2
);
8495 wxPy_END_ALLOW_THREADS
;
8496 } Py_INCREF(Py_None
);
8497 _resultobj
= Py_None
;
8501 #define wxStyledTextCtrl_GetSelection(_swigobj,_swigarg0,_swigarg1) (_swigobj->GetSelection(_swigarg0,_swigarg1))
8502 static PyObject
*_wrap_wxStyledTextCtrl_GetSelection(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8503 PyObject
* _resultobj
;
8504 wxStyledTextCtrl
* _arg0
;
8509 PyObject
* _argo0
= 0;
8510 char *_kwnames
[] = { "self", NULL
};
8519 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextCtrl_GetSelection",_kwnames
,&_argo0
))
8522 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8523 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8524 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_GetSelection. Expected _wxStyledTextCtrl_p.");
8529 wxPy_BEGIN_ALLOW_THREADS
;
8530 wxStyledTextCtrl_GetSelection(_arg0
,_arg1
,_arg2
);
8532 wxPy_END_ALLOW_THREADS
;
8533 } Py_INCREF(Py_None
);
8534 _resultobj
= Py_None
;
8537 o
= PyInt_FromLong((long) (*_arg1
));
8538 _resultobj
= t_output_helper(_resultobj
, o
);
8542 o
= PyInt_FromLong((long) (*_arg2
));
8543 _resultobj
= t_output_helper(_resultobj
, o
);
8548 #define wxStyledTextCtrl_PointFromPosition(_swigobj,_swigarg0) (_swigobj->PointFromPosition(_swigarg0))
8549 static PyObject
*_wrap_wxStyledTextCtrl_PointFromPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8550 PyObject
* _resultobj
;
8552 wxStyledTextCtrl
* _arg0
;
8554 PyObject
* _argo0
= 0;
8555 char *_kwnames
[] = { "self","pos", NULL
};
8559 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_PointFromPosition",_kwnames
,&_argo0
,&_arg1
))
8562 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8563 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8564 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_PointFromPosition. Expected _wxStyledTextCtrl_p.");
8569 wxPy_BEGIN_ALLOW_THREADS
;
8570 _result
= new wxPoint (wxStyledTextCtrl_PointFromPosition(_arg0
,_arg1
));
8572 wxPy_END_ALLOW_THREADS
;
8573 } SWIG_MakePtr(_ptemp
, (void *) _result
,"_wxPoint_p");
8574 _resultobj
= Py_BuildValue("s",_ptemp
);
8578 #define wxStyledTextCtrl_ScrollToLine(_swigobj,_swigarg0) (_swigobj->ScrollToLine(_swigarg0))
8579 static PyObject
*_wrap_wxStyledTextCtrl_ScrollToLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8580 PyObject
* _resultobj
;
8581 wxStyledTextCtrl
* _arg0
;
8583 PyObject
* _argo0
= 0;
8584 char *_kwnames
[] = { "self","line", NULL
};
8587 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_ScrollToLine",_kwnames
,&_argo0
,&_arg1
))
8590 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8591 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8592 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ScrollToLine. Expected _wxStyledTextCtrl_p.");
8597 wxPy_BEGIN_ALLOW_THREADS
;
8598 wxStyledTextCtrl_ScrollToLine(_arg0
,_arg1
);
8600 wxPy_END_ALLOW_THREADS
;
8601 } Py_INCREF(Py_None
);
8602 _resultobj
= Py_None
;
8606 #define wxStyledTextCtrl_ScrollToColumn(_swigobj,_swigarg0) (_swigobj->ScrollToColumn(_swigarg0))
8607 static PyObject
*_wrap_wxStyledTextCtrl_ScrollToColumn(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8608 PyObject
* _resultobj
;
8609 wxStyledTextCtrl
* _arg0
;
8611 PyObject
* _argo0
= 0;
8612 char *_kwnames
[] = { "self","column", NULL
};
8615 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextCtrl_ScrollToColumn",_kwnames
,&_argo0
,&_arg1
))
8618 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8619 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8620 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_ScrollToColumn. Expected _wxStyledTextCtrl_p.");
8625 wxPy_BEGIN_ALLOW_THREADS
;
8626 wxStyledTextCtrl_ScrollToColumn(_arg0
,_arg1
);
8628 wxPy_END_ALLOW_THREADS
;
8629 } Py_INCREF(Py_None
);
8630 _resultobj
= Py_None
;
8634 #define wxStyledTextCtrl_SendMsg(_swigobj,_swigarg0,_swigarg1,_swigarg2) (_swigobj->SendMsg(_swigarg0,_swigarg1,_swigarg2))
8635 static PyObject
*_wrap_wxStyledTextCtrl_SendMsg(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8636 PyObject
* _resultobj
;
8638 wxStyledTextCtrl
* _arg0
;
8640 long _arg2
= (long ) 0;
8641 long _arg3
= (long ) 0;
8642 PyObject
* _argo0
= 0;
8643 char *_kwnames
[] = { "self","msg","wp","lp", NULL
};
8646 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi|ll:wxStyledTextCtrl_SendMsg",_kwnames
,&_argo0
,&_arg1
,&_arg2
,&_arg3
))
8649 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8650 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextCtrl_p")) {
8651 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextCtrl_SendMsg. Expected _wxStyledTextCtrl_p.");
8656 wxPy_BEGIN_ALLOW_THREADS
;
8657 _result
= (long )wxStyledTextCtrl_SendMsg(_arg0
,_arg1
,_arg2
,_arg3
);
8659 wxPy_END_ALLOW_THREADS
;
8660 } _resultobj
= Py_BuildValue("l",_result
);
8664 static void *SwigwxStyledTextEventTowxCommandEvent(void *ptr
) {
8665 wxStyledTextEvent
*src
;
8666 wxCommandEvent
*dest
;
8667 src
= (wxStyledTextEvent
*) ptr
;
8668 dest
= (wxCommandEvent
*) src
;
8669 return (void *) dest
;
8672 static void *SwigwxStyledTextEventTowxEvent(void *ptr
) {
8673 wxStyledTextEvent
*src
;
8675 src
= (wxStyledTextEvent
*) ptr
;
8676 dest
= (wxEvent
*) src
;
8677 return (void *) dest
;
8680 static void *SwigwxStyledTextEventTowxObject(void *ptr
) {
8681 wxStyledTextEvent
*src
;
8683 src
= (wxStyledTextEvent
*) ptr
;
8684 dest
= (wxObject
*) src
;
8685 return (void *) dest
;
8688 #define new_wxStyledTextEvent(_swigarg0,_swigarg1) (new wxStyledTextEvent(_swigarg0,_swigarg1))
8689 static PyObject
*_wrap_new_wxStyledTextEvent(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8690 PyObject
* _resultobj
;
8691 wxStyledTextEvent
* _result
;
8692 wxEventType _arg0
= (wxEventType
) 0;
8693 int _arg1
= (int ) 0;
8694 char *_kwnames
[] = { "commandType","id", NULL
};
8698 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"|ii:new_wxStyledTextEvent",_kwnames
,&_arg0
,&_arg1
))
8701 wxPy_BEGIN_ALLOW_THREADS
;
8702 _result
= (wxStyledTextEvent
*)new_wxStyledTextEvent(_arg0
,_arg1
);
8704 wxPy_END_ALLOW_THREADS
;
8706 SWIG_MakePtr(_ptemp
, (char *) _result
,"_wxStyledTextEvent_p");
8707 _resultobj
= Py_BuildValue("s",_ptemp
);
8710 _resultobj
= Py_None
;
8715 #define delete_wxStyledTextEvent(_swigobj) (delete _swigobj)
8716 static PyObject
*_wrap_delete_wxStyledTextEvent(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8717 PyObject
* _resultobj
;
8718 wxStyledTextEvent
* _arg0
;
8719 PyObject
* _argo0
= 0;
8720 char *_kwnames
[] = { "self", NULL
};
8723 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:delete_wxStyledTextEvent",_kwnames
,&_argo0
))
8726 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8727 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8728 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of delete_wxStyledTextEvent. Expected _wxStyledTextEvent_p.");
8733 wxPy_BEGIN_ALLOW_THREADS
;
8734 delete_wxStyledTextEvent(_arg0
);
8736 wxPy_END_ALLOW_THREADS
;
8737 } Py_INCREF(Py_None
);
8738 _resultobj
= Py_None
;
8742 #define wxStyledTextEvent_SetPosition(_swigobj,_swigarg0) (_swigobj->SetPosition(_swigarg0))
8743 static PyObject
*_wrap_wxStyledTextEvent_SetPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8744 PyObject
* _resultobj
;
8745 wxStyledTextEvent
* _arg0
;
8747 PyObject
* _argo0
= 0;
8748 char *_kwnames
[] = { "self","pos", NULL
};
8751 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetPosition",_kwnames
,&_argo0
,&_arg1
))
8754 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8755 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8756 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetPosition. Expected _wxStyledTextEvent_p.");
8761 wxPy_BEGIN_ALLOW_THREADS
;
8762 wxStyledTextEvent_SetPosition(_arg0
,_arg1
);
8764 wxPy_END_ALLOW_THREADS
;
8765 } Py_INCREF(Py_None
);
8766 _resultobj
= Py_None
;
8770 #define wxStyledTextEvent_SetKey(_swigobj,_swigarg0) (_swigobj->SetKey(_swigarg0))
8771 static PyObject
*_wrap_wxStyledTextEvent_SetKey(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8772 PyObject
* _resultobj
;
8773 wxStyledTextEvent
* _arg0
;
8775 PyObject
* _argo0
= 0;
8776 char *_kwnames
[] = { "self","k", NULL
};
8779 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetKey",_kwnames
,&_argo0
,&_arg1
))
8782 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8783 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8784 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetKey. Expected _wxStyledTextEvent_p.");
8789 wxPy_BEGIN_ALLOW_THREADS
;
8790 wxStyledTextEvent_SetKey(_arg0
,_arg1
);
8792 wxPy_END_ALLOW_THREADS
;
8793 } Py_INCREF(Py_None
);
8794 _resultobj
= Py_None
;
8798 #define wxStyledTextEvent_SetModifiers(_swigobj,_swigarg0) (_swigobj->SetModifiers(_swigarg0))
8799 static PyObject
*_wrap_wxStyledTextEvent_SetModifiers(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8800 PyObject
* _resultobj
;
8801 wxStyledTextEvent
* _arg0
;
8803 PyObject
* _argo0
= 0;
8804 char *_kwnames
[] = { "self","m", NULL
};
8807 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetModifiers",_kwnames
,&_argo0
,&_arg1
))
8810 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8811 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8812 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetModifiers. Expected _wxStyledTextEvent_p.");
8817 wxPy_BEGIN_ALLOW_THREADS
;
8818 wxStyledTextEvent_SetModifiers(_arg0
,_arg1
);
8820 wxPy_END_ALLOW_THREADS
;
8821 } Py_INCREF(Py_None
);
8822 _resultobj
= Py_None
;
8826 #define wxStyledTextEvent_SetModificationType(_swigobj,_swigarg0) (_swigobj->SetModificationType(_swigarg0))
8827 static PyObject
*_wrap_wxStyledTextEvent_SetModificationType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8828 PyObject
* _resultobj
;
8829 wxStyledTextEvent
* _arg0
;
8831 PyObject
* _argo0
= 0;
8832 char *_kwnames
[] = { "self","t", NULL
};
8835 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetModificationType",_kwnames
,&_argo0
,&_arg1
))
8838 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8839 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8840 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetModificationType. Expected _wxStyledTextEvent_p.");
8845 wxPy_BEGIN_ALLOW_THREADS
;
8846 wxStyledTextEvent_SetModificationType(_arg0
,_arg1
);
8848 wxPy_END_ALLOW_THREADS
;
8849 } Py_INCREF(Py_None
);
8850 _resultobj
= Py_None
;
8854 #define wxStyledTextEvent_SetText(_swigobj,_swigarg0) (_swigobj->SetText(_swigarg0))
8855 static PyObject
*_wrap_wxStyledTextEvent_SetText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8856 PyObject
* _resultobj
;
8857 wxStyledTextEvent
* _arg0
;
8859 PyObject
* _argo0
= 0;
8860 char *_kwnames
[] = { "self","t", NULL
};
8863 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Os:wxStyledTextEvent_SetText",_kwnames
,&_argo0
,&_arg1
))
8866 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8867 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8868 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetText. Expected _wxStyledTextEvent_p.");
8873 wxPy_BEGIN_ALLOW_THREADS
;
8874 wxStyledTextEvent_SetText(_arg0
,_arg1
);
8876 wxPy_END_ALLOW_THREADS
;
8877 } Py_INCREF(Py_None
);
8878 _resultobj
= Py_None
;
8882 #define wxStyledTextEvent_SetLength(_swigobj,_swigarg0) (_swigobj->SetLength(_swigarg0))
8883 static PyObject
*_wrap_wxStyledTextEvent_SetLength(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8884 PyObject
* _resultobj
;
8885 wxStyledTextEvent
* _arg0
;
8887 PyObject
* _argo0
= 0;
8888 char *_kwnames
[] = { "self","len", NULL
};
8891 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetLength",_kwnames
,&_argo0
,&_arg1
))
8894 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8895 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8896 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetLength. Expected _wxStyledTextEvent_p.");
8901 wxPy_BEGIN_ALLOW_THREADS
;
8902 wxStyledTextEvent_SetLength(_arg0
,_arg1
);
8904 wxPy_END_ALLOW_THREADS
;
8905 } Py_INCREF(Py_None
);
8906 _resultobj
= Py_None
;
8910 #define wxStyledTextEvent_SetLinesAdded(_swigobj,_swigarg0) (_swigobj->SetLinesAdded(_swigarg0))
8911 static PyObject
*_wrap_wxStyledTextEvent_SetLinesAdded(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8912 PyObject
* _resultobj
;
8913 wxStyledTextEvent
* _arg0
;
8915 PyObject
* _argo0
= 0;
8916 char *_kwnames
[] = { "self","num", NULL
};
8919 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetLinesAdded",_kwnames
,&_argo0
,&_arg1
))
8922 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8923 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8924 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetLinesAdded. Expected _wxStyledTextEvent_p.");
8929 wxPy_BEGIN_ALLOW_THREADS
;
8930 wxStyledTextEvent_SetLinesAdded(_arg0
,_arg1
);
8932 wxPy_END_ALLOW_THREADS
;
8933 } Py_INCREF(Py_None
);
8934 _resultobj
= Py_None
;
8938 #define wxStyledTextEvent_SetLine(_swigobj,_swigarg0) (_swigobj->SetLine(_swigarg0))
8939 static PyObject
*_wrap_wxStyledTextEvent_SetLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8940 PyObject
* _resultobj
;
8941 wxStyledTextEvent
* _arg0
;
8943 PyObject
* _argo0
= 0;
8944 char *_kwnames
[] = { "self","val", NULL
};
8947 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetLine",_kwnames
,&_argo0
,&_arg1
))
8950 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8951 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8952 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetLine. Expected _wxStyledTextEvent_p.");
8957 wxPy_BEGIN_ALLOW_THREADS
;
8958 wxStyledTextEvent_SetLine(_arg0
,_arg1
);
8960 wxPy_END_ALLOW_THREADS
;
8961 } Py_INCREF(Py_None
);
8962 _resultobj
= Py_None
;
8966 #define wxStyledTextEvent_SetFoldLevelNow(_swigobj,_swigarg0) (_swigobj->SetFoldLevelNow(_swigarg0))
8967 static PyObject
*_wrap_wxStyledTextEvent_SetFoldLevelNow(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8968 PyObject
* _resultobj
;
8969 wxStyledTextEvent
* _arg0
;
8971 PyObject
* _argo0
= 0;
8972 char *_kwnames
[] = { "self","val", NULL
};
8975 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetFoldLevelNow",_kwnames
,&_argo0
,&_arg1
))
8978 if (_argo0
== Py_None
) { _arg0
= NULL
; }
8979 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
8980 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetFoldLevelNow. Expected _wxStyledTextEvent_p.");
8985 wxPy_BEGIN_ALLOW_THREADS
;
8986 wxStyledTextEvent_SetFoldLevelNow(_arg0
,_arg1
);
8988 wxPy_END_ALLOW_THREADS
;
8989 } Py_INCREF(Py_None
);
8990 _resultobj
= Py_None
;
8994 #define wxStyledTextEvent_SetFoldLevelPrev(_swigobj,_swigarg0) (_swigobj->SetFoldLevelPrev(_swigarg0))
8995 static PyObject
*_wrap_wxStyledTextEvent_SetFoldLevelPrev(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
8996 PyObject
* _resultobj
;
8997 wxStyledTextEvent
* _arg0
;
8999 PyObject
* _argo0
= 0;
9000 char *_kwnames
[] = { "self","val", NULL
};
9003 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetFoldLevelPrev",_kwnames
,&_argo0
,&_arg1
))
9006 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9007 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9008 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetFoldLevelPrev. Expected _wxStyledTextEvent_p.");
9013 wxPy_BEGIN_ALLOW_THREADS
;
9014 wxStyledTextEvent_SetFoldLevelPrev(_arg0
,_arg1
);
9016 wxPy_END_ALLOW_THREADS
;
9017 } Py_INCREF(Py_None
);
9018 _resultobj
= Py_None
;
9022 #define wxStyledTextEvent_SetMargin(_swigobj,_swigarg0) (_swigobj->SetMargin(_swigarg0))
9023 static PyObject
*_wrap_wxStyledTextEvent_SetMargin(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9024 PyObject
* _resultobj
;
9025 wxStyledTextEvent
* _arg0
;
9027 PyObject
* _argo0
= 0;
9028 char *_kwnames
[] = { "self","val", NULL
};
9031 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetMargin",_kwnames
,&_argo0
,&_arg1
))
9034 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9035 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9036 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetMargin. Expected _wxStyledTextEvent_p.");
9041 wxPy_BEGIN_ALLOW_THREADS
;
9042 wxStyledTextEvent_SetMargin(_arg0
,_arg1
);
9044 wxPy_END_ALLOW_THREADS
;
9045 } Py_INCREF(Py_None
);
9046 _resultobj
= Py_None
;
9050 #define wxStyledTextEvent_SetMessage(_swigobj,_swigarg0) (_swigobj->SetMessage(_swigarg0))
9051 static PyObject
*_wrap_wxStyledTextEvent_SetMessage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9052 PyObject
* _resultobj
;
9053 wxStyledTextEvent
* _arg0
;
9055 PyObject
* _argo0
= 0;
9056 char *_kwnames
[] = { "self","val", NULL
};
9059 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetMessage",_kwnames
,&_argo0
,&_arg1
))
9062 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9063 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9064 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetMessage. Expected _wxStyledTextEvent_p.");
9069 wxPy_BEGIN_ALLOW_THREADS
;
9070 wxStyledTextEvent_SetMessage(_arg0
,_arg1
);
9072 wxPy_END_ALLOW_THREADS
;
9073 } Py_INCREF(Py_None
);
9074 _resultobj
= Py_None
;
9078 #define wxStyledTextEvent_SetWParam(_swigobj,_swigarg0) (_swigobj->SetWParam(_swigarg0))
9079 static PyObject
*_wrap_wxStyledTextEvent_SetWParam(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9080 PyObject
* _resultobj
;
9081 wxStyledTextEvent
* _arg0
;
9083 PyObject
* _argo0
= 0;
9084 char *_kwnames
[] = { "self","val", NULL
};
9087 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetWParam",_kwnames
,&_argo0
,&_arg1
))
9090 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9091 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9092 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetWParam. Expected _wxStyledTextEvent_p.");
9097 wxPy_BEGIN_ALLOW_THREADS
;
9098 wxStyledTextEvent_SetWParam(_arg0
,_arg1
);
9100 wxPy_END_ALLOW_THREADS
;
9101 } Py_INCREF(Py_None
);
9102 _resultobj
= Py_None
;
9106 #define wxStyledTextEvent_SetLParam(_swigobj,_swigarg0) (_swigobj->SetLParam(_swigarg0))
9107 static PyObject
*_wrap_wxStyledTextEvent_SetLParam(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9108 PyObject
* _resultobj
;
9109 wxStyledTextEvent
* _arg0
;
9111 PyObject
* _argo0
= 0;
9112 char *_kwnames
[] = { "self","val", NULL
};
9115 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetLParam",_kwnames
,&_argo0
,&_arg1
))
9118 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9119 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9120 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetLParam. Expected _wxStyledTextEvent_p.");
9125 wxPy_BEGIN_ALLOW_THREADS
;
9126 wxStyledTextEvent_SetLParam(_arg0
,_arg1
);
9128 wxPy_END_ALLOW_THREADS
;
9129 } Py_INCREF(Py_None
);
9130 _resultobj
= Py_None
;
9134 #define wxStyledTextEvent_SetListType(_swigobj,_swigarg0) (_swigobj->SetListType(_swigarg0))
9135 static PyObject
*_wrap_wxStyledTextEvent_SetListType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9136 PyObject
* _resultobj
;
9137 wxStyledTextEvent
* _arg0
;
9139 PyObject
* _argo0
= 0;
9140 char *_kwnames
[] = { "self","val", NULL
};
9143 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetListType",_kwnames
,&_argo0
,&_arg1
))
9146 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9147 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9148 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetListType. Expected _wxStyledTextEvent_p.");
9153 wxPy_BEGIN_ALLOW_THREADS
;
9154 wxStyledTextEvent_SetListType(_arg0
,_arg1
);
9156 wxPy_END_ALLOW_THREADS
;
9157 } Py_INCREF(Py_None
);
9158 _resultobj
= Py_None
;
9162 #define wxStyledTextEvent_SetX(_swigobj,_swigarg0) (_swigobj->SetX(_swigarg0))
9163 static PyObject
*_wrap_wxStyledTextEvent_SetX(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9164 PyObject
* _resultobj
;
9165 wxStyledTextEvent
* _arg0
;
9167 PyObject
* _argo0
= 0;
9168 char *_kwnames
[] = { "self","val", NULL
};
9171 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetX",_kwnames
,&_argo0
,&_arg1
))
9174 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9175 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9176 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetX. Expected _wxStyledTextEvent_p.");
9181 wxPy_BEGIN_ALLOW_THREADS
;
9182 wxStyledTextEvent_SetX(_arg0
,_arg1
);
9184 wxPy_END_ALLOW_THREADS
;
9185 } Py_INCREF(Py_None
);
9186 _resultobj
= Py_None
;
9190 #define wxStyledTextEvent_SetY(_swigobj,_swigarg0) (_swigobj->SetY(_swigarg0))
9191 static PyObject
*_wrap_wxStyledTextEvent_SetY(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9192 PyObject
* _resultobj
;
9193 wxStyledTextEvent
* _arg0
;
9195 PyObject
* _argo0
= 0;
9196 char *_kwnames
[] = { "self","val", NULL
};
9199 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetY",_kwnames
,&_argo0
,&_arg1
))
9202 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9203 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9204 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetY. Expected _wxStyledTextEvent_p.");
9209 wxPy_BEGIN_ALLOW_THREADS
;
9210 wxStyledTextEvent_SetY(_arg0
,_arg1
);
9212 wxPy_END_ALLOW_THREADS
;
9213 } Py_INCREF(Py_None
);
9214 _resultobj
= Py_None
;
9218 #define wxStyledTextEvent_SetDragText(_swigobj,_swigarg0) (_swigobj->SetDragText(_swigarg0))
9219 static PyObject
*_wrap_wxStyledTextEvent_SetDragText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9220 PyObject
* _resultobj
;
9221 wxStyledTextEvent
* _arg0
;
9223 PyObject
* _argo0
= 0;
9224 PyObject
* _obj1
= 0;
9225 char *_kwnames
[] = { "self","val", NULL
};
9228 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextEvent_SetDragText",_kwnames
,&_argo0
,&_obj1
))
9231 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9232 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9233 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetDragText. Expected _wxStyledTextEvent_p.");
9238 #if PYTHON_API_VERSION >= 1009
9239 char* tmpPtr
; int tmpSize
;
9240 if (!PyString_Check(_obj1
) && !PyUnicode_Check(_obj1
)) {
9241 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
9244 if (PyString_AsStringAndSize(_obj1
, &tmpPtr
, &tmpSize
) == -1)
9246 _arg1
= new wxString(tmpPtr
, tmpSize
);
9248 if (!PyString_Check(_obj1
)) {
9249 PyErr_SetString(PyExc_TypeError
, wxStringErrorMsg
);
9252 _arg1
= new wxString(PyString_AS_STRING(_obj1
), PyString_GET_SIZE(_obj1
));
9256 wxPy_BEGIN_ALLOW_THREADS
;
9257 wxStyledTextEvent_SetDragText(_arg0
,*_arg1
);
9259 wxPy_END_ALLOW_THREADS
;
9260 } Py_INCREF(Py_None
);
9261 _resultobj
= Py_None
;
9269 #define wxStyledTextEvent_SetDragAllowMove(_swigobj,_swigarg0) (_swigobj->SetDragAllowMove(_swigarg0))
9270 static PyObject
*_wrap_wxStyledTextEvent_SetDragAllowMove(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9271 PyObject
* _resultobj
;
9272 wxStyledTextEvent
* _arg0
;
9274 PyObject
* _argo0
= 0;
9276 char *_kwnames
[] = { "self","val", NULL
};
9279 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetDragAllowMove",_kwnames
,&_argo0
,&tempbool1
))
9282 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9283 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9284 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetDragAllowMove. Expected _wxStyledTextEvent_p.");
9288 _arg1
= (bool ) tempbool1
;
9290 wxPy_BEGIN_ALLOW_THREADS
;
9291 wxStyledTextEvent_SetDragAllowMove(_arg0
,_arg1
);
9293 wxPy_END_ALLOW_THREADS
;
9294 } Py_INCREF(Py_None
);
9295 _resultobj
= Py_None
;
9299 #define wxStyledTextEvent_SetDragResult(_swigobj,_swigarg0) (_swigobj->SetDragResult(_swigarg0))
9300 static PyObject
*_wrap_wxStyledTextEvent_SetDragResult(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9301 PyObject
* _resultobj
;
9302 wxStyledTextEvent
* _arg0
;
9304 PyObject
* _argo0
= 0;
9305 char *_kwnames
[] = { "self","val", NULL
};
9308 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"Oi:wxStyledTextEvent_SetDragResult",_kwnames
,&_argo0
,&_arg1
))
9311 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9312 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9313 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_SetDragResult. Expected _wxStyledTextEvent_p.");
9318 wxPy_BEGIN_ALLOW_THREADS
;
9319 wxStyledTextEvent_SetDragResult(_arg0
,_arg1
);
9321 wxPy_END_ALLOW_THREADS
;
9322 } Py_INCREF(Py_None
);
9323 _resultobj
= Py_None
;
9327 #define wxStyledTextEvent_GetPosition(_swigobj) (_swigobj->GetPosition())
9328 static PyObject
*_wrap_wxStyledTextEvent_GetPosition(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9329 PyObject
* _resultobj
;
9331 wxStyledTextEvent
* _arg0
;
9332 PyObject
* _argo0
= 0;
9333 char *_kwnames
[] = { "self", NULL
};
9336 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetPosition",_kwnames
,&_argo0
))
9339 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9340 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9341 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetPosition. Expected _wxStyledTextEvent_p.");
9346 wxPy_BEGIN_ALLOW_THREADS
;
9347 _result
= (int )wxStyledTextEvent_GetPosition(_arg0
);
9349 wxPy_END_ALLOW_THREADS
;
9350 } _resultobj
= Py_BuildValue("i",_result
);
9354 #define wxStyledTextEvent_GetKey(_swigobj) (_swigobj->GetKey())
9355 static PyObject
*_wrap_wxStyledTextEvent_GetKey(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9356 PyObject
* _resultobj
;
9358 wxStyledTextEvent
* _arg0
;
9359 PyObject
* _argo0
= 0;
9360 char *_kwnames
[] = { "self", NULL
};
9363 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetKey",_kwnames
,&_argo0
))
9366 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9367 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9368 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetKey. Expected _wxStyledTextEvent_p.");
9373 wxPy_BEGIN_ALLOW_THREADS
;
9374 _result
= (int )wxStyledTextEvent_GetKey(_arg0
);
9376 wxPy_END_ALLOW_THREADS
;
9377 } _resultobj
= Py_BuildValue("i",_result
);
9381 #define wxStyledTextEvent_GetModifiers(_swigobj) (_swigobj->GetModifiers())
9382 static PyObject
*_wrap_wxStyledTextEvent_GetModifiers(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9383 PyObject
* _resultobj
;
9385 wxStyledTextEvent
* _arg0
;
9386 PyObject
* _argo0
= 0;
9387 char *_kwnames
[] = { "self", NULL
};
9390 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetModifiers",_kwnames
,&_argo0
))
9393 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9394 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9395 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetModifiers. Expected _wxStyledTextEvent_p.");
9400 wxPy_BEGIN_ALLOW_THREADS
;
9401 _result
= (int )wxStyledTextEvent_GetModifiers(_arg0
);
9403 wxPy_END_ALLOW_THREADS
;
9404 } _resultobj
= Py_BuildValue("i",_result
);
9408 #define wxStyledTextEvent_GetModificationType(_swigobj) (_swigobj->GetModificationType())
9409 static PyObject
*_wrap_wxStyledTextEvent_GetModificationType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9410 PyObject
* _resultobj
;
9412 wxStyledTextEvent
* _arg0
;
9413 PyObject
* _argo0
= 0;
9414 char *_kwnames
[] = { "self", NULL
};
9417 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetModificationType",_kwnames
,&_argo0
))
9420 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9421 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9422 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetModificationType. Expected _wxStyledTextEvent_p.");
9427 wxPy_BEGIN_ALLOW_THREADS
;
9428 _result
= (int )wxStyledTextEvent_GetModificationType(_arg0
);
9430 wxPy_END_ALLOW_THREADS
;
9431 } _resultobj
= Py_BuildValue("i",_result
);
9435 #define wxStyledTextEvent_GetText(_swigobj) (_swigobj->GetText())
9436 static PyObject
*_wrap_wxStyledTextEvent_GetText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9437 PyObject
* _resultobj
;
9439 wxStyledTextEvent
* _arg0
;
9440 PyObject
* _argo0
= 0;
9441 char *_kwnames
[] = { "self", NULL
};
9444 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetText",_kwnames
,&_argo0
))
9447 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9448 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9449 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetText. Expected _wxStyledTextEvent_p.");
9454 wxPy_BEGIN_ALLOW_THREADS
;
9455 _result
= new wxString (wxStyledTextEvent_GetText(_arg0
));
9457 wxPy_END_ALLOW_THREADS
;
9459 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
9467 #define wxStyledTextEvent_GetLength(_swigobj) (_swigobj->GetLength())
9468 static PyObject
*_wrap_wxStyledTextEvent_GetLength(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9469 PyObject
* _resultobj
;
9471 wxStyledTextEvent
* _arg0
;
9472 PyObject
* _argo0
= 0;
9473 char *_kwnames
[] = { "self", NULL
};
9476 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetLength",_kwnames
,&_argo0
))
9479 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9480 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9481 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetLength. Expected _wxStyledTextEvent_p.");
9486 wxPy_BEGIN_ALLOW_THREADS
;
9487 _result
= (int )wxStyledTextEvent_GetLength(_arg0
);
9489 wxPy_END_ALLOW_THREADS
;
9490 } _resultobj
= Py_BuildValue("i",_result
);
9494 #define wxStyledTextEvent_GetLinesAdded(_swigobj) (_swigobj->GetLinesAdded())
9495 static PyObject
*_wrap_wxStyledTextEvent_GetLinesAdded(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9496 PyObject
* _resultobj
;
9498 wxStyledTextEvent
* _arg0
;
9499 PyObject
* _argo0
= 0;
9500 char *_kwnames
[] = { "self", NULL
};
9503 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetLinesAdded",_kwnames
,&_argo0
))
9506 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9507 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9508 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetLinesAdded. Expected _wxStyledTextEvent_p.");
9513 wxPy_BEGIN_ALLOW_THREADS
;
9514 _result
= (int )wxStyledTextEvent_GetLinesAdded(_arg0
);
9516 wxPy_END_ALLOW_THREADS
;
9517 } _resultobj
= Py_BuildValue("i",_result
);
9521 #define wxStyledTextEvent_GetLine(_swigobj) (_swigobj->GetLine())
9522 static PyObject
*_wrap_wxStyledTextEvent_GetLine(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9523 PyObject
* _resultobj
;
9525 wxStyledTextEvent
* _arg0
;
9526 PyObject
* _argo0
= 0;
9527 char *_kwnames
[] = { "self", NULL
};
9530 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetLine",_kwnames
,&_argo0
))
9533 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9534 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9535 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetLine. Expected _wxStyledTextEvent_p.");
9540 wxPy_BEGIN_ALLOW_THREADS
;
9541 _result
= (int )wxStyledTextEvent_GetLine(_arg0
);
9543 wxPy_END_ALLOW_THREADS
;
9544 } _resultobj
= Py_BuildValue("i",_result
);
9548 #define wxStyledTextEvent_GetFoldLevelNow(_swigobj) (_swigobj->GetFoldLevelNow())
9549 static PyObject
*_wrap_wxStyledTextEvent_GetFoldLevelNow(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9550 PyObject
* _resultobj
;
9552 wxStyledTextEvent
* _arg0
;
9553 PyObject
* _argo0
= 0;
9554 char *_kwnames
[] = { "self", NULL
};
9557 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetFoldLevelNow",_kwnames
,&_argo0
))
9560 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9561 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9562 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetFoldLevelNow. Expected _wxStyledTextEvent_p.");
9567 wxPy_BEGIN_ALLOW_THREADS
;
9568 _result
= (int )wxStyledTextEvent_GetFoldLevelNow(_arg0
);
9570 wxPy_END_ALLOW_THREADS
;
9571 } _resultobj
= Py_BuildValue("i",_result
);
9575 #define wxStyledTextEvent_GetFoldLevelPrev(_swigobj) (_swigobj->GetFoldLevelPrev())
9576 static PyObject
*_wrap_wxStyledTextEvent_GetFoldLevelPrev(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9577 PyObject
* _resultobj
;
9579 wxStyledTextEvent
* _arg0
;
9580 PyObject
* _argo0
= 0;
9581 char *_kwnames
[] = { "self", NULL
};
9584 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetFoldLevelPrev",_kwnames
,&_argo0
))
9587 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9588 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9589 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetFoldLevelPrev. Expected _wxStyledTextEvent_p.");
9594 wxPy_BEGIN_ALLOW_THREADS
;
9595 _result
= (int )wxStyledTextEvent_GetFoldLevelPrev(_arg0
);
9597 wxPy_END_ALLOW_THREADS
;
9598 } _resultobj
= Py_BuildValue("i",_result
);
9602 #define wxStyledTextEvent_GetMargin(_swigobj) (_swigobj->GetMargin())
9603 static PyObject
*_wrap_wxStyledTextEvent_GetMargin(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9604 PyObject
* _resultobj
;
9606 wxStyledTextEvent
* _arg0
;
9607 PyObject
* _argo0
= 0;
9608 char *_kwnames
[] = { "self", NULL
};
9611 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetMargin",_kwnames
,&_argo0
))
9614 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9615 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9616 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetMargin. Expected _wxStyledTextEvent_p.");
9621 wxPy_BEGIN_ALLOW_THREADS
;
9622 _result
= (int )wxStyledTextEvent_GetMargin(_arg0
);
9624 wxPy_END_ALLOW_THREADS
;
9625 } _resultobj
= Py_BuildValue("i",_result
);
9629 #define wxStyledTextEvent_GetMessage(_swigobj) (_swigobj->GetMessage())
9630 static PyObject
*_wrap_wxStyledTextEvent_GetMessage(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9631 PyObject
* _resultobj
;
9633 wxStyledTextEvent
* _arg0
;
9634 PyObject
* _argo0
= 0;
9635 char *_kwnames
[] = { "self", NULL
};
9638 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetMessage",_kwnames
,&_argo0
))
9641 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9642 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9643 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetMessage. Expected _wxStyledTextEvent_p.");
9648 wxPy_BEGIN_ALLOW_THREADS
;
9649 _result
= (int )wxStyledTextEvent_GetMessage(_arg0
);
9651 wxPy_END_ALLOW_THREADS
;
9652 } _resultobj
= Py_BuildValue("i",_result
);
9656 #define wxStyledTextEvent_GetWParam(_swigobj) (_swigobj->GetWParam())
9657 static PyObject
*_wrap_wxStyledTextEvent_GetWParam(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9658 PyObject
* _resultobj
;
9660 wxStyledTextEvent
* _arg0
;
9661 PyObject
* _argo0
= 0;
9662 char *_kwnames
[] = { "self", NULL
};
9665 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetWParam",_kwnames
,&_argo0
))
9668 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9669 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9670 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetWParam. Expected _wxStyledTextEvent_p.");
9675 wxPy_BEGIN_ALLOW_THREADS
;
9676 _result
= (int )wxStyledTextEvent_GetWParam(_arg0
);
9678 wxPy_END_ALLOW_THREADS
;
9679 } _resultobj
= Py_BuildValue("i",_result
);
9683 #define wxStyledTextEvent_GetLParam(_swigobj) (_swigobj->GetLParam())
9684 static PyObject
*_wrap_wxStyledTextEvent_GetLParam(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9685 PyObject
* _resultobj
;
9687 wxStyledTextEvent
* _arg0
;
9688 PyObject
* _argo0
= 0;
9689 char *_kwnames
[] = { "self", NULL
};
9692 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetLParam",_kwnames
,&_argo0
))
9695 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9696 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9697 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetLParam. Expected _wxStyledTextEvent_p.");
9702 wxPy_BEGIN_ALLOW_THREADS
;
9703 _result
= (int )wxStyledTextEvent_GetLParam(_arg0
);
9705 wxPy_END_ALLOW_THREADS
;
9706 } _resultobj
= Py_BuildValue("i",_result
);
9710 #define wxStyledTextEvent_GetListType(_swigobj) (_swigobj->GetListType())
9711 static PyObject
*_wrap_wxStyledTextEvent_GetListType(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9712 PyObject
* _resultobj
;
9714 wxStyledTextEvent
* _arg0
;
9715 PyObject
* _argo0
= 0;
9716 char *_kwnames
[] = { "self", NULL
};
9719 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetListType",_kwnames
,&_argo0
))
9722 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9723 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9724 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetListType. Expected _wxStyledTextEvent_p.");
9729 wxPy_BEGIN_ALLOW_THREADS
;
9730 _result
= (int )wxStyledTextEvent_GetListType(_arg0
);
9732 wxPy_END_ALLOW_THREADS
;
9733 } _resultobj
= Py_BuildValue("i",_result
);
9737 #define wxStyledTextEvent_GetX(_swigobj) (_swigobj->GetX())
9738 static PyObject
*_wrap_wxStyledTextEvent_GetX(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9739 PyObject
* _resultobj
;
9741 wxStyledTextEvent
* _arg0
;
9742 PyObject
* _argo0
= 0;
9743 char *_kwnames
[] = { "self", NULL
};
9746 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetX",_kwnames
,&_argo0
))
9749 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9750 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9751 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetX. Expected _wxStyledTextEvent_p.");
9756 wxPy_BEGIN_ALLOW_THREADS
;
9757 _result
= (int )wxStyledTextEvent_GetX(_arg0
);
9759 wxPy_END_ALLOW_THREADS
;
9760 } _resultobj
= Py_BuildValue("i",_result
);
9764 #define wxStyledTextEvent_GetY(_swigobj) (_swigobj->GetY())
9765 static PyObject
*_wrap_wxStyledTextEvent_GetY(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9766 PyObject
* _resultobj
;
9768 wxStyledTextEvent
* _arg0
;
9769 PyObject
* _argo0
= 0;
9770 char *_kwnames
[] = { "self", NULL
};
9773 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetY",_kwnames
,&_argo0
))
9776 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9777 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9778 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetY. Expected _wxStyledTextEvent_p.");
9783 wxPy_BEGIN_ALLOW_THREADS
;
9784 _result
= (int )wxStyledTextEvent_GetY(_arg0
);
9786 wxPy_END_ALLOW_THREADS
;
9787 } _resultobj
= Py_BuildValue("i",_result
);
9791 #define wxStyledTextEvent_GetDragText(_swigobj) (_swigobj->GetDragText())
9792 static PyObject
*_wrap_wxStyledTextEvent_GetDragText(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9793 PyObject
* _resultobj
;
9795 wxStyledTextEvent
* _arg0
;
9796 PyObject
* _argo0
= 0;
9797 char *_kwnames
[] = { "self", NULL
};
9800 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetDragText",_kwnames
,&_argo0
))
9803 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9804 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9805 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetDragText. Expected _wxStyledTextEvent_p.");
9810 wxPy_BEGIN_ALLOW_THREADS
;
9811 _result
= new wxString (wxStyledTextEvent_GetDragText(_arg0
));
9813 wxPy_END_ALLOW_THREADS
;
9815 _resultobj
= PyString_FromStringAndSize(_result
->c_str(), _result
->Len());
9823 #define wxStyledTextEvent_GetDragAllowMove(_swigobj) (_swigobj->GetDragAllowMove())
9824 static PyObject
*_wrap_wxStyledTextEvent_GetDragAllowMove(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9825 PyObject
* _resultobj
;
9827 wxStyledTextEvent
* _arg0
;
9828 PyObject
* _argo0
= 0;
9829 char *_kwnames
[] = { "self", NULL
};
9832 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetDragAllowMove",_kwnames
,&_argo0
))
9835 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9836 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9837 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetDragAllowMove. Expected _wxStyledTextEvent_p.");
9842 wxPy_BEGIN_ALLOW_THREADS
;
9843 _result
= (bool )wxStyledTextEvent_GetDragAllowMove(_arg0
);
9845 wxPy_END_ALLOW_THREADS
;
9846 } _resultobj
= Py_BuildValue("i",_result
);
9850 #define wxStyledTextEvent_GetDragResult(_swigobj) (_swigobj->GetDragResult())
9851 static PyObject
*_wrap_wxStyledTextEvent_GetDragResult(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9852 PyObject
* _resultobj
;
9853 wxDragResult _result
;
9854 wxStyledTextEvent
* _arg0
;
9855 PyObject
* _argo0
= 0;
9856 char *_kwnames
[] = { "self", NULL
};
9859 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetDragResult",_kwnames
,&_argo0
))
9862 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9863 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9864 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetDragResult. Expected _wxStyledTextEvent_p.");
9869 wxPy_BEGIN_ALLOW_THREADS
;
9870 _result
= (wxDragResult
)wxStyledTextEvent_GetDragResult(_arg0
);
9872 wxPy_END_ALLOW_THREADS
;
9873 } _resultobj
= Py_BuildValue("i",_result
);
9877 #define wxStyledTextEvent_GetShift(_swigobj) (_swigobj->GetShift())
9878 static PyObject
*_wrap_wxStyledTextEvent_GetShift(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9879 PyObject
* _resultobj
;
9881 wxStyledTextEvent
* _arg0
;
9882 PyObject
* _argo0
= 0;
9883 char *_kwnames
[] = { "self", NULL
};
9886 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetShift",_kwnames
,&_argo0
))
9889 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9890 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9891 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetShift. Expected _wxStyledTextEvent_p.");
9896 wxPy_BEGIN_ALLOW_THREADS
;
9897 _result
= (bool )wxStyledTextEvent_GetShift(_arg0
);
9899 wxPy_END_ALLOW_THREADS
;
9900 } _resultobj
= Py_BuildValue("i",_result
);
9904 #define wxStyledTextEvent_GetControl(_swigobj) (_swigobj->GetControl())
9905 static PyObject
*_wrap_wxStyledTextEvent_GetControl(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9906 PyObject
* _resultobj
;
9908 wxStyledTextEvent
* _arg0
;
9909 PyObject
* _argo0
= 0;
9910 char *_kwnames
[] = { "self", NULL
};
9913 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetControl",_kwnames
,&_argo0
))
9916 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9917 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9918 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetControl. Expected _wxStyledTextEvent_p.");
9923 wxPy_BEGIN_ALLOW_THREADS
;
9924 _result
= (bool )wxStyledTextEvent_GetControl(_arg0
);
9926 wxPy_END_ALLOW_THREADS
;
9927 } _resultobj
= Py_BuildValue("i",_result
);
9931 #define wxStyledTextEvent_GetAlt(_swigobj) (_swigobj->GetAlt())
9932 static PyObject
*_wrap_wxStyledTextEvent_GetAlt(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9933 PyObject
* _resultobj
;
9935 wxStyledTextEvent
* _arg0
;
9936 PyObject
* _argo0
= 0;
9937 char *_kwnames
[] = { "self", NULL
};
9940 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"O:wxStyledTextEvent_GetAlt",_kwnames
,&_argo0
))
9943 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9944 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9945 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_GetAlt. Expected _wxStyledTextEvent_p.");
9950 wxPy_BEGIN_ALLOW_THREADS
;
9951 _result
= (bool )wxStyledTextEvent_GetAlt(_arg0
);
9953 wxPy_END_ALLOW_THREADS
;
9954 } _resultobj
= Py_BuildValue("i",_result
);
9958 #define wxStyledTextEvent_CopyObject(_swigobj,_swigarg0) (_swigobj->CopyObject(_swigarg0))
9959 static PyObject
*_wrap_wxStyledTextEvent_CopyObject(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
) {
9960 PyObject
* _resultobj
;
9961 wxStyledTextEvent
* _arg0
;
9963 PyObject
* _argo0
= 0;
9964 PyObject
* _argo1
= 0;
9965 char *_kwnames
[] = { "self","obj", NULL
};
9968 if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,"OO:wxStyledTextEvent_CopyObject",_kwnames
,&_argo0
,&_argo1
))
9971 if (_argo0
== Py_None
) { _arg0
= NULL
; }
9972 else if (SWIG_GetPtrObj(_argo0
,(void **) &_arg0
,"_wxStyledTextEvent_p")) {
9973 PyErr_SetString(PyExc_TypeError
,"Type error in argument 1 of wxStyledTextEvent_CopyObject. Expected _wxStyledTextEvent_p.");
9978 if (_argo1
== Py_None
) { _arg1
= NULL
; }
9979 else if (SWIG_GetPtrObj(_argo1
,(void **) &_arg1
,"_wxObject_p")) {
9980 PyErr_SetString(PyExc_TypeError
,"Type error in argument 2 of wxStyledTextEvent_CopyObject. Expected _wxObject_p.");
9985 wxPy_BEGIN_ALLOW_THREADS
;
9986 wxStyledTextEvent_CopyObject(_arg0
,*_arg1
);
9988 wxPy_END_ALLOW_THREADS
;
9989 } Py_INCREF(Py_None
);
9990 _resultobj
= Py_None
;
9994 static PyMethodDef stc_cMethods
[] = {
9995 { "wxStyledTextEvent_CopyObject", (PyCFunction
) _wrap_wxStyledTextEvent_CopyObject
, METH_VARARGS
| METH_KEYWORDS
},
9996 { "wxStyledTextEvent_GetAlt", (PyCFunction
) _wrap_wxStyledTextEvent_GetAlt
, METH_VARARGS
| METH_KEYWORDS
},
9997 { "wxStyledTextEvent_GetControl", (PyCFunction
) _wrap_wxStyledTextEvent_GetControl
, METH_VARARGS
| METH_KEYWORDS
},
9998 { "wxStyledTextEvent_GetShift", (PyCFunction
) _wrap_wxStyledTextEvent_GetShift
, METH_VARARGS
| METH_KEYWORDS
},
9999 { "wxStyledTextEvent_GetDragResult", (PyCFunction
) _wrap_wxStyledTextEvent_GetDragResult
, METH_VARARGS
| METH_KEYWORDS
},
10000 { "wxStyledTextEvent_GetDragAllowMove", (PyCFunction
) _wrap_wxStyledTextEvent_GetDragAllowMove
, METH_VARARGS
| METH_KEYWORDS
},
10001 { "wxStyledTextEvent_GetDragText", (PyCFunction
) _wrap_wxStyledTextEvent_GetDragText
, METH_VARARGS
| METH_KEYWORDS
},
10002 { "wxStyledTextEvent_GetY", (PyCFunction
) _wrap_wxStyledTextEvent_GetY
, METH_VARARGS
| METH_KEYWORDS
},
10003 { "wxStyledTextEvent_GetX", (PyCFunction
) _wrap_wxStyledTextEvent_GetX
, METH_VARARGS
| METH_KEYWORDS
},
10004 { "wxStyledTextEvent_GetListType", (PyCFunction
) _wrap_wxStyledTextEvent_GetListType
, METH_VARARGS
| METH_KEYWORDS
},
10005 { "wxStyledTextEvent_GetLParam", (PyCFunction
) _wrap_wxStyledTextEvent_GetLParam
, METH_VARARGS
| METH_KEYWORDS
},
10006 { "wxStyledTextEvent_GetWParam", (PyCFunction
) _wrap_wxStyledTextEvent_GetWParam
, METH_VARARGS
| METH_KEYWORDS
},
10007 { "wxStyledTextEvent_GetMessage", (PyCFunction
) _wrap_wxStyledTextEvent_GetMessage
, METH_VARARGS
| METH_KEYWORDS
},
10008 { "wxStyledTextEvent_GetMargin", (PyCFunction
) _wrap_wxStyledTextEvent_GetMargin
, METH_VARARGS
| METH_KEYWORDS
},
10009 { "wxStyledTextEvent_GetFoldLevelPrev", (PyCFunction
) _wrap_wxStyledTextEvent_GetFoldLevelPrev
, METH_VARARGS
| METH_KEYWORDS
},
10010 { "wxStyledTextEvent_GetFoldLevelNow", (PyCFunction
) _wrap_wxStyledTextEvent_GetFoldLevelNow
, METH_VARARGS
| METH_KEYWORDS
},
10011 { "wxStyledTextEvent_GetLine", (PyCFunction
) _wrap_wxStyledTextEvent_GetLine
, METH_VARARGS
| METH_KEYWORDS
},
10012 { "wxStyledTextEvent_GetLinesAdded", (PyCFunction
) _wrap_wxStyledTextEvent_GetLinesAdded
, METH_VARARGS
| METH_KEYWORDS
},
10013 { "wxStyledTextEvent_GetLength", (PyCFunction
) _wrap_wxStyledTextEvent_GetLength
, METH_VARARGS
| METH_KEYWORDS
},
10014 { "wxStyledTextEvent_GetText", (PyCFunction
) _wrap_wxStyledTextEvent_GetText
, METH_VARARGS
| METH_KEYWORDS
},
10015 { "wxStyledTextEvent_GetModificationType", (PyCFunction
) _wrap_wxStyledTextEvent_GetModificationType
, METH_VARARGS
| METH_KEYWORDS
},
10016 { "wxStyledTextEvent_GetModifiers", (PyCFunction
) _wrap_wxStyledTextEvent_GetModifiers
, METH_VARARGS
| METH_KEYWORDS
},
10017 { "wxStyledTextEvent_GetKey", (PyCFunction
) _wrap_wxStyledTextEvent_GetKey
, METH_VARARGS
| METH_KEYWORDS
},
10018 { "wxStyledTextEvent_GetPosition", (PyCFunction
) _wrap_wxStyledTextEvent_GetPosition
, METH_VARARGS
| METH_KEYWORDS
},
10019 { "wxStyledTextEvent_SetDragResult", (PyCFunction
) _wrap_wxStyledTextEvent_SetDragResult
, METH_VARARGS
| METH_KEYWORDS
},
10020 { "wxStyledTextEvent_SetDragAllowMove", (PyCFunction
) _wrap_wxStyledTextEvent_SetDragAllowMove
, METH_VARARGS
| METH_KEYWORDS
},
10021 { "wxStyledTextEvent_SetDragText", (PyCFunction
) _wrap_wxStyledTextEvent_SetDragText
, METH_VARARGS
| METH_KEYWORDS
},
10022 { "wxStyledTextEvent_SetY", (PyCFunction
) _wrap_wxStyledTextEvent_SetY
, METH_VARARGS
| METH_KEYWORDS
},
10023 { "wxStyledTextEvent_SetX", (PyCFunction
) _wrap_wxStyledTextEvent_SetX
, METH_VARARGS
| METH_KEYWORDS
},
10024 { "wxStyledTextEvent_SetListType", (PyCFunction
) _wrap_wxStyledTextEvent_SetListType
, METH_VARARGS
| METH_KEYWORDS
},
10025 { "wxStyledTextEvent_SetLParam", (PyCFunction
) _wrap_wxStyledTextEvent_SetLParam
, METH_VARARGS
| METH_KEYWORDS
},
10026 { "wxStyledTextEvent_SetWParam", (PyCFunction
) _wrap_wxStyledTextEvent_SetWParam
, METH_VARARGS
| METH_KEYWORDS
},
10027 { "wxStyledTextEvent_SetMessage", (PyCFunction
) _wrap_wxStyledTextEvent_SetMessage
, METH_VARARGS
| METH_KEYWORDS
},
10028 { "wxStyledTextEvent_SetMargin", (PyCFunction
) _wrap_wxStyledTextEvent_SetMargin
, METH_VARARGS
| METH_KEYWORDS
},
10029 { "wxStyledTextEvent_SetFoldLevelPrev", (PyCFunction
) _wrap_wxStyledTextEvent_SetFoldLevelPrev
, METH_VARARGS
| METH_KEYWORDS
},
10030 { "wxStyledTextEvent_SetFoldLevelNow", (PyCFunction
) _wrap_wxStyledTextEvent_SetFoldLevelNow
, METH_VARARGS
| METH_KEYWORDS
},
10031 { "wxStyledTextEvent_SetLine", (PyCFunction
) _wrap_wxStyledTextEvent_SetLine
, METH_VARARGS
| METH_KEYWORDS
},
10032 { "wxStyledTextEvent_SetLinesAdded", (PyCFunction
) _wrap_wxStyledTextEvent_SetLinesAdded
, METH_VARARGS
| METH_KEYWORDS
},
10033 { "wxStyledTextEvent_SetLength", (PyCFunction
) _wrap_wxStyledTextEvent_SetLength
, METH_VARARGS
| METH_KEYWORDS
},
10034 { "wxStyledTextEvent_SetText", (PyCFunction
) _wrap_wxStyledTextEvent_SetText
, METH_VARARGS
| METH_KEYWORDS
},
10035 { "wxStyledTextEvent_SetModificationType", (PyCFunction
) _wrap_wxStyledTextEvent_SetModificationType
, METH_VARARGS
| METH_KEYWORDS
},
10036 { "wxStyledTextEvent_SetModifiers", (PyCFunction
) _wrap_wxStyledTextEvent_SetModifiers
, METH_VARARGS
| METH_KEYWORDS
},
10037 { "wxStyledTextEvent_SetKey", (PyCFunction
) _wrap_wxStyledTextEvent_SetKey
, METH_VARARGS
| METH_KEYWORDS
},
10038 { "wxStyledTextEvent_SetPosition", (PyCFunction
) _wrap_wxStyledTextEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
},
10039 { "delete_wxStyledTextEvent", (PyCFunction
) _wrap_delete_wxStyledTextEvent
, METH_VARARGS
| METH_KEYWORDS
},
10040 { "new_wxStyledTextEvent", (PyCFunction
) _wrap_new_wxStyledTextEvent
, METH_VARARGS
| METH_KEYWORDS
},
10041 { "wxStyledTextCtrl_SendMsg", (PyCFunction
) _wrap_wxStyledTextCtrl_SendMsg
, METH_VARARGS
| METH_KEYWORDS
},
10042 { "wxStyledTextCtrl_ScrollToColumn", (PyCFunction
) _wrap_wxStyledTextCtrl_ScrollToColumn
, METH_VARARGS
| METH_KEYWORDS
},
10043 { "wxStyledTextCtrl_ScrollToLine", (PyCFunction
) _wrap_wxStyledTextCtrl_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
},
10044 { "wxStyledTextCtrl_PointFromPosition", (PyCFunction
) _wrap_wxStyledTextCtrl_PointFromPosition
, METH_VARARGS
| METH_KEYWORDS
},
10045 { "wxStyledTextCtrl_GetSelection", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSelection
, METH_VARARGS
| METH_KEYWORDS
},
10046 { "wxStyledTextCtrl_SetMargins", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMargins
, METH_VARARGS
| METH_KEYWORDS
},
10047 { "wxStyledTextCtrl_CmdKeyExecute", (PyCFunction
) _wrap_wxStyledTextCtrl_CmdKeyExecute
, METH_VARARGS
| METH_KEYWORDS
},
10048 { "wxStyledTextCtrl_StyleSetFontAttr", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetFontAttr
, METH_VARARGS
| METH_KEYWORDS
},
10049 { "wxStyledTextCtrl_StyleSetFont", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetFont
, METH_VARARGS
| METH_KEYWORDS
},
10050 { "wxStyledTextCtrl_StyleSetSpec", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetSpec
, METH_VARARGS
| METH_KEYWORDS
},
10051 { "wxStyledTextCtrl_GetCurrentLine", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCurrentLine
, METH_VARARGS
| METH_KEYWORDS
},
10052 { "wxStyledTextCtrl_SetLexerLanguage", (PyCFunction
) _wrap_wxStyledTextCtrl_SetLexerLanguage
, METH_VARARGS
| METH_KEYWORDS
},
10053 { "wxStyledTextCtrl_SetKeyWords", (PyCFunction
) _wrap_wxStyledTextCtrl_SetKeyWords
, METH_VARARGS
| METH_KEYWORDS
},
10054 { "wxStyledTextCtrl_SetProperty", (PyCFunction
) _wrap_wxStyledTextCtrl_SetProperty
, METH_VARARGS
| METH_KEYWORDS
},
10055 { "wxStyledTextCtrl_Colourise", (PyCFunction
) _wrap_wxStyledTextCtrl_Colourise
, METH_VARARGS
| METH_KEYWORDS
},
10056 { "wxStyledTextCtrl_GetLexer", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLexer
, METH_VARARGS
| METH_KEYWORDS
},
10057 { "wxStyledTextCtrl_SetLexer", (PyCFunction
) _wrap_wxStyledTextCtrl_SetLexer
, METH_VARARGS
| METH_KEYWORDS
},
10058 { "wxStyledTextCtrl_StopRecord", (PyCFunction
) _wrap_wxStyledTextCtrl_StopRecord
, METH_VARARGS
| METH_KEYWORDS
},
10059 { "wxStyledTextCtrl_StartRecord", (PyCFunction
) _wrap_wxStyledTextCtrl_StartRecord
, METH_VARARGS
| METH_KEYWORDS
},
10060 { "wxStyledTextCtrl_DelLineRight", (PyCFunction
) _wrap_wxStyledTextCtrl_DelLineRight
, METH_VARARGS
| METH_KEYWORDS
},
10061 { "wxStyledTextCtrl_DelLineLeft", (PyCFunction
) _wrap_wxStyledTextCtrl_DelLineLeft
, METH_VARARGS
| METH_KEYWORDS
},
10062 { "wxStyledTextCtrl_SetVisiblePolicy", (PyCFunction
) _wrap_wxStyledTextCtrl_SetVisiblePolicy
, METH_VARARGS
| METH_KEYWORDS
},
10063 { "wxStyledTextCtrl_WordPartRightExtend", (PyCFunction
) _wrap_wxStyledTextCtrl_WordPartRightExtend
, METH_VARARGS
| METH_KEYWORDS
},
10064 { "wxStyledTextCtrl_WordPartRight", (PyCFunction
) _wrap_wxStyledTextCtrl_WordPartRight
, METH_VARARGS
| METH_KEYWORDS
},
10065 { "wxStyledTextCtrl_WordPartLeftExtend", (PyCFunction
) _wrap_wxStyledTextCtrl_WordPartLeftExtend
, METH_VARARGS
| METH_KEYWORDS
},
10066 { "wxStyledTextCtrl_WordPartLeft", (PyCFunction
) _wrap_wxStyledTextCtrl_WordPartLeft
, METH_VARARGS
| METH_KEYWORDS
},
10067 { "wxStyledTextCtrl_GetCursor", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCursor
, METH_VARARGS
| METH_KEYWORDS
},
10068 { "wxStyledTextCtrl_SetCursor", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCursor
, METH_VARARGS
| METH_KEYWORDS
},
10069 { "wxStyledTextCtrl_GetMouseDownCaptures", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMouseDownCaptures
, METH_VARARGS
| METH_KEYWORDS
},
10070 { "wxStyledTextCtrl_SetMouseDownCaptures", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMouseDownCaptures
, METH_VARARGS
| METH_KEYWORDS
},
10071 { "wxStyledTextCtrl_GetStatus", (PyCFunction
) _wrap_wxStyledTextCtrl_GetStatus
, METH_VARARGS
| METH_KEYWORDS
},
10072 { "wxStyledTextCtrl_SetStatus", (PyCFunction
) _wrap_wxStyledTextCtrl_SetStatus
, METH_VARARGS
| METH_KEYWORDS
},
10073 { "wxStyledTextCtrl_GetSTCFocus", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSTCFocus
, METH_VARARGS
| METH_KEYWORDS
},
10074 { "wxStyledTextCtrl_SetSTCFocus", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSTCFocus
, METH_VARARGS
| METH_KEYWORDS
},
10075 { "wxStyledTextCtrl_GetModEventMask", (PyCFunction
) _wrap_wxStyledTextCtrl_GetModEventMask
, METH_VARARGS
| METH_KEYWORDS
},
10076 { "wxStyledTextCtrl_ReleaseDocument", (PyCFunction
) _wrap_wxStyledTextCtrl_ReleaseDocument
, METH_VARARGS
| METH_KEYWORDS
},
10077 { "wxStyledTextCtrl_AddRefDocument", (PyCFunction
) _wrap_wxStyledTextCtrl_AddRefDocument
, METH_VARARGS
| METH_KEYWORDS
},
10078 { "wxStyledTextCtrl_CreateDocument", (PyCFunction
) _wrap_wxStyledTextCtrl_CreateDocument
, METH_VARARGS
| METH_KEYWORDS
},
10079 { "wxStyledTextCtrl_GetZoom", (PyCFunction
) _wrap_wxStyledTextCtrl_GetZoom
, METH_VARARGS
| METH_KEYWORDS
},
10080 { "wxStyledTextCtrl_SetZoom", (PyCFunction
) _wrap_wxStyledTextCtrl_SetZoom
, METH_VARARGS
| METH_KEYWORDS
},
10081 { "wxStyledTextCtrl_SelectionIsRectangle", (PyCFunction
) _wrap_wxStyledTextCtrl_SelectionIsRectangle
, METH_VARARGS
| METH_KEYWORDS
},
10082 { "wxStyledTextCtrl_UsePopUp", (PyCFunction
) _wrap_wxStyledTextCtrl_UsePopUp
, METH_VARARGS
| METH_KEYWORDS
},
10083 { "wxStyledTextCtrl_LinesOnScreen", (PyCFunction
) _wrap_wxStyledTextCtrl_LinesOnScreen
, METH_VARARGS
| METH_KEYWORDS
},
10084 { "wxStyledTextCtrl_SetCaretPolicy", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
},
10085 { "wxStyledTextCtrl_SearchPrev", (PyCFunction
) _wrap_wxStyledTextCtrl_SearchPrev
, METH_VARARGS
| METH_KEYWORDS
},
10086 { "wxStyledTextCtrl_SearchNext", (PyCFunction
) _wrap_wxStyledTextCtrl_SearchNext
, METH_VARARGS
| METH_KEYWORDS
},
10087 { "wxStyledTextCtrl_SearchAnchor", (PyCFunction
) _wrap_wxStyledTextCtrl_SearchAnchor
, METH_VARARGS
| METH_KEYWORDS
},
10088 { "wxStyledTextCtrl_SetEdgeColour", (PyCFunction
) _wrap_wxStyledTextCtrl_SetEdgeColour
, METH_VARARGS
| METH_KEYWORDS
},
10089 { "wxStyledTextCtrl_GetEdgeColour", (PyCFunction
) _wrap_wxStyledTextCtrl_GetEdgeColour
, METH_VARARGS
| METH_KEYWORDS
},
10090 { "wxStyledTextCtrl_SetEdgeMode", (PyCFunction
) _wrap_wxStyledTextCtrl_SetEdgeMode
, METH_VARARGS
| METH_KEYWORDS
},
10091 { "wxStyledTextCtrl_GetEdgeMode", (PyCFunction
) _wrap_wxStyledTextCtrl_GetEdgeMode
, METH_VARARGS
| METH_KEYWORDS
},
10092 { "wxStyledTextCtrl_SetEdgeColumn", (PyCFunction
) _wrap_wxStyledTextCtrl_SetEdgeColumn
, METH_VARARGS
| METH_KEYWORDS
},
10093 { "wxStyledTextCtrl_GetEdgeColumn", (PyCFunction
) _wrap_wxStyledTextCtrl_GetEdgeColumn
, METH_VARARGS
| METH_KEYWORDS
},
10094 { "wxStyledTextCtrl_SetModEventMask", (PyCFunction
) _wrap_wxStyledTextCtrl_SetModEventMask
, METH_VARARGS
| METH_KEYWORDS
},
10095 { "wxStyledTextCtrl_SetDocPointer", (PyCFunction
) _wrap_wxStyledTextCtrl_SetDocPointer
, METH_VARARGS
| METH_KEYWORDS
},
10096 { "wxStyledTextCtrl_GetDocPointer", (PyCFunction
) _wrap_wxStyledTextCtrl_GetDocPointer
, METH_VARARGS
| METH_KEYWORDS
},
10097 { "wxStyledTextCtrl_SetViewEOL", (PyCFunction
) _wrap_wxStyledTextCtrl_SetViewEOL
, METH_VARARGS
| METH_KEYWORDS
},
10098 { "wxStyledTextCtrl_GetViewEOL", (PyCFunction
) _wrap_wxStyledTextCtrl_GetViewEOL
, METH_VARARGS
| METH_KEYWORDS
},
10099 { "wxStyledTextCtrl_BraceMatch", (PyCFunction
) _wrap_wxStyledTextCtrl_BraceMatch
, METH_VARARGS
| METH_KEYWORDS
},
10100 { "wxStyledTextCtrl_BraceBadLight", (PyCFunction
) _wrap_wxStyledTextCtrl_BraceBadLight
, METH_VARARGS
| METH_KEYWORDS
},
10101 { "wxStyledTextCtrl_BraceHighlight", (PyCFunction
) _wrap_wxStyledTextCtrl_BraceHighlight
, METH_VARARGS
| METH_KEYWORDS
},
10102 { "wxStyledTextCtrl_LineLength", (PyCFunction
) _wrap_wxStyledTextCtrl_LineLength
, METH_VARARGS
| METH_KEYWORDS
},
10103 { "wxStyledTextCtrl_MoveCaretInsideView", (PyCFunction
) _wrap_wxStyledTextCtrl_MoveCaretInsideView
, METH_VARARGS
| METH_KEYWORDS
},
10104 { "wxStyledTextCtrl_GetMouseDwellTime", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMouseDwellTime
, METH_VARARGS
| METH_KEYWORDS
},
10105 { "wxStyledTextCtrl_SetMouseDwellTime", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMouseDwellTime
, METH_VARARGS
| METH_KEYWORDS
},
10106 { "wxStyledTextCtrl_GetBackSpaceUnIndents", (PyCFunction
) _wrap_wxStyledTextCtrl_GetBackSpaceUnIndents
, METH_VARARGS
| METH_KEYWORDS
},
10107 { "wxStyledTextCtrl_SetBackSpaceUnIndents", (PyCFunction
) _wrap_wxStyledTextCtrl_SetBackSpaceUnIndents
, METH_VARARGS
| METH_KEYWORDS
},
10108 { "wxStyledTextCtrl_GetTabIndents", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTabIndents
, METH_VARARGS
| METH_KEYWORDS
},
10109 { "wxStyledTextCtrl_SetTabIndents", (PyCFunction
) _wrap_wxStyledTextCtrl_SetTabIndents
, METH_VARARGS
| METH_KEYWORDS
},
10110 { "wxStyledTextCtrl_EnsureVisibleEnforcePolicy", (PyCFunction
) _wrap_wxStyledTextCtrl_EnsureVisibleEnforcePolicy
, METH_VARARGS
| METH_KEYWORDS
},
10111 { "wxStyledTextCtrl_SetFoldFlags", (PyCFunction
) _wrap_wxStyledTextCtrl_SetFoldFlags
, METH_VARARGS
| METH_KEYWORDS
},
10112 { "wxStyledTextCtrl_EnsureVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
},
10113 { "wxStyledTextCtrl_ToggleFold", (PyCFunction
) _wrap_wxStyledTextCtrl_ToggleFold
, METH_VARARGS
| METH_KEYWORDS
},
10114 { "wxStyledTextCtrl_GetFoldExpanded", (PyCFunction
) _wrap_wxStyledTextCtrl_GetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
},
10115 { "wxStyledTextCtrl_SetFoldExpanded", (PyCFunction
) _wrap_wxStyledTextCtrl_SetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
},
10116 { "wxStyledTextCtrl_GetLineVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineVisible
, METH_VARARGS
| METH_KEYWORDS
},
10117 { "wxStyledTextCtrl_HideLines", (PyCFunction
) _wrap_wxStyledTextCtrl_HideLines
, METH_VARARGS
| METH_KEYWORDS
},
10118 { "wxStyledTextCtrl_ShowLines", (PyCFunction
) _wrap_wxStyledTextCtrl_ShowLines
, METH_VARARGS
| METH_KEYWORDS
},
10119 { "wxStyledTextCtrl_GetFoldParent", (PyCFunction
) _wrap_wxStyledTextCtrl_GetFoldParent
, METH_VARARGS
| METH_KEYWORDS
},
10120 { "wxStyledTextCtrl_GetLastChild", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
},
10121 { "wxStyledTextCtrl_GetFoldLevel", (PyCFunction
) _wrap_wxStyledTextCtrl_GetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
},
10122 { "wxStyledTextCtrl_SetFoldLevel", (PyCFunction
) _wrap_wxStyledTextCtrl_SetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
},
10123 { "wxStyledTextCtrl_DocLineFromVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_DocLineFromVisible
, METH_VARARGS
| METH_KEYWORDS
},
10124 { "wxStyledTextCtrl_VisibleFromDocLine", (PyCFunction
) _wrap_wxStyledTextCtrl_VisibleFromDocLine
, METH_VARARGS
| METH_KEYWORDS
},
10125 { "wxStyledTextCtrl_CallTipSetBackground", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipSetBackground
, METH_VARARGS
| METH_KEYWORDS
},
10126 { "wxStyledTextCtrl_CallTipSetHighlight", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipSetHighlight
, METH_VARARGS
| METH_KEYWORDS
},
10127 { "wxStyledTextCtrl_CallTipPosAtStart", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipPosAtStart
, METH_VARARGS
| METH_KEYWORDS
},
10128 { "wxStyledTextCtrl_CallTipActive", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipActive
, METH_VARARGS
| METH_KEYWORDS
},
10129 { "wxStyledTextCtrl_CallTipCancel", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipCancel
, METH_VARARGS
| METH_KEYWORDS
},
10130 { "wxStyledTextCtrl_CallTipShow", (PyCFunction
) _wrap_wxStyledTextCtrl_CallTipShow
, METH_VARARGS
| METH_KEYWORDS
},
10131 { "wxStyledTextCtrl_GetSearchFlags", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSearchFlags
, METH_VARARGS
| METH_KEYWORDS
},
10132 { "wxStyledTextCtrl_SetSearchFlags", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSearchFlags
, METH_VARARGS
| METH_KEYWORDS
},
10133 { "wxStyledTextCtrl_SearchInTarget", (PyCFunction
) _wrap_wxStyledTextCtrl_SearchInTarget
, METH_VARARGS
| METH_KEYWORDS
},
10134 { "wxStyledTextCtrl_ReplaceTargetRE", (PyCFunction
) _wrap_wxStyledTextCtrl_ReplaceTargetRE
, METH_VARARGS
| METH_KEYWORDS
},
10135 { "wxStyledTextCtrl_ReplaceTarget", (PyCFunction
) _wrap_wxStyledTextCtrl_ReplaceTarget
, METH_VARARGS
| METH_KEYWORDS
},
10136 { "wxStyledTextCtrl_GetTargetEnd", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTargetEnd
, METH_VARARGS
| METH_KEYWORDS
},
10137 { "wxStyledTextCtrl_SetTargetEnd", (PyCFunction
) _wrap_wxStyledTextCtrl_SetTargetEnd
, METH_VARARGS
| METH_KEYWORDS
},
10138 { "wxStyledTextCtrl_GetTargetStart", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTargetStart
, METH_VARARGS
| METH_KEYWORDS
},
10139 { "wxStyledTextCtrl_SetTargetStart", (PyCFunction
) _wrap_wxStyledTextCtrl_SetTargetStart
, METH_VARARGS
| METH_KEYWORDS
},
10140 { "wxStyledTextCtrl_GetCaretWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCaretWidth
, METH_VARARGS
| METH_KEYWORDS
},
10141 { "wxStyledTextCtrl_SetCaretWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretWidth
, METH_VARARGS
| METH_KEYWORDS
},
10142 { "wxStyledTextCtrl_GetOvertype", (PyCFunction
) _wrap_wxStyledTextCtrl_GetOvertype
, METH_VARARGS
| METH_KEYWORDS
},
10143 { "wxStyledTextCtrl_SetOvertype", (PyCFunction
) _wrap_wxStyledTextCtrl_SetOvertype
, METH_VARARGS
| METH_KEYWORDS
},
10144 { "wxStyledTextCtrl_GetTextLength", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTextLength
, METH_VARARGS
| METH_KEYWORDS
},
10145 { "wxStyledTextCtrl_GetText", (PyCFunction
) _wrap_wxStyledTextCtrl_GetText
, METH_VARARGS
| METH_KEYWORDS
},
10146 { "wxStyledTextCtrl_SetText", (PyCFunction
) _wrap_wxStyledTextCtrl_SetText
, METH_VARARGS
| METH_KEYWORDS
},
10147 { "wxStyledTextCtrl_Clear", (PyCFunction
) _wrap_wxStyledTextCtrl_Clear
, METH_VARARGS
| METH_KEYWORDS
},
10148 { "wxStyledTextCtrl_Paste", (PyCFunction
) _wrap_wxStyledTextCtrl_Paste
, METH_VARARGS
| METH_KEYWORDS
},
10149 { "wxStyledTextCtrl_Copy", (PyCFunction
) _wrap_wxStyledTextCtrl_Copy
, METH_VARARGS
| METH_KEYWORDS
},
10150 { "wxStyledTextCtrl_Cut", (PyCFunction
) _wrap_wxStyledTextCtrl_Cut
, METH_VARARGS
| METH_KEYWORDS
},
10151 { "wxStyledTextCtrl_Undo", (PyCFunction
) _wrap_wxStyledTextCtrl_Undo
, METH_VARARGS
| METH_KEYWORDS
},
10152 { "wxStyledTextCtrl_EmptyUndoBuffer", (PyCFunction
) _wrap_wxStyledTextCtrl_EmptyUndoBuffer
, METH_VARARGS
| METH_KEYWORDS
},
10153 { "wxStyledTextCtrl_CanUndo", (PyCFunction
) _wrap_wxStyledTextCtrl_CanUndo
, METH_VARARGS
| METH_KEYWORDS
},
10154 { "wxStyledTextCtrl_CanPaste", (PyCFunction
) _wrap_wxStyledTextCtrl_CanPaste
, METH_VARARGS
| METH_KEYWORDS
},
10155 { "wxStyledTextCtrl_SetReadOnly", (PyCFunction
) _wrap_wxStyledTextCtrl_SetReadOnly
, METH_VARARGS
| METH_KEYWORDS
},
10156 { "wxStyledTextCtrl_ReplaceSelection", (PyCFunction
) _wrap_wxStyledTextCtrl_ReplaceSelection
, METH_VARARGS
| METH_KEYWORDS
},
10157 { "wxStyledTextCtrl_EnsureCaretVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_EnsureCaretVisible
, METH_VARARGS
| METH_KEYWORDS
},
10158 { "wxStyledTextCtrl_LineScroll", (PyCFunction
) _wrap_wxStyledTextCtrl_LineScroll
, METH_VARARGS
| METH_KEYWORDS
},
10159 { "wxStyledTextCtrl_PositionFromLine", (PyCFunction
) _wrap_wxStyledTextCtrl_PositionFromLine
, METH_VARARGS
| METH_KEYWORDS
},
10160 { "wxStyledTextCtrl_LineFromPosition", (PyCFunction
) _wrap_wxStyledTextCtrl_LineFromPosition
, METH_VARARGS
| METH_KEYWORDS
},
10161 { "wxStyledTextCtrl_HideSelection", (PyCFunction
) _wrap_wxStyledTextCtrl_HideSelection
, METH_VARARGS
| METH_KEYWORDS
},
10162 { "wxStyledTextCtrl_GetTextRange", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTextRange
, METH_VARARGS
| METH_KEYWORDS
},
10163 { "wxStyledTextCtrl_GetSelectedText", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSelectedText
, METH_VARARGS
| METH_KEYWORDS
},
10164 { "wxStyledTextCtrl_SetSelection", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
},
10165 { "wxStyledTextCtrl_GetModify", (PyCFunction
) _wrap_wxStyledTextCtrl_GetModify
, METH_VARARGS
| METH_KEYWORDS
},
10166 { "wxStyledTextCtrl_GetMarginRight", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginRight
, METH_VARARGS
| METH_KEYWORDS
},
10167 { "wxStyledTextCtrl_SetMarginRight", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginRight
, METH_VARARGS
| METH_KEYWORDS
},
10168 { "wxStyledTextCtrl_GetMarginLeft", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginLeft
, METH_VARARGS
| METH_KEYWORDS
},
10169 { "wxStyledTextCtrl_SetMarginLeft", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginLeft
, METH_VARARGS
| METH_KEYWORDS
},
10170 { "wxStyledTextCtrl_GetLineCount", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineCount
, METH_VARARGS
| METH_KEYWORDS
},
10171 { "wxStyledTextCtrl_GetLine", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLine
, METH_VARARGS
| METH_KEYWORDS
},
10172 { "wxStyledTextCtrl_GetFirstVisibleLine", (PyCFunction
) _wrap_wxStyledTextCtrl_GetFirstVisibleLine
, METH_VARARGS
| METH_KEYWORDS
},
10173 { "wxStyledTextCtrl_FormatRange", (PyCFunction
) _wrap_wxStyledTextCtrl_FormatRange
, METH_VARARGS
| METH_KEYWORDS
},
10174 { "wxStyledTextCtrl_FindText", (PyCFunction
) _wrap_wxStyledTextCtrl_FindText
, METH_VARARGS
| METH_KEYWORDS
},
10175 { "wxStyledTextCtrl_GetPrintColourMode", (PyCFunction
) _wrap_wxStyledTextCtrl_GetPrintColourMode
, METH_VARARGS
| METH_KEYWORDS
},
10176 { "wxStyledTextCtrl_SetPrintColourMode", (PyCFunction
) _wrap_wxStyledTextCtrl_SetPrintColourMode
, METH_VARARGS
| METH_KEYWORDS
},
10177 { "wxStyledTextCtrl_GetPrintMagnification", (PyCFunction
) _wrap_wxStyledTextCtrl_GetPrintMagnification
, METH_VARARGS
| METH_KEYWORDS
},
10178 { "wxStyledTextCtrl_SetPrintMagnification", (PyCFunction
) _wrap_wxStyledTextCtrl_SetPrintMagnification
, METH_VARARGS
| METH_KEYWORDS
},
10179 { "wxStyledTextCtrl_GetSelectionEnd", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSelectionEnd
, METH_VARARGS
| METH_KEYWORDS
},
10180 { "wxStyledTextCtrl_SetSelectionEnd", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSelectionEnd
, METH_VARARGS
| METH_KEYWORDS
},
10181 { "wxStyledTextCtrl_GetSelectionStart", (PyCFunction
) _wrap_wxStyledTextCtrl_GetSelectionStart
, METH_VARARGS
| METH_KEYWORDS
},
10182 { "wxStyledTextCtrl_SetSelectionStart", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSelectionStart
, METH_VARARGS
| METH_KEYWORDS
},
10183 { "wxStyledTextCtrl_SetCurrentPos", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCurrentPos
, METH_VARARGS
| METH_KEYWORDS
},
10184 { "wxStyledTextCtrl_GetReadOnly", (PyCFunction
) _wrap_wxStyledTextCtrl_GetReadOnly
, METH_VARARGS
| METH_KEYWORDS
},
10185 { "wxStyledTextCtrl_GetCaretForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCaretForeground
, METH_VARARGS
| METH_KEYWORDS
},
10186 { "wxStyledTextCtrl_GetCodePage", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCodePage
, METH_VARARGS
| METH_KEYWORDS
},
10187 { "wxStyledTextCtrl_GetLineEndPosition", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineEndPosition
, METH_VARARGS
| METH_KEYWORDS
},
10188 { "wxStyledTextCtrl_GetHighlightGuide", (PyCFunction
) _wrap_wxStyledTextCtrl_GetHighlightGuide
, METH_VARARGS
| METH_KEYWORDS
},
10189 { "wxStyledTextCtrl_SetHighlightGuide", (PyCFunction
) _wrap_wxStyledTextCtrl_SetHighlightGuide
, METH_VARARGS
| METH_KEYWORDS
},
10190 { "wxStyledTextCtrl_GetIndentationGuides", (PyCFunction
) _wrap_wxStyledTextCtrl_GetIndentationGuides
, METH_VARARGS
| METH_KEYWORDS
},
10191 { "wxStyledTextCtrl_SetIndentationGuides", (PyCFunction
) _wrap_wxStyledTextCtrl_SetIndentationGuides
, METH_VARARGS
| METH_KEYWORDS
},
10192 { "wxStyledTextCtrl_GetUseHorizontalScrollBar", (PyCFunction
) _wrap_wxStyledTextCtrl_GetUseHorizontalScrollBar
, METH_VARARGS
| METH_KEYWORDS
},
10193 { "wxStyledTextCtrl_SetUseHorizontalScrollBar", (PyCFunction
) _wrap_wxStyledTextCtrl_SetUseHorizontalScrollBar
, METH_VARARGS
| METH_KEYWORDS
},
10194 { "wxStyledTextCtrl_GetColumn", (PyCFunction
) _wrap_wxStyledTextCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
},
10195 { "wxStyledTextCtrl_GetLineIndentPosition", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineIndentPosition
, METH_VARARGS
| METH_KEYWORDS
},
10196 { "wxStyledTextCtrl_GetLineIndentation", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
},
10197 { "wxStyledTextCtrl_SetLineIndentation", (PyCFunction
) _wrap_wxStyledTextCtrl_SetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
},
10198 { "wxStyledTextCtrl_GetUseTabs", (PyCFunction
) _wrap_wxStyledTextCtrl_GetUseTabs
, METH_VARARGS
| METH_KEYWORDS
},
10199 { "wxStyledTextCtrl_SetUseTabs", (PyCFunction
) _wrap_wxStyledTextCtrl_SetUseTabs
, METH_VARARGS
| METH_KEYWORDS
},
10200 { "wxStyledTextCtrl_GetIndent", (PyCFunction
) _wrap_wxStyledTextCtrl_GetIndent
, METH_VARARGS
| METH_KEYWORDS
},
10201 { "wxStyledTextCtrl_SetIndent", (PyCFunction
) _wrap_wxStyledTextCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
},
10202 { "wxStyledTextCtrl_AutoCompGetAutoHide", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompGetAutoHide
, METH_VARARGS
| METH_KEYWORDS
},
10203 { "wxStyledTextCtrl_AutoCompSetAutoHide", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetAutoHide
, METH_VARARGS
| METH_KEYWORDS
},
10204 { "wxStyledTextCtrl_UserListShow", (PyCFunction
) _wrap_wxStyledTextCtrl_UserListShow
, METH_VARARGS
| METH_KEYWORDS
},
10205 { "wxStyledTextCtrl_AutoCompGetIgnoreCase", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompGetIgnoreCase
, METH_VARARGS
| METH_KEYWORDS
},
10206 { "wxStyledTextCtrl_AutoCompSetIgnoreCase", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetIgnoreCase
, METH_VARARGS
| METH_KEYWORDS
},
10207 { "wxStyledTextCtrl_AutoCompGetChooseSingle", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompGetChooseSingle
, METH_VARARGS
| METH_KEYWORDS
},
10208 { "wxStyledTextCtrl_AutoCompSetChooseSingle", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetChooseSingle
, METH_VARARGS
| METH_KEYWORDS
},
10209 { "wxStyledTextCtrl_AutoCompSetFillUps", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetFillUps
, METH_VARARGS
| METH_KEYWORDS
},
10210 { "wxStyledTextCtrl_AutoCompGetCancelAtStart", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompGetCancelAtStart
, METH_VARARGS
| METH_KEYWORDS
},
10211 { "wxStyledTextCtrl_AutoCompSetCancelAtStart", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetCancelAtStart
, METH_VARARGS
| METH_KEYWORDS
},
10212 { "wxStyledTextCtrl_AutoCompSelect", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSelect
, METH_VARARGS
| METH_KEYWORDS
},
10213 { "wxStyledTextCtrl_AutoCompGetSeparator", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompGetSeparator
, METH_VARARGS
| METH_KEYWORDS
},
10214 { "wxStyledTextCtrl_AutoCompSetSeparator", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompSetSeparator
, METH_VARARGS
| METH_KEYWORDS
},
10215 { "wxStyledTextCtrl_AutoCompStops", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompStops
, METH_VARARGS
| METH_KEYWORDS
},
10216 { "wxStyledTextCtrl_AutoCompComplete", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompComplete
, METH_VARARGS
| METH_KEYWORDS
},
10217 { "wxStyledTextCtrl_AutoCompPosStart", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompPosStart
, METH_VARARGS
| METH_KEYWORDS
},
10218 { "wxStyledTextCtrl_AutoCompActive", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompActive
, METH_VARARGS
| METH_KEYWORDS
},
10219 { "wxStyledTextCtrl_AutoCompCancel", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompCancel
, METH_VARARGS
| METH_KEYWORDS
},
10220 { "wxStyledTextCtrl_AutoCompShow", (PyCFunction
) _wrap_wxStyledTextCtrl_AutoCompShow
, METH_VARARGS
| METH_KEYWORDS
},
10221 { "wxStyledTextCtrl_SetCaretLineBack", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretLineBack
, METH_VARARGS
| METH_KEYWORDS
},
10222 { "wxStyledTextCtrl_GetCaretLineBack", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCaretLineBack
, METH_VARARGS
| METH_KEYWORDS
},
10223 { "wxStyledTextCtrl_SetCaretLineVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretLineVisible
, METH_VARARGS
| METH_KEYWORDS
},
10224 { "wxStyledTextCtrl_GetCaretLineVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCaretLineVisible
, METH_VARARGS
| METH_KEYWORDS
},
10225 { "wxStyledTextCtrl_GetMaxLineState", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMaxLineState
, METH_VARARGS
| METH_KEYWORDS
},
10226 { "wxStyledTextCtrl_GetLineState", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLineState
, METH_VARARGS
| METH_KEYWORDS
},
10227 { "wxStyledTextCtrl_SetLineState", (PyCFunction
) _wrap_wxStyledTextCtrl_SetLineState
, METH_VARARGS
| METH_KEYWORDS
},
10228 { "wxStyledTextCtrl_GetStyleBits", (PyCFunction
) _wrap_wxStyledTextCtrl_GetStyleBits
, METH_VARARGS
| METH_KEYWORDS
},
10229 { "wxStyledTextCtrl_SetStyleBits", (PyCFunction
) _wrap_wxStyledTextCtrl_SetStyleBits
, METH_VARARGS
| METH_KEYWORDS
},
10230 { "wxStyledTextCtrl_IndicatorGetForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_IndicatorGetForeground
, METH_VARARGS
| METH_KEYWORDS
},
10231 { "wxStyledTextCtrl_IndicatorSetForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_IndicatorSetForeground
, METH_VARARGS
| METH_KEYWORDS
},
10232 { "wxStyledTextCtrl_IndicatorGetStyle", (PyCFunction
) _wrap_wxStyledTextCtrl_IndicatorGetStyle
, METH_VARARGS
| METH_KEYWORDS
},
10233 { "wxStyledTextCtrl_IndicatorSetStyle", (PyCFunction
) _wrap_wxStyledTextCtrl_IndicatorSetStyle
, METH_VARARGS
| METH_KEYWORDS
},
10234 { "wxStyledTextCtrl_EndUndoAction", (PyCFunction
) _wrap_wxStyledTextCtrl_EndUndoAction
, METH_VARARGS
| METH_KEYWORDS
},
10235 { "wxStyledTextCtrl_BeginUndoAction", (PyCFunction
) _wrap_wxStyledTextCtrl_BeginUndoAction
, METH_VARARGS
| METH_KEYWORDS
},
10236 { "wxStyledTextCtrl_SetWordChars", (PyCFunction
) _wrap_wxStyledTextCtrl_SetWordChars
, METH_VARARGS
| METH_KEYWORDS
},
10237 { "wxStyledTextCtrl_SetCaretPeriod", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretPeriod
, METH_VARARGS
| METH_KEYWORDS
},
10238 { "wxStyledTextCtrl_GetCaretPeriod", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCaretPeriod
, METH_VARARGS
| METH_KEYWORDS
},
10239 { "wxStyledTextCtrl_StyleSetVisible", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetVisible
, METH_VARARGS
| METH_KEYWORDS
},
10240 { "wxStyledTextCtrl_SetStyleBytes", (PyCFunction
) _wrap_wxStyledTextCtrl_SetStyleBytes
, METH_VARARGS
| METH_KEYWORDS
},
10241 { "wxStyledTextCtrl_CmdKeyClearAll", (PyCFunction
) _wrap_wxStyledTextCtrl_CmdKeyClearAll
, METH_VARARGS
| METH_KEYWORDS
},
10242 { "wxStyledTextCtrl_CmdKeyClear", (PyCFunction
) _wrap_wxStyledTextCtrl_CmdKeyClear
, METH_VARARGS
| METH_KEYWORDS
},
10243 { "wxStyledTextCtrl_CmdKeyAssign", (PyCFunction
) _wrap_wxStyledTextCtrl_CmdKeyAssign
, METH_VARARGS
| METH_KEYWORDS
},
10244 { "wxStyledTextCtrl_SetCaretForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCaretForeground
, METH_VARARGS
| METH_KEYWORDS
},
10245 { "wxStyledTextCtrl_SetSelBackground", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSelBackground
, METH_VARARGS
| METH_KEYWORDS
},
10246 { "wxStyledTextCtrl_SetSelForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSelForeground
, METH_VARARGS
| METH_KEYWORDS
},
10247 { "wxStyledTextCtrl_StyleSetCase", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetCase
, METH_VARARGS
| METH_KEYWORDS
},
10248 { "wxStyledTextCtrl_StyleSetUnderline", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetUnderline
, METH_VARARGS
| METH_KEYWORDS
},
10249 { "wxStyledTextCtrl_StyleResetDefault", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleResetDefault
, METH_VARARGS
| METH_KEYWORDS
},
10250 { "wxStyledTextCtrl_StyleSetEOLFilled", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetEOLFilled
, METH_VARARGS
| METH_KEYWORDS
},
10251 { "wxStyledTextCtrl_StyleSetFaceName", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetFaceName
, METH_VARARGS
| METH_KEYWORDS
},
10252 { "wxStyledTextCtrl_StyleSetSize", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetSize
, METH_VARARGS
| METH_KEYWORDS
},
10253 { "wxStyledTextCtrl_StyleSetItalic", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetItalic
, METH_VARARGS
| METH_KEYWORDS
},
10254 { "wxStyledTextCtrl_StyleSetBold", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetBold
, METH_VARARGS
| METH_KEYWORDS
},
10255 { "wxStyledTextCtrl_StyleSetBackground", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetBackground
, METH_VARARGS
| METH_KEYWORDS
},
10256 { "wxStyledTextCtrl_StyleSetForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleSetForeground
, METH_VARARGS
| METH_KEYWORDS
},
10257 { "wxStyledTextCtrl_StyleClearAll", (PyCFunction
) _wrap_wxStyledTextCtrl_StyleClearAll
, METH_VARARGS
| METH_KEYWORDS
},
10258 { "wxStyledTextCtrl_GetMarginSensitive", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
},
10259 { "wxStyledTextCtrl_SetMarginSensitive", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
},
10260 { "wxStyledTextCtrl_GetMarginMask", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginMask
, METH_VARARGS
| METH_KEYWORDS
},
10261 { "wxStyledTextCtrl_SetMarginMask", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginMask
, METH_VARARGS
| METH_KEYWORDS
},
10262 { "wxStyledTextCtrl_GetMarginWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
},
10263 { "wxStyledTextCtrl_SetMarginWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
},
10264 { "wxStyledTextCtrl_GetMarginType", (PyCFunction
) _wrap_wxStyledTextCtrl_GetMarginType
, METH_VARARGS
| METH_KEYWORDS
},
10265 { "wxStyledTextCtrl_SetMarginType", (PyCFunction
) _wrap_wxStyledTextCtrl_SetMarginType
, METH_VARARGS
| METH_KEYWORDS
},
10266 { "wxStyledTextCtrl_MarkerPrevious", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerPrevious
, METH_VARARGS
| METH_KEYWORDS
},
10267 { "wxStyledTextCtrl_MarkerNext", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerNext
, METH_VARARGS
| METH_KEYWORDS
},
10268 { "wxStyledTextCtrl_MarkerGet", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerGet
, METH_VARARGS
| METH_KEYWORDS
},
10269 { "wxStyledTextCtrl_MarkerDeleteAll", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerDeleteAll
, METH_VARARGS
| METH_KEYWORDS
},
10270 { "wxStyledTextCtrl_MarkerDelete", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerDelete
, METH_VARARGS
| METH_KEYWORDS
},
10271 { "wxStyledTextCtrl_MarkerAdd", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerAdd
, METH_VARARGS
| METH_KEYWORDS
},
10272 { "wxStyledTextCtrl_MarkerSetBackground", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerSetBackground
, METH_VARARGS
| METH_KEYWORDS
},
10273 { "wxStyledTextCtrl_MarkerSetForeground", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerSetForeground
, METH_VARARGS
| METH_KEYWORDS
},
10274 { "wxStyledTextCtrl_MarkerDefine", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerDefine
, METH_VARARGS
| METH_KEYWORDS
},
10275 { "wxStyledTextCtrl_SetCodePage", (PyCFunction
) _wrap_wxStyledTextCtrl_SetCodePage
, METH_VARARGS
| METH_KEYWORDS
},
10276 { "wxStyledTextCtrl_GetTabWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_GetTabWidth
, METH_VARARGS
| METH_KEYWORDS
},
10277 { "wxStyledTextCtrl_SetTabWidth", (PyCFunction
) _wrap_wxStyledTextCtrl_SetTabWidth
, METH_VARARGS
| METH_KEYWORDS
},
10278 { "wxStyledTextCtrl_SetBufferedDraw", (PyCFunction
) _wrap_wxStyledTextCtrl_SetBufferedDraw
, METH_VARARGS
| METH_KEYWORDS
},
10279 { "wxStyledTextCtrl_GetBufferedDraw", (PyCFunction
) _wrap_wxStyledTextCtrl_GetBufferedDraw
, METH_VARARGS
| METH_KEYWORDS
},
10280 { "wxStyledTextCtrl_SetStyling", (PyCFunction
) _wrap_wxStyledTextCtrl_SetStyling
, METH_VARARGS
| METH_KEYWORDS
},
10281 { "wxStyledTextCtrl_StartStyling", (PyCFunction
) _wrap_wxStyledTextCtrl_StartStyling
, METH_VARARGS
| METH_KEYWORDS
},
10282 { "wxStyledTextCtrl_SetEOLMode", (PyCFunction
) _wrap_wxStyledTextCtrl_SetEOLMode
, METH_VARARGS
| METH_KEYWORDS
},
10283 { "wxStyledTextCtrl_GetEOLMode", (PyCFunction
) _wrap_wxStyledTextCtrl_GetEOLMode
, METH_VARARGS
| METH_KEYWORDS
},
10284 { "wxStyledTextCtrl_ConvertEOLs", (PyCFunction
) _wrap_wxStyledTextCtrl_ConvertEOLs
, METH_VARARGS
| METH_KEYWORDS
},
10285 { "wxStyledTextCtrl_GetEndStyled", (PyCFunction
) _wrap_wxStyledTextCtrl_GetEndStyled
, METH_VARARGS
| METH_KEYWORDS
},
10286 { "wxStyledTextCtrl_GetCurLine", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCurLine
, METH_VARARGS
| METH_KEYWORDS
},
10287 { "wxStyledTextCtrl_SetAnchor", (PyCFunction
) _wrap_wxStyledTextCtrl_SetAnchor
, METH_VARARGS
| METH_KEYWORDS
},
10288 { "wxStyledTextCtrl_GotoPos", (PyCFunction
) _wrap_wxStyledTextCtrl_GotoPos
, METH_VARARGS
| METH_KEYWORDS
},
10289 { "wxStyledTextCtrl_GotoLine", (PyCFunction
) _wrap_wxStyledTextCtrl_GotoLine
, METH_VARARGS
| METH_KEYWORDS
},
10290 { "wxStyledTextCtrl_PositionFromPointClose", (PyCFunction
) _wrap_wxStyledTextCtrl_PositionFromPointClose
, METH_VARARGS
| METH_KEYWORDS
},
10291 { "wxStyledTextCtrl_PositionFromPoint", (PyCFunction
) _wrap_wxStyledTextCtrl_PositionFromPoint
, METH_VARARGS
| METH_KEYWORDS
},
10292 { "wxStyledTextCtrl_SetViewWhiteSpace", (PyCFunction
) _wrap_wxStyledTextCtrl_SetViewWhiteSpace
, METH_VARARGS
| METH_KEYWORDS
},
10293 { "wxStyledTextCtrl_GetViewWhiteSpace", (PyCFunction
) _wrap_wxStyledTextCtrl_GetViewWhiteSpace
, METH_VARARGS
| METH_KEYWORDS
},
10294 { "wxStyledTextCtrl_GetUndoCollection", (PyCFunction
) _wrap_wxStyledTextCtrl_GetUndoCollection
, METH_VARARGS
| METH_KEYWORDS
},
10295 { "wxStyledTextCtrl_MarkerDeleteHandle", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerDeleteHandle
, METH_VARARGS
| METH_KEYWORDS
},
10296 { "wxStyledTextCtrl_MarkerLineFromHandle", (PyCFunction
) _wrap_wxStyledTextCtrl_MarkerLineFromHandle
, METH_VARARGS
| METH_KEYWORDS
},
10297 { "wxStyledTextCtrl_CanRedo", (PyCFunction
) _wrap_wxStyledTextCtrl_CanRedo
, METH_VARARGS
| METH_KEYWORDS
},
10298 { "wxStyledTextCtrl_GetStyledText", (PyCFunction
) _wrap_wxStyledTextCtrl_GetStyledText
, METH_VARARGS
| METH_KEYWORDS
},
10299 { "wxStyledTextCtrl_SetSavePoint", (PyCFunction
) _wrap_wxStyledTextCtrl_SetSavePoint
, METH_VARARGS
| METH_KEYWORDS
},
10300 { "wxStyledTextCtrl_SelectAll", (PyCFunction
) _wrap_wxStyledTextCtrl_SelectAll
, METH_VARARGS
| METH_KEYWORDS
},
10301 { "wxStyledTextCtrl_SetUndoCollection", (PyCFunction
) _wrap_wxStyledTextCtrl_SetUndoCollection
, METH_VARARGS
| METH_KEYWORDS
},
10302 { "wxStyledTextCtrl_Redo", (PyCFunction
) _wrap_wxStyledTextCtrl_Redo
, METH_VARARGS
| METH_KEYWORDS
},
10303 { "wxStyledTextCtrl_GetStyleAt", (PyCFunction
) _wrap_wxStyledTextCtrl_GetStyleAt
, METH_VARARGS
| METH_KEYWORDS
},
10304 { "wxStyledTextCtrl_GetAnchor", (PyCFunction
) _wrap_wxStyledTextCtrl_GetAnchor
, METH_VARARGS
| METH_KEYWORDS
},
10305 { "wxStyledTextCtrl_GetCurrentPos", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCurrentPos
, METH_VARARGS
| METH_KEYWORDS
},
10306 { "wxStyledTextCtrl_GetCharAt", (PyCFunction
) _wrap_wxStyledTextCtrl_GetCharAt
, METH_VARARGS
| METH_KEYWORDS
},
10307 { "wxStyledTextCtrl_GetLength", (PyCFunction
) _wrap_wxStyledTextCtrl_GetLength
, METH_VARARGS
| METH_KEYWORDS
},
10308 { "wxStyledTextCtrl_ClearDocumentStyle", (PyCFunction
) _wrap_wxStyledTextCtrl_ClearDocumentStyle
, METH_VARARGS
| METH_KEYWORDS
},
10309 { "wxStyledTextCtrl_ClearAll", (PyCFunction
) _wrap_wxStyledTextCtrl_ClearAll
, METH_VARARGS
| METH_KEYWORDS
},
10310 { "wxStyledTextCtrl_InsertText", (PyCFunction
) _wrap_wxStyledTextCtrl_InsertText
, METH_VARARGS
| METH_KEYWORDS
},
10311 { "wxStyledTextCtrl_AddStyledText", (PyCFunction
) _wrap_wxStyledTextCtrl_AddStyledText
, METH_VARARGS
| METH_KEYWORDS
},
10312 { "wxStyledTextCtrl_AddText", (PyCFunction
) _wrap_wxStyledTextCtrl_AddText
, METH_VARARGS
| METH_KEYWORDS
},
10313 { "new_wxStyledTextCtrl", (PyCFunction
) _wrap_new_wxStyledTextCtrl
, METH_VARARGS
| METH_KEYWORDS
},
10320 * This table is used by the pointer type-checker
10322 static struct { char *n1
; char *n2
; void *(*pcnv
)(void *); } _swig_mapping
[] = {
10323 { "_wxEvent","_wxStyledTextEvent",SwigwxStyledTextEventTowxEvent
},
10324 { "_signed_long","_long",0},
10325 { "_wxPrintQuality","_wxCoord",0},
10326 { "_wxPrintQuality","_int",0},
10327 { "_wxPrintQuality","_signed_int",0},
10328 { "_wxPrintQuality","_unsigned_int",0},
10329 { "_wxPrintQuality","_wxWindowID",0},
10330 { "_wxPrintQuality","_uint",0},
10331 { "_wxPrintQuality","_EBool",0},
10332 { "_wxPrintQuality","_size_t",0},
10333 { "_wxPrintQuality","_time_t",0},
10334 { "_byte","_unsigned_char",0},
10335 { "_long","_unsigned_long",0},
10336 { "_long","_signed_long",0},
10337 { "_size_t","_wxCoord",0},
10338 { "_size_t","_wxPrintQuality",0},
10339 { "_size_t","_time_t",0},
10340 { "_size_t","_unsigned_int",0},
10341 { "_size_t","_int",0},
10342 { "_size_t","_wxWindowID",0},
10343 { "_size_t","_uint",0},
10344 { "_uint","_wxCoord",0},
10345 { "_uint","_wxPrintQuality",0},
10346 { "_uint","_time_t",0},
10347 { "_uint","_size_t",0},
10348 { "_uint","_unsigned_int",0},
10349 { "_uint","_int",0},
10350 { "_uint","_wxWindowID",0},
10351 { "_wxChar","_char",0},
10352 { "_wxCommandEvent","_wxStyledTextEvent",SwigwxStyledTextEventTowxCommandEvent
},
10353 { "_char","_wxChar",0},
10354 { "_struct_wxNativeFontInfo","_wxNativeFontInfo",0},
10355 { "_EBool","_wxCoord",0},
10356 { "_EBool","_wxPrintQuality",0},
10357 { "_EBool","_signed_int",0},
10358 { "_EBool","_int",0},
10359 { "_EBool","_wxWindowID",0},
10360 { "_unsigned_long","_long",0},
10361 { "_wxNativeFontInfo","_struct_wxNativeFontInfo",0},
10362 { "_signed_int","_wxCoord",0},
10363 { "_signed_int","_wxPrintQuality",0},
10364 { "_signed_int","_EBool",0},
10365 { "_signed_int","_wxWindowID",0},
10366 { "_signed_int","_int",0},
10367 { "_WXTYPE","_wxDateTime_t",0},
10368 { "_WXTYPE","_short",0},
10369 { "_WXTYPE","_signed_short",0},
10370 { "_WXTYPE","_unsigned_short",0},
10371 { "_unsigned_short","_wxDateTime_t",0},
10372 { "_unsigned_short","_WXTYPE",0},
10373 { "_unsigned_short","_short",0},
10374 { "_wxObject","_wxStyledTextEvent",SwigwxStyledTextEventTowxObject
},
10375 { "_wxObject","_wxStyledTextCtrl",SwigwxStyledTextCtrlTowxObject
},
10376 { "_signed_short","_WXTYPE",0},
10377 { "_signed_short","_short",0},
10378 { "_unsigned_char","_byte",0},
10379 { "_wxControl","_wxStyledTextCtrl",SwigwxStyledTextCtrlTowxControl
},
10380 { "_unsigned_int","_wxCoord",0},
10381 { "_unsigned_int","_wxPrintQuality",0},
10382 { "_unsigned_int","_time_t",0},
10383 { "_unsigned_int","_size_t",0},
10384 { "_unsigned_int","_uint",0},
10385 { "_unsigned_int","_wxWindowID",0},
10386 { "_unsigned_int","_int",0},
10387 { "_short","_wxDateTime_t",0},
10388 { "_short","_WXTYPE",0},
10389 { "_short","_unsigned_short",0},
10390 { "_short","_signed_short",0},
10391 { "_wxWindowID","_wxCoord",0},
10392 { "_wxWindowID","_wxPrintQuality",0},
10393 { "_wxWindowID","_time_t",0},
10394 { "_wxWindowID","_size_t",0},
10395 { "_wxWindowID","_EBool",0},
10396 { "_wxWindowID","_uint",0},
10397 { "_wxWindowID","_int",0},
10398 { "_wxWindowID","_signed_int",0},
10399 { "_wxWindowID","_unsigned_int",0},
10400 { "_int","_wxCoord",0},
10401 { "_int","_wxPrintQuality",0},
10402 { "_int","_time_t",0},
10403 { "_int","_size_t",0},
10404 { "_int","_EBool",0},
10405 { "_int","_uint",0},
10406 { "_int","_wxWindowID",0},
10407 { "_int","_unsigned_int",0},
10408 { "_int","_signed_int",0},
10409 { "_wxDateTime_t","_unsigned_short",0},
10410 { "_wxDateTime_t","_short",0},
10411 { "_wxDateTime_t","_WXTYPE",0},
10412 { "_time_t","_wxCoord",0},
10413 { "_time_t","_wxPrintQuality",0},
10414 { "_time_t","_unsigned_int",0},
10415 { "_time_t","_int",0},
10416 { "_time_t","_wxWindowID",0},
10417 { "_time_t","_uint",0},
10418 { "_time_t","_size_t",0},
10419 { "_wxCoord","_int",0},
10420 { "_wxCoord","_signed_int",0},
10421 { "_wxCoord","_unsigned_int",0},
10422 { "_wxCoord","_wxWindowID",0},
10423 { "_wxCoord","_uint",0},
10424 { "_wxCoord","_EBool",0},
10425 { "_wxCoord","_size_t",0},
10426 { "_wxCoord","_time_t",0},
10427 { "_wxCoord","_wxPrintQuality",0},
10428 { "_wxEvtHandler","_wxStyledTextCtrl",SwigwxStyledTextCtrlTowxEvtHandler
},
10429 { "_wxWindow","_wxStyledTextCtrl",SwigwxStyledTextCtrlTowxWindow
},
10432 static PyObject
*SWIG_globals
;
10436 SWIGEXPORT(void) initstc_c() {
10438 SWIG_globals
= SWIG_newvarlink();
10439 m
= Py_InitModule("stc_c", stc_cMethods
);
10440 d
= PyModule_GetDict(m
);
10441 PyDict_SetItemString(d
,"wxSTC_INVALID_POSITION", PyInt_FromLong((long) -1));
10442 PyDict_SetItemString(d
,"wxSTC_START", PyInt_FromLong((long) 2000));
10443 PyDict_SetItemString(d
,"wxSTC_OPTIONAL_START", PyInt_FromLong((long) 3000));
10444 PyDict_SetItemString(d
,"wxSTC_LEXER_START", PyInt_FromLong((long) 4000));
10445 PyDict_SetItemString(d
,"wxSTC_CMD_REDO", PyInt_FromLong((long) 2011));
10446 PyDict_SetItemString(d
,"wxSTC_CMD_SELECTALL", PyInt_FromLong((long) 2013));
10447 PyDict_SetItemString(d
,"wxSTC_WS_INVISIBLE", PyInt_FromLong((long) 0));
10448 PyDict_SetItemString(d
,"wxSTC_WS_VISIBLEALWAYS", PyInt_FromLong((long) 1));
10449 PyDict_SetItemString(d
,"wxSTC_WS_VISIBLEAFTERINDENT", PyInt_FromLong((long) 2));
10450 PyDict_SetItemString(d
,"wxSTC_EOL_CRLF", PyInt_FromLong((long) 0));
10451 PyDict_SetItemString(d
,"wxSTC_EOL_CR", PyInt_FromLong((long) 1));
10452 PyDict_SetItemString(d
,"wxSTC_EOL_LF", PyInt_FromLong((long) 2));
10453 PyDict_SetItemString(d
,"wxSTC_CP_UTF8", PyInt_FromLong((long) 65001));
10454 PyDict_SetItemString(d
,"wxSTC_MARKER_MAX", PyInt_FromLong((long) 31));
10455 PyDict_SetItemString(d
,"wxSTC_MARK_CIRCLE", PyInt_FromLong((long) 0));
10456 PyDict_SetItemString(d
,"wxSTC_MARK_ROUNDRECT", PyInt_FromLong((long) 1));
10457 PyDict_SetItemString(d
,"wxSTC_MARK_ARROW", PyInt_FromLong((long) 2));
10458 PyDict_SetItemString(d
,"wxSTC_MARK_SMALLRECT", PyInt_FromLong((long) 3));
10459 PyDict_SetItemString(d
,"wxSTC_MARK_SHORTARROW", PyInt_FromLong((long) 4));
10460 PyDict_SetItemString(d
,"wxSTC_MARK_EMPTY", PyInt_FromLong((long) 5));
10461 PyDict_SetItemString(d
,"wxSTC_MARK_ARROWDOWN", PyInt_FromLong((long) 6));
10462 PyDict_SetItemString(d
,"wxSTC_MARK_MINUS", PyInt_FromLong((long) 7));
10463 PyDict_SetItemString(d
,"wxSTC_MARK_PLUS", PyInt_FromLong((long) 8));
10464 PyDict_SetItemString(d
,"wxSTC_MARK_VLINE", PyInt_FromLong((long) 9));
10465 PyDict_SetItemString(d
,"wxSTC_MARK_LCORNER", PyInt_FromLong((long) 10));
10466 PyDict_SetItemString(d
,"wxSTC_MARK_TCORNER", PyInt_FromLong((long) 11));
10467 PyDict_SetItemString(d
,"wxSTC_MARK_BOXPLUS", PyInt_FromLong((long) 12));
10468 PyDict_SetItemString(d
,"wxSTC_MARK_BOXPLUSCONNECTED", PyInt_FromLong((long) 13));
10469 PyDict_SetItemString(d
,"wxSTC_MARK_BOXMINUS", PyInt_FromLong((long) 14));
10470 PyDict_SetItemString(d
,"wxSTC_MARK_BOXMINUSCONNECTED", PyInt_FromLong((long) 15));
10471 PyDict_SetItemString(d
,"wxSTC_MARK_LCORNERCURVE", PyInt_FromLong((long) 16));
10472 PyDict_SetItemString(d
,"wxSTC_MARK_TCORNERCURVE", PyInt_FromLong((long) 17));
10473 PyDict_SetItemString(d
,"wxSTC_MARK_CIRCLEPLUS", PyInt_FromLong((long) 18));
10474 PyDict_SetItemString(d
,"wxSTC_MARK_CIRCLEPLUSCONNECTED", PyInt_FromLong((long) 19));
10475 PyDict_SetItemString(d
,"wxSTC_MARK_CIRCLEMINUS", PyInt_FromLong((long) 20));
10476 PyDict_SetItemString(d
,"wxSTC_MARK_CIRCLEMINUSCONNECTED", PyInt_FromLong((long) 21));
10477 PyDict_SetItemString(d
,"wxSTC_MARK_CHARACTER", PyInt_FromLong((long) 10000));
10478 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDEREND", PyInt_FromLong((long) 25));
10479 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDEROPENMID", PyInt_FromLong((long) 26));
10480 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDERMIDTAIL", PyInt_FromLong((long) 27));
10481 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDERTAIL", PyInt_FromLong((long) 28));
10482 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDERSUB", PyInt_FromLong((long) 29));
10483 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDER", PyInt_FromLong((long) 30));
10484 PyDict_SetItemString(d
,"wxSTC_MARKNUM_FOLDEROPEN", PyInt_FromLong((long) 31));
10485 PyDict_SetItemString(d
,"wxSTC_MARGIN_SYMBOL", PyInt_FromLong((long) 0));
10486 PyDict_SetItemString(d
,"wxSTC_MARGIN_NUMBER", PyInt_FromLong((long) 1));
10487 PyDict_SetItemString(d
,"wxSTC_STYLE_DEFAULT", PyInt_FromLong((long) 32));
10488 PyDict_SetItemString(d
,"wxSTC_STYLE_LINENUMBER", PyInt_FromLong((long) 33));
10489 PyDict_SetItemString(d
,"wxSTC_STYLE_BRACELIGHT", PyInt_FromLong((long) 34));
10490 PyDict_SetItemString(d
,"wxSTC_STYLE_BRACEBAD", PyInt_FromLong((long) 35));
10491 PyDict_SetItemString(d
,"wxSTC_STYLE_CONTROLCHAR", PyInt_FromLong((long) 36));
10492 PyDict_SetItemString(d
,"wxSTC_STYLE_INDENTGUIDE", PyInt_FromLong((long) 37));
10493 PyDict_SetItemString(d
,"wxSTC_STYLE_LASTPREDEFINED", PyInt_FromLong((long) 39));
10494 PyDict_SetItemString(d
,"wxSTC_STYLE_MAX", PyInt_FromLong((long) 127));
10495 PyDict_SetItemString(d
,"wxSTC_CHARSET_ANSI", PyInt_FromLong((long) 0));
10496 PyDict_SetItemString(d
,"wxSTC_CHARSET_DEFAULT", PyInt_FromLong((long) 1));
10497 PyDict_SetItemString(d
,"wxSTC_CHARSET_BALTIC", PyInt_FromLong((long) 186));
10498 PyDict_SetItemString(d
,"wxSTC_CHARSET_CHINESEBIG5", PyInt_FromLong((long) 136));
10499 PyDict_SetItemString(d
,"wxSTC_CHARSET_EASTEUROPE", PyInt_FromLong((long) 238));
10500 PyDict_SetItemString(d
,"wxSTC_CHARSET_GB2312", PyInt_FromLong((long) 134));
10501 PyDict_SetItemString(d
,"wxSTC_CHARSET_GREEK", PyInt_FromLong((long) 161));
10502 PyDict_SetItemString(d
,"wxSTC_CHARSET_HANGUL", PyInt_FromLong((long) 129));
10503 PyDict_SetItemString(d
,"wxSTC_CHARSET_MAC", PyInt_FromLong((long) 77));
10504 PyDict_SetItemString(d
,"wxSTC_CHARSET_OEM", PyInt_FromLong((long) 255));
10505 PyDict_SetItemString(d
,"wxSTC_CHARSET_RUSSIAN", PyInt_FromLong((long) 204));
10506 PyDict_SetItemString(d
,"wxSTC_CHARSET_SHIFTJIS", PyInt_FromLong((long) 128));
10507 PyDict_SetItemString(d
,"wxSTC_CHARSET_SYMBOL", PyInt_FromLong((long) 2));
10508 PyDict_SetItemString(d
,"wxSTC_CHARSET_TURKISH", PyInt_FromLong((long) 162));
10509 PyDict_SetItemString(d
,"wxSTC_CHARSET_JOHAB", PyInt_FromLong((long) 130));
10510 PyDict_SetItemString(d
,"wxSTC_CHARSET_HEBREW", PyInt_FromLong((long) 177));
10511 PyDict_SetItemString(d
,"wxSTC_CHARSET_ARABIC", PyInt_FromLong((long) 178));
10512 PyDict_SetItemString(d
,"wxSTC_CHARSET_VIETNAMESE", PyInt_FromLong((long) 163));
10513 PyDict_SetItemString(d
,"wxSTC_CHARSET_THAI", PyInt_FromLong((long) 222));
10514 PyDict_SetItemString(d
,"wxSTC_CASE_MIXED", PyInt_FromLong((long) 0));
10515 PyDict_SetItemString(d
,"wxSTC_CASE_UPPER", PyInt_FromLong((long) 1));
10516 PyDict_SetItemString(d
,"wxSTC_CASE_LOWER", PyInt_FromLong((long) 2));
10517 PyDict_SetItemString(d
,"wxSTC_INDIC_MAX", PyInt_FromLong((long) 7));
10518 PyDict_SetItemString(d
,"wxSTC_INDIC_PLAIN", PyInt_FromLong((long) 0));
10519 PyDict_SetItemString(d
,"wxSTC_INDIC_SQUIGGLE", PyInt_FromLong((long) 1));
10520 PyDict_SetItemString(d
,"wxSTC_INDIC_TT", PyInt_FromLong((long) 2));
10521 PyDict_SetItemString(d
,"wxSTC_INDIC_DIAGONAL", PyInt_FromLong((long) 3));
10522 PyDict_SetItemString(d
,"wxSTC_INDIC_STRIKE", PyInt_FromLong((long) 4));
10523 PyDict_SetItemString(d
,"wxSTC_INDIC0_MASK", PyInt_FromLong((long) 32));
10524 PyDict_SetItemString(d
,"wxSTC_INDIC1_MASK", PyInt_FromLong((long) 64));
10525 PyDict_SetItemString(d
,"wxSTC_INDIC2_MASK", PyInt_FromLong((long) 128));
10526 PyDict_SetItemString(d
,"wxSTC_INDICS_MASK", PyInt_FromLong((long) 224));
10527 PyDict_SetItemString(d
,"wxSTC_PRINT_NORMAL", PyInt_FromLong((long) 0));
10528 PyDict_SetItemString(d
,"wxSTC_PRINT_INVERTLIGHT", PyInt_FromLong((long) 1));
10529 PyDict_SetItemString(d
,"wxSTC_PRINT_BLACKONWHITE", PyInt_FromLong((long) 2));
10530 PyDict_SetItemString(d
,"wxSTC_PRINT_COLOURONWHITE", PyInt_FromLong((long) 3));
10531 PyDict_SetItemString(d
,"wxSTC_PRINT_COLOURONWHITEDEFAULTBG", PyInt_FromLong((long) 4));
10532 PyDict_SetItemString(d
,"wxSTC_FIND_WHOLEWORD", PyInt_FromLong((long) 2));
10533 PyDict_SetItemString(d
,"wxSTC_FIND_MATCHCASE", PyInt_FromLong((long) 4));
10534 PyDict_SetItemString(d
,"wxSTC_FIND_WORDSTART", PyInt_FromLong((long) 0x00100000));
10535 PyDict_SetItemString(d
,"wxSTC_FIND_REGEXP", PyInt_FromLong((long) 0x00200000));
10536 PyDict_SetItemString(d
,"wxSTC_CMD_UNDO", PyInt_FromLong((long) 2176));
10537 PyDict_SetItemString(d
,"wxSTC_CMD_CUT", PyInt_FromLong((long) 2177));
10538 PyDict_SetItemString(d
,"wxSTC_CMD_COPY", PyInt_FromLong((long) 2178));
10539 PyDict_SetItemString(d
,"wxSTC_CMD_PASTE", PyInt_FromLong((long) 2179));
10540 PyDict_SetItemString(d
,"wxSTC_FOLDLEVELBASE", PyInt_FromLong((long) 0x400));
10541 PyDict_SetItemString(d
,"wxSTC_FOLDLEVELWHITEFLAG", PyInt_FromLong((long) 0x1000));
10542 PyDict_SetItemString(d
,"wxSTC_FOLDLEVELHEADERFLAG", PyInt_FromLong((long) 0x2000));
10543 PyDict_SetItemString(d
,"wxSTC_FOLDLEVELNUMBERMASK", PyInt_FromLong((long) 0x0FFF));
10544 PyDict_SetItemString(d
,"wxSTC_TIME_FOREVER", PyInt_FromLong((long) 10000000));
10545 PyDict_SetItemString(d
,"wxSTC_CMD_LINEDOWN", PyInt_FromLong((long) 2300));
10546 PyDict_SetItemString(d
,"wxSTC_CMD_LINEDOWNEXTEND", PyInt_FromLong((long) 2301));
10547 PyDict_SetItemString(d
,"wxSTC_CMD_LINEUP", PyInt_FromLong((long) 2302));
10548 PyDict_SetItemString(d
,"wxSTC_CMD_LINEUPEXTEND", PyInt_FromLong((long) 2303));
10549 PyDict_SetItemString(d
,"wxSTC_CMD_CHARLEFT", PyInt_FromLong((long) 2304));
10550 PyDict_SetItemString(d
,"wxSTC_CMD_CHARLEFTEXTEND", PyInt_FromLong((long) 2305));
10551 PyDict_SetItemString(d
,"wxSTC_CMD_CHARRIGHT", PyInt_FromLong((long) 2306));
10552 PyDict_SetItemString(d
,"wxSTC_CMD_CHARRIGHTEXTEND", PyInt_FromLong((long) 2307));
10553 PyDict_SetItemString(d
,"wxSTC_CMD_WORDLEFT", PyInt_FromLong((long) 2308));
10554 PyDict_SetItemString(d
,"wxSTC_CMD_WORDLEFTEXTEND", PyInt_FromLong((long) 2309));
10555 PyDict_SetItemString(d
,"wxSTC_CMD_WORDRIGHT", PyInt_FromLong((long) 2310));
10556 PyDict_SetItemString(d
,"wxSTC_CMD_WORDRIGHTEXTEND", PyInt_FromLong((long) 2311));
10557 PyDict_SetItemString(d
,"wxSTC_CMD_HOME", PyInt_FromLong((long) 2312));
10558 PyDict_SetItemString(d
,"wxSTC_CMD_HOMEEXTEND", PyInt_FromLong((long) 2313));
10559 PyDict_SetItemString(d
,"wxSTC_CMD_LINEEND", PyInt_FromLong((long) 2314));
10560 PyDict_SetItemString(d
,"wxSTC_CMD_LINEENDEXTEND", PyInt_FromLong((long) 2315));
10561 PyDict_SetItemString(d
,"wxSTC_CMD_DOCUMENTSTART", PyInt_FromLong((long) 2316));
10562 PyDict_SetItemString(d
,"wxSTC_CMD_DOCUMENTSTARTEXTEND", PyInt_FromLong((long) 2317));
10563 PyDict_SetItemString(d
,"wxSTC_CMD_DOCUMENTEND", PyInt_FromLong((long) 2318));
10564 PyDict_SetItemString(d
,"wxSTC_CMD_DOCUMENTENDEXTEND", PyInt_FromLong((long) 2319));
10565 PyDict_SetItemString(d
,"wxSTC_CMD_PAGEUP", PyInt_FromLong((long) 2320));
10566 PyDict_SetItemString(d
,"wxSTC_CMD_PAGEUPEXTEND", PyInt_FromLong((long) 2321));
10567 PyDict_SetItemString(d
,"wxSTC_CMD_PAGEDOWN", PyInt_FromLong((long) 2322));
10568 PyDict_SetItemString(d
,"wxSTC_CMD_PAGEDOWNEXTEND", PyInt_FromLong((long) 2323));
10569 PyDict_SetItemString(d
,"wxSTC_CMD_EDITTOGGLEOVERTYPE", PyInt_FromLong((long) 2324));
10570 PyDict_SetItemString(d
,"wxSTC_CMD_CANCEL", PyInt_FromLong((long) 2325));
10571 PyDict_SetItemString(d
,"wxSTC_CMD_DELETEBACK", PyInt_FromLong((long) 2326));
10572 PyDict_SetItemString(d
,"wxSTC_CMD_TAB", PyInt_FromLong((long) 2327));
10573 PyDict_SetItemString(d
,"wxSTC_CMD_BACKTAB", PyInt_FromLong((long) 2328));
10574 PyDict_SetItemString(d
,"wxSTC_CMD_NEWLINE", PyInt_FromLong((long) 2329));
10575 PyDict_SetItemString(d
,"wxSTC_CMD_FORMFEED", PyInt_FromLong((long) 2330));
10576 PyDict_SetItemString(d
,"wxSTC_CMD_VCHOME", PyInt_FromLong((long) 2331));
10577 PyDict_SetItemString(d
,"wxSTC_CMD_VCHOMEEXTEND", PyInt_FromLong((long) 2332));
10578 PyDict_SetItemString(d
,"wxSTC_CMD_ZOOMIN", PyInt_FromLong((long) 2333));
10579 PyDict_SetItemString(d
,"wxSTC_CMD_ZOOMOUT", PyInt_FromLong((long) 2334));
10580 PyDict_SetItemString(d
,"wxSTC_CMD_DELWORDLEFT", PyInt_FromLong((long) 2335));
10581 PyDict_SetItemString(d
,"wxSTC_CMD_DELWORDRIGHT", PyInt_FromLong((long) 2336));
10582 PyDict_SetItemString(d
,"wxSTC_CMD_LINECUT", PyInt_FromLong((long) 2337));
10583 PyDict_SetItemString(d
,"wxSTC_CMD_LINEDELETE", PyInt_FromLong((long) 2338));
10584 PyDict_SetItemString(d
,"wxSTC_CMD_LINETRANSPOSE", PyInt_FromLong((long) 2339));
10585 PyDict_SetItemString(d
,"wxSTC_CMD_LOWERCASE", PyInt_FromLong((long) 2340));
10586 PyDict_SetItemString(d
,"wxSTC_CMD_UPPERCASE", PyInt_FromLong((long) 2341));
10587 PyDict_SetItemString(d
,"wxSTC_CMD_LINESCROLLDOWN", PyInt_FromLong((long) 2342));
10588 PyDict_SetItemString(d
,"wxSTC_CMD_LINESCROLLUP", PyInt_FromLong((long) 2343));
10589 PyDict_SetItemString(d
,"wxSTC_EDGE_NONE", PyInt_FromLong((long) 0));
10590 PyDict_SetItemString(d
,"wxSTC_EDGE_LINE", PyInt_FromLong((long) 1));
10591 PyDict_SetItemString(d
,"wxSTC_EDGE_BACKGROUND", PyInt_FromLong((long) 2));
10592 PyDict_SetItemString(d
,"wxSTC_CARET_SLOP", PyInt_FromLong((long) 0x01));
10593 PyDict_SetItemString(d
,"wxSTC_CARET_CENTER", PyInt_FromLong((long) 0x02));
10594 PyDict_SetItemString(d
,"wxSTC_CARET_STRICT", PyInt_FromLong((long) 0x04));
10595 PyDict_SetItemString(d
,"wxSTC_CARET_XEVEN", PyInt_FromLong((long) 0x08));
10596 PyDict_SetItemString(d
,"wxSTC_CARET_XJUMPS", PyInt_FromLong((long) 0x10));
10597 PyDict_SetItemString(d
,"wxSTC_CURSORNORMAL", PyInt_FromLong((long) -1));
10598 PyDict_SetItemString(d
,"wxSTC_CURSORWAIT", PyInt_FromLong((long) 3));
10599 PyDict_SetItemString(d
,"wxSTC_VISIBLE_SLOP", PyInt_FromLong((long) 0x01));
10600 PyDict_SetItemString(d
,"wxSTC_VISIBLE_STRICT", PyInt_FromLong((long) 0x04));
10601 PyDict_SetItemString(d
,"wxSTC_MOD_INSERTTEXT", PyInt_FromLong((long) 0x1));
10602 PyDict_SetItemString(d
,"wxSTC_MOD_DELETETEXT", PyInt_FromLong((long) 0x2));
10603 PyDict_SetItemString(d
,"wxSTC_MOD_CHANGESTYLE", PyInt_FromLong((long) 0x4));
10604 PyDict_SetItemString(d
,"wxSTC_MOD_CHANGEFOLD", PyInt_FromLong((long) 0x8));
10605 PyDict_SetItemString(d
,"wxSTC_PERFORMED_USER", PyInt_FromLong((long) 0x10));
10606 PyDict_SetItemString(d
,"wxSTC_PERFORMED_UNDO", PyInt_FromLong((long) 0x20));
10607 PyDict_SetItemString(d
,"wxSTC_PERFORMED_REDO", PyInt_FromLong((long) 0x40));
10608 PyDict_SetItemString(d
,"wxSTC_LASTSTEPINUNDOREDO", PyInt_FromLong((long) 0x100));
10609 PyDict_SetItemString(d
,"wxSTC_MOD_CHANGEMARKER", PyInt_FromLong((long) 0x200));
10610 PyDict_SetItemString(d
,"wxSTC_MOD_BEFOREINSERT", PyInt_FromLong((long) 0x400));
10611 PyDict_SetItemString(d
,"wxSTC_MOD_BEFOREDELETE", PyInt_FromLong((long) 0x800));
10612 PyDict_SetItemString(d
,"wxSTC_MODEVENTMASKALL", PyInt_FromLong((long) 0xF77));
10613 PyDict_SetItemString(d
,"wxSTC_KEY_DOWN", PyInt_FromLong((long) 300));
10614 PyDict_SetItemString(d
,"wxSTC_KEY_UP", PyInt_FromLong((long) 301));
10615 PyDict_SetItemString(d
,"wxSTC_KEY_LEFT", PyInt_FromLong((long) 302));
10616 PyDict_SetItemString(d
,"wxSTC_KEY_RIGHT", PyInt_FromLong((long) 303));
10617 PyDict_SetItemString(d
,"wxSTC_KEY_HOME", PyInt_FromLong((long) 304));
10618 PyDict_SetItemString(d
,"wxSTC_KEY_END", PyInt_FromLong((long) 305));
10619 PyDict_SetItemString(d
,"wxSTC_KEY_PRIOR", PyInt_FromLong((long) 306));
10620 PyDict_SetItemString(d
,"wxSTC_KEY_NEXT", PyInt_FromLong((long) 307));
10621 PyDict_SetItemString(d
,"wxSTC_KEY_DELETE", PyInt_FromLong((long) 308));
10622 PyDict_SetItemString(d
,"wxSTC_KEY_INSERT", PyInt_FromLong((long) 309));
10623 PyDict_SetItemString(d
,"wxSTC_KEY_ESCAPE", PyInt_FromLong((long) 7));
10624 PyDict_SetItemString(d
,"wxSTC_KEY_BACK", PyInt_FromLong((long) 8));
10625 PyDict_SetItemString(d
,"wxSTC_KEY_TAB", PyInt_FromLong((long) 9));
10626 PyDict_SetItemString(d
,"wxSTC_KEY_RETURN", PyInt_FromLong((long) 13));
10627 PyDict_SetItemString(d
,"wxSTC_KEY_ADD", PyInt_FromLong((long) 310));
10628 PyDict_SetItemString(d
,"wxSTC_KEY_SUBTRACT", PyInt_FromLong((long) 311));
10629 PyDict_SetItemString(d
,"wxSTC_KEY_DIVIDE", PyInt_FromLong((long) 312));
10630 PyDict_SetItemString(d
,"wxSTC_SCMOD_SHIFT", PyInt_FromLong((long) 1));
10631 PyDict_SetItemString(d
,"wxSTC_SCMOD_CTRL", PyInt_FromLong((long) 2));
10632 PyDict_SetItemString(d
,"wxSTC_SCMOD_ALT", PyInt_FromLong((long) 4));
10633 PyDict_SetItemString(d
,"wxSTC_LEX_CONTAINER", PyInt_FromLong((long) 0));
10634 PyDict_SetItemString(d
,"wxSTC_LEX_NULL", PyInt_FromLong((long) 1));
10635 PyDict_SetItemString(d
,"wxSTC_LEX_PYTHON", PyInt_FromLong((long) 2));
10636 PyDict_SetItemString(d
,"wxSTC_LEX_CPP", PyInt_FromLong((long) 3));
10637 PyDict_SetItemString(d
,"wxSTC_LEX_HTML", PyInt_FromLong((long) 4));
10638 PyDict_SetItemString(d
,"wxSTC_LEX_XML", PyInt_FromLong((long) 5));
10639 PyDict_SetItemString(d
,"wxSTC_LEX_PERL", PyInt_FromLong((long) 6));
10640 PyDict_SetItemString(d
,"wxSTC_LEX_SQL", PyInt_FromLong((long) 7));
10641 PyDict_SetItemString(d
,"wxSTC_LEX_VB", PyInt_FromLong((long) 8));
10642 PyDict_SetItemString(d
,"wxSTC_LEX_PROPERTIES", PyInt_FromLong((long) 9));
10643 PyDict_SetItemString(d
,"wxSTC_LEX_ERRORLIST", PyInt_FromLong((long) 10));
10644 PyDict_SetItemString(d
,"wxSTC_LEX_MAKEFILE", PyInt_FromLong((long) 11));
10645 PyDict_SetItemString(d
,"wxSTC_LEX_BATCH", PyInt_FromLong((long) 12));
10646 PyDict_SetItemString(d
,"wxSTC_LEX_XCODE", PyInt_FromLong((long) 13));
10647 PyDict_SetItemString(d
,"wxSTC_LEX_LATEX", PyInt_FromLong((long) 14));
10648 PyDict_SetItemString(d
,"wxSTC_LEX_LUA", PyInt_FromLong((long) 15));
10649 PyDict_SetItemString(d
,"wxSTC_LEX_DIFF", PyInt_FromLong((long) 16));
10650 PyDict_SetItemString(d
,"wxSTC_LEX_CONF", PyInt_FromLong((long) 17));
10651 PyDict_SetItemString(d
,"wxSTC_LEX_PASCAL", PyInt_FromLong((long) 18));
10652 PyDict_SetItemString(d
,"wxSTC_LEX_AVE", PyInt_FromLong((long) 19));
10653 PyDict_SetItemString(d
,"wxSTC_LEX_ADA", PyInt_FromLong((long) 20));
10654 PyDict_SetItemString(d
,"wxSTC_LEX_LISP", PyInt_FromLong((long) 21));
10655 PyDict_SetItemString(d
,"wxSTC_LEX_RUBY", PyInt_FromLong((long) 22));
10656 PyDict_SetItemString(d
,"wxSTC_LEX_EIFFEL", PyInt_FromLong((long) 23));
10657 PyDict_SetItemString(d
,"wxSTC_LEX_EIFFELKW", PyInt_FromLong((long) 24));
10658 PyDict_SetItemString(d
,"wxSTC_LEX_TCL", PyInt_FromLong((long) 25));
10659 PyDict_SetItemString(d
,"wxSTC_LEX_NNCRONTAB", PyInt_FromLong((long) 26));
10660 PyDict_SetItemString(d
,"wxSTC_LEX_AUTOMATIC", PyInt_FromLong((long) 1000));
10661 PyDict_SetItemString(d
,"wxSTC_P_DEFAULT", PyInt_FromLong((long) 0));
10662 PyDict_SetItemString(d
,"wxSTC_P_COMMENTLINE", PyInt_FromLong((long) 1));
10663 PyDict_SetItemString(d
,"wxSTC_P_NUMBER", PyInt_FromLong((long) 2));
10664 PyDict_SetItemString(d
,"wxSTC_P_STRING", PyInt_FromLong((long) 3));
10665 PyDict_SetItemString(d
,"wxSTC_P_CHARACTER", PyInt_FromLong((long) 4));
10666 PyDict_SetItemString(d
,"wxSTC_P_WORD", PyInt_FromLong((long) 5));
10667 PyDict_SetItemString(d
,"wxSTC_P_TRIPLE", PyInt_FromLong((long) 6));
10668 PyDict_SetItemString(d
,"wxSTC_P_TRIPLEDOUBLE", PyInt_FromLong((long) 7));
10669 PyDict_SetItemString(d
,"wxSTC_P_CLASSNAME", PyInt_FromLong((long) 8));
10670 PyDict_SetItemString(d
,"wxSTC_P_DEFNAME", PyInt_FromLong((long) 9));
10671 PyDict_SetItemString(d
,"wxSTC_P_OPERATOR", PyInt_FromLong((long) 10));
10672 PyDict_SetItemString(d
,"wxSTC_P_IDENTIFIER", PyInt_FromLong((long) 11));
10673 PyDict_SetItemString(d
,"wxSTC_P_COMMENTBLOCK", PyInt_FromLong((long) 12));
10674 PyDict_SetItemString(d
,"wxSTC_P_STRINGEOL", PyInt_FromLong((long) 13));
10675 PyDict_SetItemString(d
,"wxSTC_C_DEFAULT", PyInt_FromLong((long) 0));
10676 PyDict_SetItemString(d
,"wxSTC_C_COMMENT", PyInt_FromLong((long) 1));
10677 PyDict_SetItemString(d
,"wxSTC_C_COMMENTLINE", PyInt_FromLong((long) 2));
10678 PyDict_SetItemString(d
,"wxSTC_C_COMMENTDOC", PyInt_FromLong((long) 3));
10679 PyDict_SetItemString(d
,"wxSTC_C_NUMBER", PyInt_FromLong((long) 4));
10680 PyDict_SetItemString(d
,"wxSTC_C_WORD", PyInt_FromLong((long) 5));
10681 PyDict_SetItemString(d
,"wxSTC_C_STRING", PyInt_FromLong((long) 6));
10682 PyDict_SetItemString(d
,"wxSTC_C_CHARACTER", PyInt_FromLong((long) 7));
10683 PyDict_SetItemString(d
,"wxSTC_C_UUID", PyInt_FromLong((long) 8));
10684 PyDict_SetItemString(d
,"wxSTC_C_PREPROCESSOR", PyInt_FromLong((long) 9));
10685 PyDict_SetItemString(d
,"wxSTC_C_OPERATOR", PyInt_FromLong((long) 10));
10686 PyDict_SetItemString(d
,"wxSTC_C_IDENTIFIER", PyInt_FromLong((long) 11));
10687 PyDict_SetItemString(d
,"wxSTC_C_STRINGEOL", PyInt_FromLong((long) 12));
10688 PyDict_SetItemString(d
,"wxSTC_C_VERBATIM", PyInt_FromLong((long) 13));
10689 PyDict_SetItemString(d
,"wxSTC_C_REGEX", PyInt_FromLong((long) 14));
10690 PyDict_SetItemString(d
,"wxSTC_C_COMMENTLINEDOC", PyInt_FromLong((long) 15));
10691 PyDict_SetItemString(d
,"wxSTC_C_WORD2", PyInt_FromLong((long) 16));
10692 PyDict_SetItemString(d
,"wxSTC_C_COMMENTDOCKEYWORD", PyInt_FromLong((long) 17));
10693 PyDict_SetItemString(d
,"wxSTC_C_COMMENTDOCKEYWORDERROR", PyInt_FromLong((long) 18));
10694 PyDict_SetItemString(d
,"wxSTC_H_DEFAULT", PyInt_FromLong((long) 0));
10695 PyDict_SetItemString(d
,"wxSTC_H_TAG", PyInt_FromLong((long) 1));
10696 PyDict_SetItemString(d
,"wxSTC_H_TAGUNKNOWN", PyInt_FromLong((long) 2));
10697 PyDict_SetItemString(d
,"wxSTC_H_ATTRIBUTE", PyInt_FromLong((long) 3));
10698 PyDict_SetItemString(d
,"wxSTC_H_ATTRIBUTEUNKNOWN", PyInt_FromLong((long) 4));
10699 PyDict_SetItemString(d
,"wxSTC_H_NUMBER", PyInt_FromLong((long) 5));
10700 PyDict_SetItemString(d
,"wxSTC_H_DOUBLESTRING", PyInt_FromLong((long) 6));
10701 PyDict_SetItemString(d
,"wxSTC_H_SINGLESTRING", PyInt_FromLong((long) 7));
10702 PyDict_SetItemString(d
,"wxSTC_H_OTHER", PyInt_FromLong((long) 8));
10703 PyDict_SetItemString(d
,"wxSTC_H_COMMENT", PyInt_FromLong((long) 9));
10704 PyDict_SetItemString(d
,"wxSTC_H_ENTITY", PyInt_FromLong((long) 10));
10705 PyDict_SetItemString(d
,"wxSTC_H_TAGEND", PyInt_FromLong((long) 11));
10706 PyDict_SetItemString(d
,"wxSTC_H_XMLSTART", PyInt_FromLong((long) 12));
10707 PyDict_SetItemString(d
,"wxSTC_H_XMLEND", PyInt_FromLong((long) 13));
10708 PyDict_SetItemString(d
,"wxSTC_H_SCRIPT", PyInt_FromLong((long) 14));
10709 PyDict_SetItemString(d
,"wxSTC_H_ASP", PyInt_FromLong((long) 15));
10710 PyDict_SetItemString(d
,"wxSTC_H_ASPAT", PyInt_FromLong((long) 16));
10711 PyDict_SetItemString(d
,"wxSTC_H_CDATA", PyInt_FromLong((long) 17));
10712 PyDict_SetItemString(d
,"wxSTC_H_QUESTION", PyInt_FromLong((long) 18));
10713 PyDict_SetItemString(d
,"wxSTC_H_VALUE", PyInt_FromLong((long) 19));
10714 PyDict_SetItemString(d
,"wxSTC_H_XCCOMMENT", PyInt_FromLong((long) 20));
10715 PyDict_SetItemString(d
,"wxSTC_H_SGML_DEFAULT", PyInt_FromLong((long) 21));
10716 PyDict_SetItemString(d
,"wxSTC_H_SGML_COMMAND", PyInt_FromLong((long) 22));
10717 PyDict_SetItemString(d
,"wxSTC_H_SGML_1ST_PARAM", PyInt_FromLong((long) 23));
10718 PyDict_SetItemString(d
,"wxSTC_H_SGML_DOUBLESTRING", PyInt_FromLong((long) 24));
10719 PyDict_SetItemString(d
,"wxSTC_H_SGML_SIMPLESTRING", PyInt_FromLong((long) 25));
10720 PyDict_SetItemString(d
,"wxSTC_H_SGML_ERROR", PyInt_FromLong((long) 26));
10721 PyDict_SetItemString(d
,"wxSTC_H_SGML_SPECIAL", PyInt_FromLong((long) 27));
10722 PyDict_SetItemString(d
,"wxSTC_H_SGML_ENTITY", PyInt_FromLong((long) 28));
10723 PyDict_SetItemString(d
,"wxSTC_H_SGML_COMMENT", PyInt_FromLong((long) 29));
10724 PyDict_SetItemString(d
,"wxSTC_H_SGML_1ST_PARAM_COMMENT", PyInt_FromLong((long) 30));
10725 PyDict_SetItemString(d
,"wxSTC_H_SGML_BLOCK_DEFAULT", PyInt_FromLong((long) 31));
10726 PyDict_SetItemString(d
,"wxSTC_HJ_START", PyInt_FromLong((long) 40));
10727 PyDict_SetItemString(d
,"wxSTC_HJ_DEFAULT", PyInt_FromLong((long) 41));
10728 PyDict_SetItemString(d
,"wxSTC_HJ_COMMENT", PyInt_FromLong((long) 42));
10729 PyDict_SetItemString(d
,"wxSTC_HJ_COMMENTLINE", PyInt_FromLong((long) 43));
10730 PyDict_SetItemString(d
,"wxSTC_HJ_COMMENTDOC", PyInt_FromLong((long) 44));
10731 PyDict_SetItemString(d
,"wxSTC_HJ_NUMBER", PyInt_FromLong((long) 45));
10732 PyDict_SetItemString(d
,"wxSTC_HJ_WORD", PyInt_FromLong((long) 46));
10733 PyDict_SetItemString(d
,"wxSTC_HJ_KEYWORD", PyInt_FromLong((long) 47));
10734 PyDict_SetItemString(d
,"wxSTC_HJ_DOUBLESTRING", PyInt_FromLong((long) 48));
10735 PyDict_SetItemString(d
,"wxSTC_HJ_SINGLESTRING", PyInt_FromLong((long) 49));
10736 PyDict_SetItemString(d
,"wxSTC_HJ_SYMBOLS", PyInt_FromLong((long) 50));
10737 PyDict_SetItemString(d
,"wxSTC_HJ_STRINGEOL", PyInt_FromLong((long) 51));
10738 PyDict_SetItemString(d
,"wxSTC_HJ_REGEX", PyInt_FromLong((long) 52));
10739 PyDict_SetItemString(d
,"wxSTC_HJA_START", PyInt_FromLong((long) 55));
10740 PyDict_SetItemString(d
,"wxSTC_HJA_DEFAULT", PyInt_FromLong((long) 56));
10741 PyDict_SetItemString(d
,"wxSTC_HJA_COMMENT", PyInt_FromLong((long) 57));
10742 PyDict_SetItemString(d
,"wxSTC_HJA_COMMENTLINE", PyInt_FromLong((long) 58));
10743 PyDict_SetItemString(d
,"wxSTC_HJA_COMMENTDOC", PyInt_FromLong((long) 59));
10744 PyDict_SetItemString(d
,"wxSTC_HJA_NUMBER", PyInt_FromLong((long) 60));
10745 PyDict_SetItemString(d
,"wxSTC_HJA_WORD", PyInt_FromLong((long) 61));
10746 PyDict_SetItemString(d
,"wxSTC_HJA_KEYWORD", PyInt_FromLong((long) 62));
10747 PyDict_SetItemString(d
,"wxSTC_HJA_DOUBLESTRING", PyInt_FromLong((long) 63));
10748 PyDict_SetItemString(d
,"wxSTC_HJA_SINGLESTRING", PyInt_FromLong((long) 64));
10749 PyDict_SetItemString(d
,"wxSTC_HJA_SYMBOLS", PyInt_FromLong((long) 65));
10750 PyDict_SetItemString(d
,"wxSTC_HJA_STRINGEOL", PyInt_FromLong((long) 66));
10751 PyDict_SetItemString(d
,"wxSTC_HJA_REGEX", PyInt_FromLong((long) 67));
10752 PyDict_SetItemString(d
,"wxSTC_HB_START", PyInt_FromLong((long) 70));
10753 PyDict_SetItemString(d
,"wxSTC_HB_DEFAULT", PyInt_FromLong((long) 71));
10754 PyDict_SetItemString(d
,"wxSTC_HB_COMMENTLINE", PyInt_FromLong((long) 72));
10755 PyDict_SetItemString(d
,"wxSTC_HB_NUMBER", PyInt_FromLong((long) 73));
10756 PyDict_SetItemString(d
,"wxSTC_HB_WORD", PyInt_FromLong((long) 74));
10757 PyDict_SetItemString(d
,"wxSTC_HB_STRING", PyInt_FromLong((long) 75));
10758 PyDict_SetItemString(d
,"wxSTC_HB_IDENTIFIER", PyInt_FromLong((long) 76));
10759 PyDict_SetItemString(d
,"wxSTC_HB_STRINGEOL", PyInt_FromLong((long) 77));
10760 PyDict_SetItemString(d
,"wxSTC_HBA_START", PyInt_FromLong((long) 80));
10761 PyDict_SetItemString(d
,"wxSTC_HBA_DEFAULT", PyInt_FromLong((long) 81));
10762 PyDict_SetItemString(d
,"wxSTC_HBA_COMMENTLINE", PyInt_FromLong((long) 82));
10763 PyDict_SetItemString(d
,"wxSTC_HBA_NUMBER", PyInt_FromLong((long) 83));
10764 PyDict_SetItemString(d
,"wxSTC_HBA_WORD", PyInt_FromLong((long) 84));
10765 PyDict_SetItemString(d
,"wxSTC_HBA_STRING", PyInt_FromLong((long) 85));
10766 PyDict_SetItemString(d
,"wxSTC_HBA_IDENTIFIER", PyInt_FromLong((long) 86));
10767 PyDict_SetItemString(d
,"wxSTC_HBA_STRINGEOL", PyInt_FromLong((long) 87));
10768 PyDict_SetItemString(d
,"wxSTC_HP_START", PyInt_FromLong((long) 90));
10769 PyDict_SetItemString(d
,"wxSTC_HP_DEFAULT", PyInt_FromLong((long) 91));
10770 PyDict_SetItemString(d
,"wxSTC_HP_COMMENTLINE", PyInt_FromLong((long) 92));
10771 PyDict_SetItemString(d
,"wxSTC_HP_NUMBER", PyInt_FromLong((long) 93));
10772 PyDict_SetItemString(d
,"wxSTC_HP_STRING", PyInt_FromLong((long) 94));
10773 PyDict_SetItemString(d
,"wxSTC_HP_CHARACTER", PyInt_FromLong((long) 95));
10774 PyDict_SetItemString(d
,"wxSTC_HP_WORD", PyInt_FromLong((long) 96));
10775 PyDict_SetItemString(d
,"wxSTC_HP_TRIPLE", PyInt_FromLong((long) 97));
10776 PyDict_SetItemString(d
,"wxSTC_HP_TRIPLEDOUBLE", PyInt_FromLong((long) 98));
10777 PyDict_SetItemString(d
,"wxSTC_HP_CLASSNAME", PyInt_FromLong((long) 99));
10778 PyDict_SetItemString(d
,"wxSTC_HP_DEFNAME", PyInt_FromLong((long) 100));
10779 PyDict_SetItemString(d
,"wxSTC_HP_OPERATOR", PyInt_FromLong((long) 101));
10780 PyDict_SetItemString(d
,"wxSTC_HP_IDENTIFIER", PyInt_FromLong((long) 102));
10781 PyDict_SetItemString(d
,"wxSTC_HPA_START", PyInt_FromLong((long) 105));
10782 PyDict_SetItemString(d
,"wxSTC_HPA_DEFAULT", PyInt_FromLong((long) 106));
10783 PyDict_SetItemString(d
,"wxSTC_HPA_COMMENTLINE", PyInt_FromLong((long) 107));
10784 PyDict_SetItemString(d
,"wxSTC_HPA_NUMBER", PyInt_FromLong((long) 108));
10785 PyDict_SetItemString(d
,"wxSTC_HPA_STRING", PyInt_FromLong((long) 109));
10786 PyDict_SetItemString(d
,"wxSTC_HPA_CHARACTER", PyInt_FromLong((long) 110));
10787 PyDict_SetItemString(d
,"wxSTC_HPA_WORD", PyInt_FromLong((long) 111));
10788 PyDict_SetItemString(d
,"wxSTC_HPA_TRIPLE", PyInt_FromLong((long) 112));
10789 PyDict_SetItemString(d
,"wxSTC_HPA_TRIPLEDOUBLE", PyInt_FromLong((long) 113));
10790 PyDict_SetItemString(d
,"wxSTC_HPA_CLASSNAME", PyInt_FromLong((long) 114));
10791 PyDict_SetItemString(d
,"wxSTC_HPA_DEFNAME", PyInt_FromLong((long) 115));
10792 PyDict_SetItemString(d
,"wxSTC_HPA_OPERATOR", PyInt_FromLong((long) 116));
10793 PyDict_SetItemString(d
,"wxSTC_HPA_IDENTIFIER", PyInt_FromLong((long) 117));
10794 PyDict_SetItemString(d
,"wxSTC_HPHP_DEFAULT", PyInt_FromLong((long) 118));
10795 PyDict_SetItemString(d
,"wxSTC_HPHP_HSTRING", PyInt_FromLong((long) 119));
10796 PyDict_SetItemString(d
,"wxSTC_HPHP_SIMPLESTRING", PyInt_FromLong((long) 120));
10797 PyDict_SetItemString(d
,"wxSTC_HPHP_WORD", PyInt_FromLong((long) 121));
10798 PyDict_SetItemString(d
,"wxSTC_HPHP_NUMBER", PyInt_FromLong((long) 122));
10799 PyDict_SetItemString(d
,"wxSTC_HPHP_VARIABLE", PyInt_FromLong((long) 123));
10800 PyDict_SetItemString(d
,"wxSTC_HPHP_COMMENT", PyInt_FromLong((long) 124));
10801 PyDict_SetItemString(d
,"wxSTC_HPHP_COMMENTLINE", PyInt_FromLong((long) 125));
10802 PyDict_SetItemString(d
,"wxSTC_HPHP_HSTRING_VARIABLE", PyInt_FromLong((long) 126));
10803 PyDict_SetItemString(d
,"wxSTC_HPHP_OPERATOR", PyInt_FromLong((long) 127));
10804 PyDict_SetItemString(d
,"wxSTC_PL_DEFAULT", PyInt_FromLong((long) 0));
10805 PyDict_SetItemString(d
,"wxSTC_PL_ERROR", PyInt_FromLong((long) 1));
10806 PyDict_SetItemString(d
,"wxSTC_PL_COMMENTLINE", PyInt_FromLong((long) 2));
10807 PyDict_SetItemString(d
,"wxSTC_PL_POD", PyInt_FromLong((long) 3));
10808 PyDict_SetItemString(d
,"wxSTC_PL_NUMBER", PyInt_FromLong((long) 4));
10809 PyDict_SetItemString(d
,"wxSTC_PL_WORD", PyInt_FromLong((long) 5));
10810 PyDict_SetItemString(d
,"wxSTC_PL_STRING", PyInt_FromLong((long) 6));
10811 PyDict_SetItemString(d
,"wxSTC_PL_CHARACTER", PyInt_FromLong((long) 7));
10812 PyDict_SetItemString(d
,"wxSTC_PL_PUNCTUATION", PyInt_FromLong((long) 8));
10813 PyDict_SetItemString(d
,"wxSTC_PL_PREPROCESSOR", PyInt_FromLong((long) 9));
10814 PyDict_SetItemString(d
,"wxSTC_PL_OPERATOR", PyInt_FromLong((long) 10));
10815 PyDict_SetItemString(d
,"wxSTC_PL_IDENTIFIER", PyInt_FromLong((long) 11));
10816 PyDict_SetItemString(d
,"wxSTC_PL_SCALAR", PyInt_FromLong((long) 12));
10817 PyDict_SetItemString(d
,"wxSTC_PL_ARRAY", PyInt_FromLong((long) 13));
10818 PyDict_SetItemString(d
,"wxSTC_PL_HASH", PyInt_FromLong((long) 14));
10819 PyDict_SetItemString(d
,"wxSTC_PL_SYMBOLTABLE", PyInt_FromLong((long) 15));
10820 PyDict_SetItemString(d
,"wxSTC_PL_REGEX", PyInt_FromLong((long) 17));
10821 PyDict_SetItemString(d
,"wxSTC_PL_REGSUBST", PyInt_FromLong((long) 18));
10822 PyDict_SetItemString(d
,"wxSTC_PL_LONGQUOTE", PyInt_FromLong((long) 19));
10823 PyDict_SetItemString(d
,"wxSTC_PL_BACKTICKS", PyInt_FromLong((long) 20));
10824 PyDict_SetItemString(d
,"wxSTC_PL_DATASECTION", PyInt_FromLong((long) 21));
10825 PyDict_SetItemString(d
,"wxSTC_PL_HERE_DELIM", PyInt_FromLong((long) 22));
10826 PyDict_SetItemString(d
,"wxSTC_PL_HERE_Q", PyInt_FromLong((long) 23));
10827 PyDict_SetItemString(d
,"wxSTC_PL_HERE_QQ", PyInt_FromLong((long) 24));
10828 PyDict_SetItemString(d
,"wxSTC_PL_HERE_QX", PyInt_FromLong((long) 25));
10829 PyDict_SetItemString(d
,"wxSTC_PL_STRING_Q", PyInt_FromLong((long) 26));
10830 PyDict_SetItemString(d
,"wxSTC_PL_STRING_QQ", PyInt_FromLong((long) 27));
10831 PyDict_SetItemString(d
,"wxSTC_PL_STRING_QX", PyInt_FromLong((long) 28));
10832 PyDict_SetItemString(d
,"wxSTC_PL_STRING_QR", PyInt_FromLong((long) 29));
10833 PyDict_SetItemString(d
,"wxSTC_PL_STRING_QW", PyInt_FromLong((long) 30));
10834 PyDict_SetItemString(d
,"wxSTC_L_DEFAULT", PyInt_FromLong((long) 0));
10835 PyDict_SetItemString(d
,"wxSTC_L_COMMAND", PyInt_FromLong((long) 1));
10836 PyDict_SetItemString(d
,"wxSTC_L_TAG", PyInt_FromLong((long) 2));
10837 PyDict_SetItemString(d
,"wxSTC_L_MATH", PyInt_FromLong((long) 3));
10838 PyDict_SetItemString(d
,"wxSTC_L_COMMENT", PyInt_FromLong((long) 4));
10839 PyDict_SetItemString(d
,"wxSTC_LUA_DEFAULT", PyInt_FromLong((long) 0));
10840 PyDict_SetItemString(d
,"wxSTC_LUA_COMMENT", PyInt_FromLong((long) 1));
10841 PyDict_SetItemString(d
,"wxSTC_LUA_COMMENTLINE", PyInt_FromLong((long) 2));
10842 PyDict_SetItemString(d
,"wxSTC_LUA_COMMENTDOC", PyInt_FromLong((long) 3));
10843 PyDict_SetItemString(d
,"wxSTC_LUA_NUMBER", PyInt_FromLong((long) 4));
10844 PyDict_SetItemString(d
,"wxSTC_LUA_WORD", PyInt_FromLong((long) 5));
10845 PyDict_SetItemString(d
,"wxSTC_LUA_STRING", PyInt_FromLong((long) 6));
10846 PyDict_SetItemString(d
,"wxSTC_LUA_CHARACTER", PyInt_FromLong((long) 7));
10847 PyDict_SetItemString(d
,"wxSTC_LUA_LITERALSTRING", PyInt_FromLong((long) 8));
10848 PyDict_SetItemString(d
,"wxSTC_LUA_PREPROCESSOR", PyInt_FromLong((long) 9));
10849 PyDict_SetItemString(d
,"wxSTC_LUA_OPERATOR", PyInt_FromLong((long) 10));
10850 PyDict_SetItemString(d
,"wxSTC_LUA_IDENTIFIER", PyInt_FromLong((long) 11));
10851 PyDict_SetItemString(d
,"wxSTC_LUA_STRINGEOL", PyInt_FromLong((long) 12));
10852 PyDict_SetItemString(d
,"wxSTC_ERR_DEFAULT", PyInt_FromLong((long) 0));
10853 PyDict_SetItemString(d
,"wxSTC_ERR_PYTHON", PyInt_FromLong((long) 1));
10854 PyDict_SetItemString(d
,"wxSTC_ERR_GCC", PyInt_FromLong((long) 2));
10855 PyDict_SetItemString(d
,"wxSTC_ERR_MS", PyInt_FromLong((long) 3));
10856 PyDict_SetItemString(d
,"wxSTC_ERR_CMD", PyInt_FromLong((long) 4));
10857 PyDict_SetItemString(d
,"wxSTC_ERR_BORLAND", PyInt_FromLong((long) 5));
10858 PyDict_SetItemString(d
,"wxSTC_ERR_PERL", PyInt_FromLong((long) 6));
10859 PyDict_SetItemString(d
,"wxSTC_ERR_NET", PyInt_FromLong((long) 7));
10860 PyDict_SetItemString(d
,"wxSTC_ERR_LUA", PyInt_FromLong((long) 8));
10861 PyDict_SetItemString(d
,"wxSTC_ERR_DIFF_CHANGED", PyInt_FromLong((long) 10));
10862 PyDict_SetItemString(d
,"wxSTC_ERR_DIFF_ADDITION", PyInt_FromLong((long) 11));
10863 PyDict_SetItemString(d
,"wxSTC_ERR_DIFF_DELETION", PyInt_FromLong((long) 12));
10864 PyDict_SetItemString(d
,"wxSTC_ERR_DIFF_MESSAGE", PyInt_FromLong((long) 13));
10865 PyDict_SetItemString(d
,"wxSTC_BAT_DEFAULT", PyInt_FromLong((long) 0));
10866 PyDict_SetItemString(d
,"wxSTC_BAT_COMMENT", PyInt_FromLong((long) 1));
10867 PyDict_SetItemString(d
,"wxSTC_BAT_WORD", PyInt_FromLong((long) 2));
10868 PyDict_SetItemString(d
,"wxSTC_BAT_LABEL", PyInt_FromLong((long) 3));
10869 PyDict_SetItemString(d
,"wxSTC_BAT_HIDE", PyInt_FromLong((long) 4));
10870 PyDict_SetItemString(d
,"wxSTC_BAT_COMMAND", PyInt_FromLong((long) 5));
10871 PyDict_SetItemString(d
,"wxSTC_BAT_IDENTIFIER", PyInt_FromLong((long) 6));
10872 PyDict_SetItemString(d
,"wxSTC_BAT_OPERATOR", PyInt_FromLong((long) 7));
10873 PyDict_SetItemString(d
,"wxSTC_MAKE_DEFAULT", PyInt_FromLong((long) 0));
10874 PyDict_SetItemString(d
,"wxSTC_MAKE_COMMENT", PyInt_FromLong((long) 1));
10875 PyDict_SetItemString(d
,"wxSTC_MAKE_PREPROCESSOR", PyInt_FromLong((long) 2));
10876 PyDict_SetItemString(d
,"wxSTC_MAKE_IDENTIFIER", PyInt_FromLong((long) 3));
10877 PyDict_SetItemString(d
,"wxSTC_MAKE_OPERATOR", PyInt_FromLong((long) 4));
10878 PyDict_SetItemString(d
,"wxSTC_MAKE_TARGET", PyInt_FromLong((long) 5));
10879 PyDict_SetItemString(d
,"wxSTC_MAKE_IDEOL", PyInt_FromLong((long) 9));
10880 PyDict_SetItemString(d
,"wxSTC_CONF_DEFAULT", PyInt_FromLong((long) 0));
10881 PyDict_SetItemString(d
,"wxSTC_CONF_COMMENT", PyInt_FromLong((long) 1));
10882 PyDict_SetItemString(d
,"wxSTC_CONF_NUMBER", PyInt_FromLong((long) 2));
10883 PyDict_SetItemString(d
,"wxSTC_CONF_IDENTIFIER", PyInt_FromLong((long) 3));
10884 PyDict_SetItemString(d
,"wxSTC_CONF_EXTENSION", PyInt_FromLong((long) 4));
10885 PyDict_SetItemString(d
,"wxSTC_CONF_PARAMETER", PyInt_FromLong((long) 5));
10886 PyDict_SetItemString(d
,"wxSTC_CONF_STRING", PyInt_FromLong((long) 6));
10887 PyDict_SetItemString(d
,"wxSTC_CONF_OPERATOR", PyInt_FromLong((long) 7));
10888 PyDict_SetItemString(d
,"wxSTC_CONF_IP", PyInt_FromLong((long) 8));
10889 PyDict_SetItemString(d
,"wxSTC_CONF_DIRECTIVE", PyInt_FromLong((long) 9));
10890 PyDict_SetItemString(d
,"wxSTC_AVE_DEFAULT", PyInt_FromLong((long) 0));
10891 PyDict_SetItemString(d
,"wxSTC_AVE_COMMENT", PyInt_FromLong((long) 1));
10892 PyDict_SetItemString(d
,"wxSTC_AVE_NUMBER", PyInt_FromLong((long) 2));
10893 PyDict_SetItemString(d
,"wxSTC_AVE_WORD", PyInt_FromLong((long) 3));
10894 PyDict_SetItemString(d
,"wxSTC_AVE_KEYWORD", PyInt_FromLong((long) 4));
10895 PyDict_SetItemString(d
,"wxSTC_AVE_STATEMENT", PyInt_FromLong((long) 5));
10896 PyDict_SetItemString(d
,"wxSTC_AVE_STRING", PyInt_FromLong((long) 6));
10897 PyDict_SetItemString(d
,"wxSTC_AVE_ENUM", PyInt_FromLong((long) 7));
10898 PyDict_SetItemString(d
,"wxSTC_AVE_STRINGEOL", PyInt_FromLong((long) 8));
10899 PyDict_SetItemString(d
,"wxSTC_AVE_IDENTIFIER", PyInt_FromLong((long) 9));
10900 PyDict_SetItemString(d
,"wxSTC_AVE_OPERATOR", PyInt_FromLong((long) 10));
10901 PyDict_SetItemString(d
,"wxSTC_ADA_DEFAULT", PyInt_FromLong((long) 0));
10902 PyDict_SetItemString(d
,"wxSTC_ADA_COMMENT", PyInt_FromLong((long) 1));
10903 PyDict_SetItemString(d
,"wxSTC_ADA_NUMBER", PyInt_FromLong((long) 2));
10904 PyDict_SetItemString(d
,"wxSTC_ADA_WORD", PyInt_FromLong((long) 3));
10905 PyDict_SetItemString(d
,"wxSTC_ADA_STRING", PyInt_FromLong((long) 4));
10906 PyDict_SetItemString(d
,"wxSTC_ADA_CHARACTER", PyInt_FromLong((long) 5));
10907 PyDict_SetItemString(d
,"wxSTC_ADA_OPERATOR", PyInt_FromLong((long) 6));
10908 PyDict_SetItemString(d
,"wxSTC_ADA_IDENTIFIER", PyInt_FromLong((long) 7));
10909 PyDict_SetItemString(d
,"wxSTC_ADA_STRINGEOL", PyInt_FromLong((long) 8));
10910 PyDict_SetItemString(d
,"wxSTC_LISP_DEFAULT", PyInt_FromLong((long) 0));
10911 PyDict_SetItemString(d
,"wxSTC_LISP_COMMENT", PyInt_FromLong((long) 1));
10912 PyDict_SetItemString(d
,"wxSTC_LISP_NUMBER", PyInt_FromLong((long) 2));
10913 PyDict_SetItemString(d
,"wxSTC_LISP_KEYWORD", PyInt_FromLong((long) 3));
10914 PyDict_SetItemString(d
,"wxSTC_LISP_STRING", PyInt_FromLong((long) 6));
10915 PyDict_SetItemString(d
,"wxSTC_LISP_STRINGEOL", PyInt_FromLong((long) 8));
10916 PyDict_SetItemString(d
,"wxSTC_LISP_IDENTIFIER", PyInt_FromLong((long) 9));
10917 PyDict_SetItemString(d
,"wxSTC_LISP_OPERATOR", PyInt_FromLong((long) 10));
10918 PyDict_SetItemString(d
,"wxSTC_EIFFEL_DEFAULT", PyInt_FromLong((long) 0));
10919 PyDict_SetItemString(d
,"wxSTC_EIFFEL_COMMENTLINE", PyInt_FromLong((long) 1));
10920 PyDict_SetItemString(d
,"wxSTC_EIFFEL_NUMBER", PyInt_FromLong((long) 2));
10921 PyDict_SetItemString(d
,"wxSTC_EIFFEL_WORD", PyInt_FromLong((long) 3));
10922 PyDict_SetItemString(d
,"wxSTC_EIFFEL_STRING", PyInt_FromLong((long) 4));
10923 PyDict_SetItemString(d
,"wxSTC_EIFFEL_CHARACTER", PyInt_FromLong((long) 5));
10924 PyDict_SetItemString(d
,"wxSTC_EIFFEL_OPERATOR", PyInt_FromLong((long) 6));
10925 PyDict_SetItemString(d
,"wxSTC_EIFFEL_IDENTIFIER", PyInt_FromLong((long) 7));
10926 PyDict_SetItemString(d
,"wxSTC_EIFFEL_STRINGEOL", PyInt_FromLong((long) 8));
10927 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_DEFAULT", PyInt_FromLong((long) 0));
10928 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_COMMENT", PyInt_FromLong((long) 1));
10929 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_TASK", PyInt_FromLong((long) 2));
10930 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_SECTION", PyInt_FromLong((long) 3));
10931 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_KEYWORD", PyInt_FromLong((long) 4));
10932 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_MODIFIER", PyInt_FromLong((long) 5));
10933 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_ASTERISK", PyInt_FromLong((long) 6));
10934 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_NUMBER", PyInt_FromLong((long) 7));
10935 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_STRING", PyInt_FromLong((long) 8));
10936 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_ENVIRONMENT", PyInt_FromLong((long) 9));
10937 PyDict_SetItemString(d
,"wxSTC_NNCRONTAB_IDENTIFIER", PyInt_FromLong((long) 10));
10938 PyDict_SetItemString(d
,"wxSTC_MASK_FOLDERS", PyInt_FromLong((long) ((1<<(30))|(1<<(31)))));
10939 PyDict_SetItemString(d
,"wxSTCNameStr", PyString_FromString("wxSTCNameStr"));
10940 PyDict_SetItemString(d
,"wxEVT_STC_CHANGE", PyInt_FromLong((long) wxEVT_STC_CHANGE
));
10941 PyDict_SetItemString(d
,"wxEVT_STC_STYLENEEDED", PyInt_FromLong((long) wxEVT_STC_STYLENEEDED
));
10942 PyDict_SetItemString(d
,"wxEVT_STC_CHARADDED", PyInt_FromLong((long) wxEVT_STC_CHARADDED
));
10943 PyDict_SetItemString(d
,"wxEVT_STC_SAVEPOINTREACHED", PyInt_FromLong((long) wxEVT_STC_SAVEPOINTREACHED
));
10944 PyDict_SetItemString(d
,"wxEVT_STC_SAVEPOINTLEFT", PyInt_FromLong((long) wxEVT_STC_SAVEPOINTLEFT
));
10945 PyDict_SetItemString(d
,"wxEVT_STC_ROMODIFYATTEMPT", PyInt_FromLong((long) wxEVT_STC_ROMODIFYATTEMPT
));
10946 PyDict_SetItemString(d
,"wxEVT_STC_KEY", PyInt_FromLong((long) wxEVT_STC_KEY
));
10947 PyDict_SetItemString(d
,"wxEVT_STC_DOUBLECLICK", PyInt_FromLong((long) wxEVT_STC_DOUBLECLICK
));
10948 PyDict_SetItemString(d
,"wxEVT_STC_UPDATEUI", PyInt_FromLong((long) wxEVT_STC_UPDATEUI
));
10949 PyDict_SetItemString(d
,"wxEVT_STC_MODIFIED", PyInt_FromLong((long) wxEVT_STC_MODIFIED
));
10950 PyDict_SetItemString(d
,"wxEVT_STC_MACRORECORD", PyInt_FromLong((long) wxEVT_STC_MACRORECORD
));
10951 PyDict_SetItemString(d
,"wxEVT_STC_MARGINCLICK", PyInt_FromLong((long) wxEVT_STC_MARGINCLICK
));
10952 PyDict_SetItemString(d
,"wxEVT_STC_NEEDSHOWN", PyInt_FromLong((long) wxEVT_STC_NEEDSHOWN
));
10953 PyDict_SetItemString(d
,"wxEVT_STC_POSCHANGED", PyInt_FromLong((long) wxEVT_STC_POSCHANGED
));
10954 PyDict_SetItemString(d
,"wxEVT_STC_PAINTED", PyInt_FromLong((long) wxEVT_STC_PAINTED
));
10955 PyDict_SetItemString(d
,"wxEVT_STC_USERLISTSELECTION", PyInt_FromLong((long) wxEVT_STC_USERLISTSELECTION
));
10956 PyDict_SetItemString(d
,"wxEVT_STC_URIDROPPED", PyInt_FromLong((long) wxEVT_STC_URIDROPPED
));
10957 PyDict_SetItemString(d
,"wxEVT_STC_DWELLSTART", PyInt_FromLong((long) wxEVT_STC_DWELLSTART
));
10958 PyDict_SetItemString(d
,"wxEVT_STC_DWELLEND", PyInt_FromLong((long) wxEVT_STC_DWELLEND
));
10959 PyDict_SetItemString(d
,"wxEVT_STC_START_DRAG", PyInt_FromLong((long) wxEVT_STC_START_DRAG
));
10960 PyDict_SetItemString(d
,"wxEVT_STC_DRAG_OVER", PyInt_FromLong((long) wxEVT_STC_DRAG_OVER
));
10961 PyDict_SetItemString(d
,"wxEVT_STC_DO_DROP", PyInt_FromLong((long) wxEVT_STC_DO_DROP
));
10964 wxClassInfo::CleanUpClasses();
10965 wxClassInfo::InitializeClasses();
10969 for (i
= 0; _swig_mapping
[i
].n1
; i
++)
10970 SWIG_RegisterMapping(_swig_mapping
[i
].n1
,_swig_mapping
[i
].n2
,_swig_mapping
[i
].pcnv
);