X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae8162c88f5708d87e4d5fb78055256a72b5bd78..54e72b1a7f2ad46b9d7b363c5ff433a676bf1bdf:/wxPython/contrib/stc/gtk/stc_wrap.cpp?ds=sidebyside diff --git a/wxPython/contrib/stc/gtk/stc_wrap.cpp b/wxPython/contrib/stc/gtk/stc_wrap.cpp index 6845faef66..5d535c02c4 100644 --- a/wxPython/contrib/stc/gtk/stc_wrap.cpp +++ b/wxPython/contrib/stc/gtk/stc_wrap.cpp @@ -7762,6 +7762,171 @@ static PyObject *_wrap_StyledTextCtrl_GetWrapMode(PyObject *, PyObject *args, Py } +static PyObject *_wrap_StyledTextCtrl_SetWrapVisualFlags(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *kwnames[] = { + (char *) "self",(char *) "wrapVisualFlags", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StyledTextCtrl_SetWrapVisualFlags",kwnames,&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + arg2 = (int)SWIG_As_int(obj1); + if (PyErr_Occurred()) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + (arg1)->SetWrapVisualFlags(arg2); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_StyledTextCtrl_GetWrapVisualFlags(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int result; + PyObject * obj0 = 0 ; + char *kwnames[] = { + (char *) "self", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:StyledTextCtrl_GetWrapVisualFlags",kwnames,&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + result = (int)(arg1)->GetWrapVisualFlags(); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + resultobj = SWIG_From_int((int)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_StyledTextCtrl_SetWrapVisualFlagsLocation(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *kwnames[] = { + (char *) "self",(char *) "wrapVisualFlagsLocation", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StyledTextCtrl_SetWrapVisualFlagsLocation",kwnames,&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + arg2 = (int)SWIG_As_int(obj1); + if (PyErr_Occurred()) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + (arg1)->SetWrapVisualFlagsLocation(arg2); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int result; + PyObject * obj0 = 0 ; + char *kwnames[] = { + (char *) "self", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:StyledTextCtrl_GetWrapVisualFlagsLocation",kwnames,&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + result = (int)(arg1)->GetWrapVisualFlagsLocation(); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + resultobj = SWIG_From_int((int)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_StyledTextCtrl_SetWrapStartIndent(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *kwnames[] = { + (char *) "self",(char *) "indent", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StyledTextCtrl_SetWrapStartIndent",kwnames,&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + arg2 = (int)SWIG_As_int(obj1); + if (PyErr_Occurred()) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + (arg1)->SetWrapStartIndent(arg2); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_StyledTextCtrl_GetWrapStartIndent(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int result; + PyObject * obj0 = 0 ; + char *kwnames[] = { + (char *) "self", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:StyledTextCtrl_GetWrapStartIndent",kwnames,&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + result = (int)(arg1)->GetWrapStartIndent(); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + resultobj = SWIG_From_int((int)result); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_StyledTextCtrl_SetLayoutCache(PyObject *, PyObject *args, PyObject *kwargs) { PyObject *resultobj; wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; @@ -12223,6 +12388,35 @@ static PyObject *_wrap_StyledTextCtrl_AutoCompGetCurrent(PyObject *, PyObject *a } +static PyObject *_wrap_StyledTextCtrl_Allocate(PyObject *, PyObject *args, PyObject *kwargs) { + PyObject *resultobj; + wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *kwnames[] = { + (char *) "self",(char *) "bytes", NULL + }; + + if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StyledTextCtrl_Allocate",kwnames,&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStyledTextCtrl, + SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail; + arg2 = (int)SWIG_As_int(obj1); + if (PyErr_Occurred()) SWIG_fail; + { + PyThreadState* __tstate = wxPyBeginAllowThreads(); + (arg1)->Allocate(arg2); + + wxPyEndAllowThreads(__tstate); + if (PyErr_Occurred()) SWIG_fail; + } + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_StyledTextCtrl_StartRecord(PyObject *, PyObject *args, PyObject *kwargs) { PyObject *resultobj; wxStyledTextCtrl *arg1 = (wxStyledTextCtrl *) 0 ; @@ -14809,6 +15003,12 @@ static PyMethodDef SwigMethods[] = { { (char *)"StyledTextCtrl_WordEndPosition", (PyCFunction) _wrap_StyledTextCtrl_WordEndPosition, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_SetWrapMode", (PyCFunction) _wrap_StyledTextCtrl_SetWrapMode, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_GetWrapMode", (PyCFunction) _wrap_StyledTextCtrl_GetWrapMode, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_SetWrapVisualFlags", (PyCFunction) _wrap_StyledTextCtrl_SetWrapVisualFlags, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_GetWrapVisualFlags", (PyCFunction) _wrap_StyledTextCtrl_GetWrapVisualFlags, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_SetWrapVisualFlagsLocation", (PyCFunction) _wrap_StyledTextCtrl_SetWrapVisualFlagsLocation, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_GetWrapVisualFlagsLocation", (PyCFunction) _wrap_StyledTextCtrl_GetWrapVisualFlagsLocation, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_SetWrapStartIndent", (PyCFunction) _wrap_StyledTextCtrl_SetWrapStartIndent, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_GetWrapStartIndent", (PyCFunction) _wrap_StyledTextCtrl_GetWrapStartIndent, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_SetLayoutCache", (PyCFunction) _wrap_StyledTextCtrl_SetLayoutCache, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_GetLayoutCache", (PyCFunction) _wrap_StyledTextCtrl_GetLayoutCache, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_SetScrollWidth", (PyCFunction) _wrap_StyledTextCtrl_SetScrollWidth, METH_VARARGS | METH_KEYWORDS, NULL }, @@ -14972,6 +15172,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"StyledTextCtrl_SetWhitespaceChars", (PyCFunction) _wrap_StyledTextCtrl_SetWhitespaceChars, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_SetCharsDefault", (PyCFunction) _wrap_StyledTextCtrl_SetCharsDefault, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_AutoCompGetCurrent", (PyCFunction) _wrap_StyledTextCtrl_AutoCompGetCurrent, METH_VARARGS | METH_KEYWORDS, NULL }, + { (char *)"StyledTextCtrl_Allocate", (PyCFunction) _wrap_StyledTextCtrl_Allocate, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_StartRecord", (PyCFunction) _wrap_StyledTextCtrl_StartRecord, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_StopRecord", (PyCFunction) _wrap_StyledTextCtrl_StopRecord, METH_VARARGS | METH_KEYWORDS, NULL }, { (char *)"StyledTextCtrl_SetLexer", (PyCFunction) _wrap_StyledTextCtrl_SetLexer, METH_VARARGS | METH_KEYWORDS, NULL }, @@ -15701,6 +15902,12 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_TIME_FOREVER", SWIG_From_int((int)10000000)); PyDict_SetItemString(d,"STC_WRAP_NONE", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_WRAP_WORD", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAG_NONE", SWIG_From_int((int)0x0000)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAG_END", SWIG_From_int((int)0x0001)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAG_START", SWIG_From_int((int)0x0002)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAGLOC_DEFAULT", SWIG_From_int((int)0x0000)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAGLOC_END_BY_TEXT", SWIG_From_int((int)0x0001)); + PyDict_SetItemString(d,"STC_WRAPVISUALFLAGLOC_START_BY_TEXT", SWIG_From_int((int)0x0002)); PyDict_SetItemString(d,"STC_CACHE_NONE", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_CACHE_CARET", SWIG_From_int((int)1)); PyDict_SetItemString(d,"STC_CACHE_PAGE", SWIG_From_int((int)2)); @@ -15807,6 +16014,14 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_LEX_FORTH", SWIG_From_int((int)52)); PyDict_SetItemString(d,"STC_LEX_ERLANG", SWIG_From_int((int)53)); PyDict_SetItemString(d,"STC_LEX_OCTAVE", SWIG_From_int((int)54)); + PyDict_SetItemString(d,"STC_LEX_MSSQL", SWIG_From_int((int)55)); + PyDict_SetItemString(d,"STC_LEX_VERILOG", SWIG_From_int((int)56)); + PyDict_SetItemString(d,"STC_LEX_KIX", SWIG_From_int((int)57)); + PyDict_SetItemString(d,"STC_LEX_GUI4CLI", SWIG_From_int((int)58)); + PyDict_SetItemString(d,"STC_LEX_SPECMAN", SWIG_From_int((int)59)); + PyDict_SetItemString(d,"STC_LEX_AU3", SWIG_From_int((int)60)); + PyDict_SetItemString(d,"STC_LEX_APDL", SWIG_From_int((int)61)); + PyDict_SetItemString(d,"STC_LEX_BASH", SWIG_From_int((int)62)); PyDict_SetItemString(d,"STC_LEX_AUTOMATIC", SWIG_From_int((int)1000)); PyDict_SetItemString(d,"STC_P_DEFAULT", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_P_COMMENTLINE", SWIG_From_int((int)1)); @@ -15929,6 +16144,7 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_HP_DEFNAME", SWIG_From_int((int)100)); PyDict_SetItemString(d,"STC_HP_OPERATOR", SWIG_From_int((int)101)); PyDict_SetItemString(d,"STC_HP_IDENTIFIER", SWIG_From_int((int)102)); + PyDict_SetItemString(d,"STC_HPHP_COMPLEX_VARIABLE", SWIG_From_int((int)104)); PyDict_SetItemString(d,"STC_HPA_START", SWIG_From_int((int)105)); PyDict_SetItemString(d,"STC_HPA_DEFAULT", SWIG_From_int((int)106)); PyDict_SetItemString(d,"STC_HPA_COMMENTLINE", SWIG_From_int((int)107)); @@ -15995,6 +16211,8 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_B_KEYWORD2", SWIG_From_int((int)10)); PyDict_SetItemString(d,"STC_B_KEYWORD3", SWIG_From_int((int)11)); PyDict_SetItemString(d,"STC_B_KEYWORD4", SWIG_From_int((int)12)); + PyDict_SetItemString(d,"STC_B_CONSTANT", SWIG_From_int((int)13)); + PyDict_SetItemString(d,"STC_B_ASM", SWIG_From_int((int)14)); PyDict_SetItemString(d,"STC_PROPS_DEFAULT", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_PROPS_COMMENT", SWIG_From_int((int)1)); PyDict_SetItemString(d,"STC_PROPS_SECTION", SWIG_From_int((int)2)); @@ -16044,6 +16262,7 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_ERR_IFC", SWIG_From_int((int)16)); PyDict_SetItemString(d,"STC_ERR_IFORT", SWIG_From_int((int)17)); PyDict_SetItemString(d,"STC_ERR_ABSF", SWIG_From_int((int)18)); + PyDict_SetItemString(d,"STC_ERR_TIDY", SWIG_From_int((int)19)); PyDict_SetItemString(d,"STC_BAT_DEFAULT", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_BAT_COMMENT", SWIG_From_int((int)1)); PyDict_SetItemString(d,"STC_BAT_WORD", SWIG_From_int((int)2)); @@ -16294,6 +16513,7 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_NSIS_IFDEFINEDEF", SWIG_From_int((int)11)); PyDict_SetItemString(d,"STC_NSIS_MACRODEF", SWIG_From_int((int)12)); PyDict_SetItemString(d,"STC_NSIS_STRINGVAR", SWIG_From_int((int)13)); + PyDict_SetItemString(d,"STC_NSIS_NUMBER", SWIG_From_int((int)14)); PyDict_SetItemString(d,"STC_MMIXAL_LEADWS", SWIG_From_int((int)0)); PyDict_SetItemString(d,"STC_MMIXAL_COMMENT", SWIG_From_int((int)1)); PyDict_SetItemString(d,"STC_MMIXAL_LABEL", SWIG_From_int((int)2)); @@ -16371,6 +16591,109 @@ SWIGEXPORT(void) SWIG_init(void) { PyDict_SetItemString(d,"STC_ERLANG_SEPARATOR", SWIG_From_int((int)12)); PyDict_SetItemString(d,"STC_ERLANG_NODE_NAME", SWIG_From_int((int)13)); PyDict_SetItemString(d,"STC_ERLANG_UNKNOWN", SWIG_From_int((int)31)); + PyDict_SetItemString(d,"STC_MSSQL_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_MSSQL_COMMENT", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_MSSQL_LINE_COMMENT", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_MSSQL_NUMBER", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_MSSQL_STRING", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_MSSQL_OPERATOR", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_MSSQL_IDENTIFIER", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_MSSQL_VARIABLE", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_MSSQL_COLUMN_NAME", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_MSSQL_STATEMENT", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_MSSQL_DATATYPE", SWIG_From_int((int)10)); + PyDict_SetItemString(d,"STC_MSSQL_SYSTABLE", SWIG_From_int((int)11)); + PyDict_SetItemString(d,"STC_MSSQL_GLOBAL_VARIABLE", SWIG_From_int((int)12)); + PyDict_SetItemString(d,"STC_MSSQL_FUNCTION", SWIG_From_int((int)13)); + PyDict_SetItemString(d,"STC_MSSQL_STORED_PROCEDURE", SWIG_From_int((int)14)); + PyDict_SetItemString(d,"STC_MSSQL_DEFAULT_PREF_DATATYPE", SWIG_From_int((int)15)); + PyDict_SetItemString(d,"STC_MSSQL_COLUMN_NAME_2", SWIG_From_int((int)16)); + PyDict_SetItemString(d,"STC_V_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_V_COMMENT", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_V_COMMENTLINE", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_V_COMMENTLINEBANG", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_V_NUMBER", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_V_WORD", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_V_STRING", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_V_WORD2", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_V_WORD3", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_V_PREPROCESSOR", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_V_OPERATOR", SWIG_From_int((int)10)); + PyDict_SetItemString(d,"STC_V_IDENTIFIER", SWIG_From_int((int)11)); + PyDict_SetItemString(d,"STC_V_STRINGEOL", SWIG_From_int((int)12)); + PyDict_SetItemString(d,"STC_V_USER", SWIG_From_int((int)19)); + PyDict_SetItemString(d,"STC_KIX_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_KIX_COMMENT", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_KIX_STRING1", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_KIX_STRING2", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_KIX_NUMBER", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_KIX_VAR", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_KIX_MACRO", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_KIX_KEYWORD", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_KIX_FUNCTIONS", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_KIX_OPERATOR", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_KIX_IDENTIFIER", SWIG_From_int((int)31)); + PyDict_SetItemString(d,"STC_GC_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_GC_COMMENTLINE", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_GC_COMMENTBLOCK", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_GC_GLOBAL", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_GC_EVENT", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_GC_ATTRIBUTE", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_GC_CONTROL", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_GC_COMMAND", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_GC_STRING", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_GC_OPERATOR", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_SN_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_SN_CODE", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_SN_COMMENTLINE", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_SN_COMMENTLINEBANG", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_SN_NUMBER", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_SN_WORD", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_SN_STRING", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_SN_WORD2", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_SN_WORD3", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_SN_PREPROCESSOR", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_SN_OPERATOR", SWIG_From_int((int)10)); + PyDict_SetItemString(d,"STC_SN_IDENTIFIER", SWIG_From_int((int)11)); + PyDict_SetItemString(d,"STC_SN_STRINGEOL", SWIG_From_int((int)12)); + PyDict_SetItemString(d,"STC_SN_REGEXTAG", SWIG_From_int((int)13)); + PyDict_SetItemString(d,"STC_SN_SIGNAL", SWIG_From_int((int)14)); + PyDict_SetItemString(d,"STC_SN_USER", SWIG_From_int((int)19)); + PyDict_SetItemString(d,"STC_AU3_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_AU3_COMMENT", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_AU3_COMMENTBLOCK", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_AU3_NUMBER", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_AU3_FUNCTION", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_AU3_KEYWORD", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_AU3_MACRO", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_AU3_STRING", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_AU3_OPERATOR", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_AU3_VARIABLE", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_AU3_SENT", SWIG_From_int((int)10)); + PyDict_SetItemString(d,"STC_AU3_PREPROCESSOR", SWIG_From_int((int)11)); + PyDict_SetItemString(d,"STC_APDL_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_APDL_COMMENT", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_APDL_COMMENTBLOCK", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_APDL_NUMBER", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_APDL_STRING", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_APDL_WORD", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_APDL_COMMAND", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_APDL_PROCESSOR", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_APDL_FUNCTION", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_SH_DEFAULT", SWIG_From_int((int)0)); + PyDict_SetItemString(d,"STC_SH_ERROR", SWIG_From_int((int)1)); + PyDict_SetItemString(d,"STC_SH_COMMENTLINE", SWIG_From_int((int)2)); + PyDict_SetItemString(d,"STC_SH_NUMBER", SWIG_From_int((int)3)); + PyDict_SetItemString(d,"STC_SH_WORD", SWIG_From_int((int)4)); + PyDict_SetItemString(d,"STC_SH_STRING", SWIG_From_int((int)5)); + PyDict_SetItemString(d,"STC_SH_CHARACTER", SWIG_From_int((int)6)); + PyDict_SetItemString(d,"STC_SH_OPERATOR", SWIG_From_int((int)7)); + PyDict_SetItemString(d,"STC_SH_IDENTIFIER", SWIG_From_int((int)8)); + PyDict_SetItemString(d,"STC_SH_SCALAR", SWIG_From_int((int)9)); + PyDict_SetItemString(d,"STC_SH_PARAM", SWIG_From_int((int)10)); + PyDict_SetItemString(d,"STC_SH_BACKTICKS", SWIG_From_int((int)11)); + PyDict_SetItemString(d,"STC_SH_HERE_DELIM", SWIG_From_int((int)12)); + PyDict_SetItemString(d,"STC_SH_HERE_Q", SWIG_From_int((int)13)); PyDict_SetItemString(d,"STC_CMD_REDO", SWIG_From_int((int)2011)); PyDict_SetItemString(d,"STC_CMD_SELECTALL", SWIG_From_int((int)2013)); PyDict_SetItemString(d,"STC_CMD_UNDO", SWIG_From_int((int)2176));