]> git.saurik.com Git - wxWidgets.git/blame - wxPython/contrib/stc/mac/stc.py
Another package name fix
[wxWidgets.git] / wxPython / contrib / stc / mac / stc.py
CommitLineData
1bd55598 1# This file was created automatically by SWIG 1.3.29.
d14a1e28
RD
2# Don't modify this file, modify the SWIG interface instead.
3
a5ee0656
RD
4"""
5The `StyledTextCtrl` provides a text editor that can used as a syntax
6highlighting source code editor, or similar. Lexers for several programming
7languages are built-in.
8"""
9
d14a1e28 10import _stc
1bd55598
RD
11import new
12new_instancemethod = new.instancemethod
36ed4f51 13def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
1bd55598 14 if (name == "thisown"): return self.this.own(value)
36ed4f51 15 if (name == "this"):
1bd55598
RD
16 if type(value).__name__ == 'PySwigObject':
17 self.__dict__[name] = value
36ed4f51
RD
18 return
19 method = class_type.__swig_setmethods__.get(name,None)
20 if method: return method(self,value)
1bd55598 21 if (not static) or hasattr(self,name):
36ed4f51
RD
22 self.__dict__[name] = value
23 else:
24 raise AttributeError("You cannot add attributes to %s" % self)
25
26def _swig_setattr(self,class_type,name,value):
27 return _swig_setattr_nondynamic(self,class_type,name,value,0)
28
29def _swig_getattr(self,class_type,name):
1bd55598 30 if (name == "thisown"): return self.this.own()
36ed4f51
RD
31 method = class_type.__swig_getmethods__.get(name,None)
32 if method: return method(self)
33 raise AttributeError,name
34
1bd55598
RD
35def _swig_repr(self):
36 try: strthis = "proxy of " + self.this.__repr__()
37 except: strthis = ""
38 return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
39
36ed4f51
RD
40import types
41try:
42 _object = types.ObjectType
43 _newclass = 1
44except AttributeError:
45 class _object : pass
46 _newclass = 0
47del types
48
49
50def _swig_setattr_nondynamic_method(set):
51 def set_attr(self,name,value):
1bd55598
RD
52 if (name == "thisown"): return self.this.own(value)
53 if hasattr(self,name) or (name == "this"):
36ed4f51
RD
54 set(self,name,value)
55 else:
56 raise AttributeError("You cannot add attributes to %s" % self)
57 return set_attr
58
59
d55e5bfc
RD
60import _core
61import _misc
62wx = _core
d6c14a4c 63__docfilter__ = wx.__DocFilter(globals())
d14a1e28
RD
64STC_USE_DND = _stc.STC_USE_DND
65STC_USE_POPUP = _stc.STC_USE_POPUP
66STC_INVALID_POSITION = _stc.STC_INVALID_POSITION
67STC_START = _stc.STC_START
68STC_OPTIONAL_START = _stc.STC_OPTIONAL_START
69STC_LEXER_START = _stc.STC_LEXER_START
70STC_WS_INVISIBLE = _stc.STC_WS_INVISIBLE
71STC_WS_VISIBLEALWAYS = _stc.STC_WS_VISIBLEALWAYS
72STC_WS_VISIBLEAFTERINDENT = _stc.STC_WS_VISIBLEAFTERINDENT
73STC_EOL_CRLF = _stc.STC_EOL_CRLF
74STC_EOL_CR = _stc.STC_EOL_CR
75STC_EOL_LF = _stc.STC_EOL_LF
76STC_CP_UTF8 = _stc.STC_CP_UTF8
77STC_CP_DBCS = _stc.STC_CP_DBCS
78STC_MARKER_MAX = _stc.STC_MARKER_MAX
79STC_MARK_CIRCLE = _stc.STC_MARK_CIRCLE
80STC_MARK_ROUNDRECT = _stc.STC_MARK_ROUNDRECT
81STC_MARK_ARROW = _stc.STC_MARK_ARROW
82STC_MARK_SMALLRECT = _stc.STC_MARK_SMALLRECT
83STC_MARK_SHORTARROW = _stc.STC_MARK_SHORTARROW
84STC_MARK_EMPTY = _stc.STC_MARK_EMPTY
85STC_MARK_ARROWDOWN = _stc.STC_MARK_ARROWDOWN
86STC_MARK_MINUS = _stc.STC_MARK_MINUS
87STC_MARK_PLUS = _stc.STC_MARK_PLUS
88STC_MARK_VLINE = _stc.STC_MARK_VLINE
89STC_MARK_LCORNER = _stc.STC_MARK_LCORNER
90STC_MARK_TCORNER = _stc.STC_MARK_TCORNER
91STC_MARK_BOXPLUS = _stc.STC_MARK_BOXPLUS
92STC_MARK_BOXPLUSCONNECTED = _stc.STC_MARK_BOXPLUSCONNECTED
93STC_MARK_BOXMINUS = _stc.STC_MARK_BOXMINUS
94STC_MARK_BOXMINUSCONNECTED = _stc.STC_MARK_BOXMINUSCONNECTED
95STC_MARK_LCORNERCURVE = _stc.STC_MARK_LCORNERCURVE
96STC_MARK_TCORNERCURVE = _stc.STC_MARK_TCORNERCURVE
97STC_MARK_CIRCLEPLUS = _stc.STC_MARK_CIRCLEPLUS
98STC_MARK_CIRCLEPLUSCONNECTED = _stc.STC_MARK_CIRCLEPLUSCONNECTED
99STC_MARK_CIRCLEMINUS = _stc.STC_MARK_CIRCLEMINUS
100STC_MARK_CIRCLEMINUSCONNECTED = _stc.STC_MARK_CIRCLEMINUSCONNECTED
101STC_MARK_BACKGROUND = _stc.STC_MARK_BACKGROUND
102STC_MARK_DOTDOTDOT = _stc.STC_MARK_DOTDOTDOT
103STC_MARK_ARROWS = _stc.STC_MARK_ARROWS
104STC_MARK_PIXMAP = _stc.STC_MARK_PIXMAP
1bd55598 105STC_MARK_FULLRECT = _stc.STC_MARK_FULLRECT
d14a1e28
RD
106STC_MARK_CHARACTER = _stc.STC_MARK_CHARACTER
107STC_MARKNUM_FOLDEREND = _stc.STC_MARKNUM_FOLDEREND
108STC_MARKNUM_FOLDEROPENMID = _stc.STC_MARKNUM_FOLDEROPENMID
109STC_MARKNUM_FOLDERMIDTAIL = _stc.STC_MARKNUM_FOLDERMIDTAIL
110STC_MARKNUM_FOLDERTAIL = _stc.STC_MARKNUM_FOLDERTAIL
111STC_MARKNUM_FOLDERSUB = _stc.STC_MARKNUM_FOLDERSUB
112STC_MARKNUM_FOLDER = _stc.STC_MARKNUM_FOLDER
113STC_MARKNUM_FOLDEROPEN = _stc.STC_MARKNUM_FOLDEROPEN
114STC_MASK_FOLDERS = _stc.STC_MASK_FOLDERS
115STC_MARGIN_SYMBOL = _stc.STC_MARGIN_SYMBOL
116STC_MARGIN_NUMBER = _stc.STC_MARGIN_NUMBER
10044bf1
RD
117STC_MARGIN_BACK = _stc.STC_MARGIN_BACK
118STC_MARGIN_FORE = _stc.STC_MARGIN_FORE
d14a1e28
RD
119STC_STYLE_DEFAULT = _stc.STC_STYLE_DEFAULT
120STC_STYLE_LINENUMBER = _stc.STC_STYLE_LINENUMBER
121STC_STYLE_BRACELIGHT = _stc.STC_STYLE_BRACELIGHT
122STC_STYLE_BRACEBAD = _stc.STC_STYLE_BRACEBAD
123STC_STYLE_CONTROLCHAR = _stc.STC_STYLE_CONTROLCHAR
124STC_STYLE_INDENTGUIDE = _stc.STC_STYLE_INDENTGUIDE
10044bf1 125STC_STYLE_CALLTIP = _stc.STC_STYLE_CALLTIP
d14a1e28
RD
126STC_STYLE_LASTPREDEFINED = _stc.STC_STYLE_LASTPREDEFINED
127STC_STYLE_MAX = _stc.STC_STYLE_MAX
128STC_CHARSET_ANSI = _stc.STC_CHARSET_ANSI
129STC_CHARSET_DEFAULT = _stc.STC_CHARSET_DEFAULT
130STC_CHARSET_BALTIC = _stc.STC_CHARSET_BALTIC
131STC_CHARSET_CHINESEBIG5 = _stc.STC_CHARSET_CHINESEBIG5
132STC_CHARSET_EASTEUROPE = _stc.STC_CHARSET_EASTEUROPE
133STC_CHARSET_GB2312 = _stc.STC_CHARSET_GB2312
134STC_CHARSET_GREEK = _stc.STC_CHARSET_GREEK
135STC_CHARSET_HANGUL = _stc.STC_CHARSET_HANGUL
136STC_CHARSET_MAC = _stc.STC_CHARSET_MAC
137STC_CHARSET_OEM = _stc.STC_CHARSET_OEM
138STC_CHARSET_RUSSIAN = _stc.STC_CHARSET_RUSSIAN
1bd55598 139STC_CHARSET_CYRILLIC = _stc.STC_CHARSET_CYRILLIC
d14a1e28
RD
140STC_CHARSET_SHIFTJIS = _stc.STC_CHARSET_SHIFTJIS
141STC_CHARSET_SYMBOL = _stc.STC_CHARSET_SYMBOL
142STC_CHARSET_TURKISH = _stc.STC_CHARSET_TURKISH
143STC_CHARSET_JOHAB = _stc.STC_CHARSET_JOHAB
144STC_CHARSET_HEBREW = _stc.STC_CHARSET_HEBREW
145STC_CHARSET_ARABIC = _stc.STC_CHARSET_ARABIC
146STC_CHARSET_VIETNAMESE = _stc.STC_CHARSET_VIETNAMESE
147STC_CHARSET_THAI = _stc.STC_CHARSET_THAI
1bd55598 148STC_CHARSET_8859_15 = _stc.STC_CHARSET_8859_15
d14a1e28
RD
149STC_CASE_MIXED = _stc.STC_CASE_MIXED
150STC_CASE_UPPER = _stc.STC_CASE_UPPER
151STC_CASE_LOWER = _stc.STC_CASE_LOWER
152STC_INDIC_MAX = _stc.STC_INDIC_MAX
153STC_INDIC_PLAIN = _stc.STC_INDIC_PLAIN
154STC_INDIC_SQUIGGLE = _stc.STC_INDIC_SQUIGGLE
155STC_INDIC_TT = _stc.STC_INDIC_TT
156STC_INDIC_DIAGONAL = _stc.STC_INDIC_DIAGONAL
157STC_INDIC_STRIKE = _stc.STC_INDIC_STRIKE
158STC_INDIC_HIDDEN = _stc.STC_INDIC_HIDDEN
96b3fa7c 159STC_INDIC_BOX = _stc.STC_INDIC_BOX
10044bf1 160STC_INDIC_ROUNDBOX = _stc.STC_INDIC_ROUNDBOX
d14a1e28
RD
161STC_INDIC0_MASK = _stc.STC_INDIC0_MASK
162STC_INDIC1_MASK = _stc.STC_INDIC1_MASK
163STC_INDIC2_MASK = _stc.STC_INDIC2_MASK
164STC_INDICS_MASK = _stc.STC_INDICS_MASK
165STC_PRINT_NORMAL = _stc.STC_PRINT_NORMAL
166STC_PRINT_INVERTLIGHT = _stc.STC_PRINT_INVERTLIGHT
167STC_PRINT_BLACKONWHITE = _stc.STC_PRINT_BLACKONWHITE
168STC_PRINT_COLOURONWHITE = _stc.STC_PRINT_COLOURONWHITE
169STC_PRINT_COLOURONWHITEDEFAULTBG = _stc.STC_PRINT_COLOURONWHITEDEFAULTBG
170STC_FIND_WHOLEWORD = _stc.STC_FIND_WHOLEWORD
171STC_FIND_MATCHCASE = _stc.STC_FIND_MATCHCASE
172STC_FIND_WORDSTART = _stc.STC_FIND_WORDSTART
173STC_FIND_REGEXP = _stc.STC_FIND_REGEXP
174STC_FIND_POSIX = _stc.STC_FIND_POSIX
175STC_FOLDLEVELBASE = _stc.STC_FOLDLEVELBASE
176STC_FOLDLEVELWHITEFLAG = _stc.STC_FOLDLEVELWHITEFLAG
177STC_FOLDLEVELHEADERFLAG = _stc.STC_FOLDLEVELHEADERFLAG
178STC_FOLDLEVELBOXHEADERFLAG = _stc.STC_FOLDLEVELBOXHEADERFLAG
179STC_FOLDLEVELBOXFOOTERFLAG = _stc.STC_FOLDLEVELBOXFOOTERFLAG
180STC_FOLDLEVELCONTRACTED = _stc.STC_FOLDLEVELCONTRACTED
181STC_FOLDLEVELUNINDENT = _stc.STC_FOLDLEVELUNINDENT
182STC_FOLDLEVELNUMBERMASK = _stc.STC_FOLDLEVELNUMBERMASK
183STC_FOLDFLAG_LINEBEFORE_EXPANDED = _stc.STC_FOLDFLAG_LINEBEFORE_EXPANDED
184STC_FOLDFLAG_LINEBEFORE_CONTRACTED = _stc.STC_FOLDFLAG_LINEBEFORE_CONTRACTED
185STC_FOLDFLAG_LINEAFTER_EXPANDED = _stc.STC_FOLDFLAG_LINEAFTER_EXPANDED
186STC_FOLDFLAG_LINEAFTER_CONTRACTED = _stc.STC_FOLDFLAG_LINEAFTER_CONTRACTED
187STC_FOLDFLAG_LEVELNUMBERS = _stc.STC_FOLDFLAG_LEVELNUMBERS
188STC_FOLDFLAG_BOX = _stc.STC_FOLDFLAG_BOX
189STC_TIME_FOREVER = _stc.STC_TIME_FOREVER
190STC_WRAP_NONE = _stc.STC_WRAP_NONE
191STC_WRAP_WORD = _stc.STC_WRAP_WORD
1bd55598 192STC_WRAP_CHAR = _stc.STC_WRAP_CHAR
5e483524
RD
193STC_WRAPVISUALFLAG_NONE = _stc.STC_WRAPVISUALFLAG_NONE
194STC_WRAPVISUALFLAG_END = _stc.STC_WRAPVISUALFLAG_END
195STC_WRAPVISUALFLAG_START = _stc.STC_WRAPVISUALFLAG_START
196STC_WRAPVISUALFLAGLOC_DEFAULT = _stc.STC_WRAPVISUALFLAGLOC_DEFAULT
197STC_WRAPVISUALFLAGLOC_END_BY_TEXT = _stc.STC_WRAPVISUALFLAGLOC_END_BY_TEXT
198STC_WRAPVISUALFLAGLOC_START_BY_TEXT = _stc.STC_WRAPVISUALFLAGLOC_START_BY_TEXT
d14a1e28
RD
199STC_CACHE_NONE = _stc.STC_CACHE_NONE
200STC_CACHE_CARET = _stc.STC_CACHE_CARET
201STC_CACHE_PAGE = _stc.STC_CACHE_PAGE
202STC_CACHE_DOCUMENT = _stc.STC_CACHE_DOCUMENT
203STC_EDGE_NONE = _stc.STC_EDGE_NONE
204STC_EDGE_LINE = _stc.STC_EDGE_LINE
205STC_EDGE_BACKGROUND = _stc.STC_EDGE_BACKGROUND
206STC_CURSORNORMAL = _stc.STC_CURSORNORMAL
207STC_CURSORWAIT = _stc.STC_CURSORWAIT
208STC_VISIBLE_SLOP = _stc.STC_VISIBLE_SLOP
209STC_VISIBLE_STRICT = _stc.STC_VISIBLE_STRICT
210STC_CARET_SLOP = _stc.STC_CARET_SLOP
211STC_CARET_STRICT = _stc.STC_CARET_STRICT
212STC_CARET_JUMPS = _stc.STC_CARET_JUMPS
213STC_CARET_EVEN = _stc.STC_CARET_EVEN
96b3fa7c
RD
214STC_SEL_STREAM = _stc.STC_SEL_STREAM
215STC_SEL_RECTANGLE = _stc.STC_SEL_RECTANGLE
216STC_SEL_LINES = _stc.STC_SEL_LINES
10044bf1
RD
217STC_ALPHA_TRANSPARENT = _stc.STC_ALPHA_TRANSPARENT
218STC_ALPHA_OPAQUE = _stc.STC_ALPHA_OPAQUE
219STC_ALPHA_NOALPHA = _stc.STC_ALPHA_NOALPHA
d14a1e28
RD
220STC_KEYWORDSET_MAX = _stc.STC_KEYWORDSET_MAX
221STC_MOD_INSERTTEXT = _stc.STC_MOD_INSERTTEXT
222STC_MOD_DELETETEXT = _stc.STC_MOD_DELETETEXT
223STC_MOD_CHANGESTYLE = _stc.STC_MOD_CHANGESTYLE
224STC_MOD_CHANGEFOLD = _stc.STC_MOD_CHANGEFOLD
225STC_PERFORMED_USER = _stc.STC_PERFORMED_USER
226STC_PERFORMED_UNDO = _stc.STC_PERFORMED_UNDO
227STC_PERFORMED_REDO = _stc.STC_PERFORMED_REDO
1bd55598 228STC_MULTISTEPUNDOREDO = _stc.STC_MULTISTEPUNDOREDO
d14a1e28
RD
229STC_LASTSTEPINUNDOREDO = _stc.STC_LASTSTEPINUNDOREDO
230STC_MOD_CHANGEMARKER = _stc.STC_MOD_CHANGEMARKER
231STC_MOD_BEFOREINSERT = _stc.STC_MOD_BEFOREINSERT
232STC_MOD_BEFOREDELETE = _stc.STC_MOD_BEFOREDELETE
1bd55598 233STC_MULTILINEUNDOREDO = _stc.STC_MULTILINEUNDOREDO
d14a1e28
RD
234STC_MODEVENTMASKALL = _stc.STC_MODEVENTMASKALL
235STC_KEY_DOWN = _stc.STC_KEY_DOWN
236STC_KEY_UP = _stc.STC_KEY_UP
237STC_KEY_LEFT = _stc.STC_KEY_LEFT
238STC_KEY_RIGHT = _stc.STC_KEY_RIGHT
239STC_KEY_HOME = _stc.STC_KEY_HOME
240STC_KEY_END = _stc.STC_KEY_END
241STC_KEY_PRIOR = _stc.STC_KEY_PRIOR
242STC_KEY_NEXT = _stc.STC_KEY_NEXT
243STC_KEY_DELETE = _stc.STC_KEY_DELETE
244STC_KEY_INSERT = _stc.STC_KEY_INSERT
245STC_KEY_ESCAPE = _stc.STC_KEY_ESCAPE
246STC_KEY_BACK = _stc.STC_KEY_BACK
247STC_KEY_TAB = _stc.STC_KEY_TAB
248STC_KEY_RETURN = _stc.STC_KEY_RETURN
249STC_KEY_ADD = _stc.STC_KEY_ADD
250STC_KEY_SUBTRACT = _stc.STC_KEY_SUBTRACT
251STC_KEY_DIVIDE = _stc.STC_KEY_DIVIDE
1bd55598 252STC_SCMOD_NORM = _stc.STC_SCMOD_NORM
d14a1e28
RD
253STC_SCMOD_SHIFT = _stc.STC_SCMOD_SHIFT
254STC_SCMOD_CTRL = _stc.STC_SCMOD_CTRL
255STC_SCMOD_ALT = _stc.STC_SCMOD_ALT
256STC_LEX_CONTAINER = _stc.STC_LEX_CONTAINER
257STC_LEX_NULL = _stc.STC_LEX_NULL
258STC_LEX_PYTHON = _stc.STC_LEX_PYTHON
259STC_LEX_CPP = _stc.STC_LEX_CPP
260STC_LEX_HTML = _stc.STC_LEX_HTML
261STC_LEX_XML = _stc.STC_LEX_XML
262STC_LEX_PERL = _stc.STC_LEX_PERL
263STC_LEX_SQL = _stc.STC_LEX_SQL
264STC_LEX_VB = _stc.STC_LEX_VB
265STC_LEX_PROPERTIES = _stc.STC_LEX_PROPERTIES
266STC_LEX_ERRORLIST = _stc.STC_LEX_ERRORLIST
267STC_LEX_MAKEFILE = _stc.STC_LEX_MAKEFILE
268STC_LEX_BATCH = _stc.STC_LEX_BATCH
269STC_LEX_XCODE = _stc.STC_LEX_XCODE
270STC_LEX_LATEX = _stc.STC_LEX_LATEX
271STC_LEX_LUA = _stc.STC_LEX_LUA
272STC_LEX_DIFF = _stc.STC_LEX_DIFF
273STC_LEX_CONF = _stc.STC_LEX_CONF
274STC_LEX_PASCAL = _stc.STC_LEX_PASCAL
275STC_LEX_AVE = _stc.STC_LEX_AVE
276STC_LEX_ADA = _stc.STC_LEX_ADA
277STC_LEX_LISP = _stc.STC_LEX_LISP
278STC_LEX_RUBY = _stc.STC_LEX_RUBY
279STC_LEX_EIFFEL = _stc.STC_LEX_EIFFEL
280STC_LEX_EIFFELKW = _stc.STC_LEX_EIFFELKW
281STC_LEX_TCL = _stc.STC_LEX_TCL
282STC_LEX_NNCRONTAB = _stc.STC_LEX_NNCRONTAB
283STC_LEX_BULLANT = _stc.STC_LEX_BULLANT
284STC_LEX_VBSCRIPT = _stc.STC_LEX_VBSCRIPT
d14a1e28
RD
285STC_LEX_BAAN = _stc.STC_LEX_BAAN
286STC_LEX_MATLAB = _stc.STC_LEX_MATLAB
287STC_LEX_SCRIPTOL = _stc.STC_LEX_SCRIPTOL
288STC_LEX_ASM = _stc.STC_LEX_ASM
289STC_LEX_CPPNOCASE = _stc.STC_LEX_CPPNOCASE
290STC_LEX_FORTRAN = _stc.STC_LEX_FORTRAN
291STC_LEX_F77 = _stc.STC_LEX_F77
292STC_LEX_CSS = _stc.STC_LEX_CSS
293STC_LEX_POV = _stc.STC_LEX_POV
294STC_LEX_LOUT = _stc.STC_LEX_LOUT
295STC_LEX_ESCRIPT = _stc.STC_LEX_ESCRIPT
296STC_LEX_PS = _stc.STC_LEX_PS
297STC_LEX_NSIS = _stc.STC_LEX_NSIS
298STC_LEX_MMIXAL = _stc.STC_LEX_MMIXAL
96b3fa7c
RD
299STC_LEX_CLW = _stc.STC_LEX_CLW
300STC_LEX_CLWNOCASE = _stc.STC_LEX_CLWNOCASE
301STC_LEX_LOT = _stc.STC_LEX_LOT
302STC_LEX_YAML = _stc.STC_LEX_YAML
303STC_LEX_TEX = _stc.STC_LEX_TEX
304STC_LEX_METAPOST = _stc.STC_LEX_METAPOST
305STC_LEX_POWERBASIC = _stc.STC_LEX_POWERBASIC
306STC_LEX_FORTH = _stc.STC_LEX_FORTH
307STC_LEX_ERLANG = _stc.STC_LEX_ERLANG
308STC_LEX_OCTAVE = _stc.STC_LEX_OCTAVE
5e483524
RD
309STC_LEX_MSSQL = _stc.STC_LEX_MSSQL
310STC_LEX_VERILOG = _stc.STC_LEX_VERILOG
311STC_LEX_KIX = _stc.STC_LEX_KIX
312STC_LEX_GUI4CLI = _stc.STC_LEX_GUI4CLI
313STC_LEX_SPECMAN = _stc.STC_LEX_SPECMAN
314STC_LEX_AU3 = _stc.STC_LEX_AU3
315STC_LEX_APDL = _stc.STC_LEX_APDL
316STC_LEX_BASH = _stc.STC_LEX_BASH
53aa7709
RD
317STC_LEX_ASN1 = _stc.STC_LEX_ASN1
318STC_LEX_VHDL = _stc.STC_LEX_VHDL
1bd55598
RD
319STC_LEX_CAML = _stc.STC_LEX_CAML
320STC_LEX_BLITZBASIC = _stc.STC_LEX_BLITZBASIC
321STC_LEX_PUREBASIC = _stc.STC_LEX_PUREBASIC
322STC_LEX_HASKELL = _stc.STC_LEX_HASKELL
323STC_LEX_PHPSCRIPT = _stc.STC_LEX_PHPSCRIPT
324STC_LEX_TADS3 = _stc.STC_LEX_TADS3
325STC_LEX_REBOL = _stc.STC_LEX_REBOL
326STC_LEX_SMALLTALK = _stc.STC_LEX_SMALLTALK
327STC_LEX_FLAGSHIP = _stc.STC_LEX_FLAGSHIP
328STC_LEX_CSOUND = _stc.STC_LEX_CSOUND
329STC_LEX_FREEBASIC = _stc.STC_LEX_FREEBASIC
10044bf1
RD
330STC_LEX_INNOSETUP = _stc.STC_LEX_INNOSETUP
331STC_LEX_OPAL = _stc.STC_LEX_OPAL
332STC_LEX_SPICE = _stc.STC_LEX_SPICE
d14a1e28
RD
333STC_LEX_AUTOMATIC = _stc.STC_LEX_AUTOMATIC
334STC_P_DEFAULT = _stc.STC_P_DEFAULT
335STC_P_COMMENTLINE = _stc.STC_P_COMMENTLINE
336STC_P_NUMBER = _stc.STC_P_NUMBER
337STC_P_STRING = _stc.STC_P_STRING
338STC_P_CHARACTER = _stc.STC_P_CHARACTER
339STC_P_WORD = _stc.STC_P_WORD
340STC_P_TRIPLE = _stc.STC_P_TRIPLE
341STC_P_TRIPLEDOUBLE = _stc.STC_P_TRIPLEDOUBLE
342STC_P_CLASSNAME = _stc.STC_P_CLASSNAME
343STC_P_DEFNAME = _stc.STC_P_DEFNAME
344STC_P_OPERATOR = _stc.STC_P_OPERATOR
345STC_P_IDENTIFIER = _stc.STC_P_IDENTIFIER
346STC_P_COMMENTBLOCK = _stc.STC_P_COMMENTBLOCK
347STC_P_STRINGEOL = _stc.STC_P_STRINGEOL
1bd55598
RD
348STC_P_WORD2 = _stc.STC_P_WORD2
349STC_P_DECORATOR = _stc.STC_P_DECORATOR
d14a1e28
RD
350STC_C_DEFAULT = _stc.STC_C_DEFAULT
351STC_C_COMMENT = _stc.STC_C_COMMENT
352STC_C_COMMENTLINE = _stc.STC_C_COMMENTLINE
353STC_C_COMMENTDOC = _stc.STC_C_COMMENTDOC
354STC_C_NUMBER = _stc.STC_C_NUMBER
355STC_C_WORD = _stc.STC_C_WORD
356STC_C_STRING = _stc.STC_C_STRING
357STC_C_CHARACTER = _stc.STC_C_CHARACTER
358STC_C_UUID = _stc.STC_C_UUID
359STC_C_PREPROCESSOR = _stc.STC_C_PREPROCESSOR
360STC_C_OPERATOR = _stc.STC_C_OPERATOR
361STC_C_IDENTIFIER = _stc.STC_C_IDENTIFIER
362STC_C_STRINGEOL = _stc.STC_C_STRINGEOL
363STC_C_VERBATIM = _stc.STC_C_VERBATIM
364STC_C_REGEX = _stc.STC_C_REGEX
365STC_C_COMMENTLINEDOC = _stc.STC_C_COMMENTLINEDOC
366STC_C_WORD2 = _stc.STC_C_WORD2
367STC_C_COMMENTDOCKEYWORD = _stc.STC_C_COMMENTDOCKEYWORD
368STC_C_COMMENTDOCKEYWORDERROR = _stc.STC_C_COMMENTDOCKEYWORDERROR
369STC_C_GLOBALCLASS = _stc.STC_C_GLOBALCLASS
10044bf1
RD
370STC_TCL_DEFAULT = _stc.STC_TCL_DEFAULT
371STC_TCL_COMMENT = _stc.STC_TCL_COMMENT
372STC_TCL_COMMENTLINE = _stc.STC_TCL_COMMENTLINE
373STC_TCL_NUMBER = _stc.STC_TCL_NUMBER
374STC_TCL_WORD_IN_QUOTE = _stc.STC_TCL_WORD_IN_QUOTE
375STC_TCL_IN_QUOTE = _stc.STC_TCL_IN_QUOTE
376STC_TCL_OPERATOR = _stc.STC_TCL_OPERATOR
377STC_TCL_IDENTIFIER = _stc.STC_TCL_IDENTIFIER
378STC_TCL_SUBSTITUTION = _stc.STC_TCL_SUBSTITUTION
379STC_TCL_SUB_BRACE = _stc.STC_TCL_SUB_BRACE
380STC_TCL_MODIFIER = _stc.STC_TCL_MODIFIER
381STC_TCL_EXPAND = _stc.STC_TCL_EXPAND
382STC_TCL_WORD = _stc.STC_TCL_WORD
383STC_TCL_WORD2 = _stc.STC_TCL_WORD2
384STC_TCL_WORD3 = _stc.STC_TCL_WORD3
385STC_TCL_WORD4 = _stc.STC_TCL_WORD4
386STC_TCL_WORD5 = _stc.STC_TCL_WORD5
387STC_TCL_WORD6 = _stc.STC_TCL_WORD6
388STC_TCL_WORD7 = _stc.STC_TCL_WORD7
389STC_TCL_WORD8 = _stc.STC_TCL_WORD8
390STC_TCL_COMMENT_BOX = _stc.STC_TCL_COMMENT_BOX
391STC_TCL_BLOCK_COMMENT = _stc.STC_TCL_BLOCK_COMMENT
d14a1e28
RD
392STC_H_DEFAULT = _stc.STC_H_DEFAULT
393STC_H_TAG = _stc.STC_H_TAG
394STC_H_TAGUNKNOWN = _stc.STC_H_TAGUNKNOWN
395STC_H_ATTRIBUTE = _stc.STC_H_ATTRIBUTE
396STC_H_ATTRIBUTEUNKNOWN = _stc.STC_H_ATTRIBUTEUNKNOWN
397STC_H_NUMBER = _stc.STC_H_NUMBER
398STC_H_DOUBLESTRING = _stc.STC_H_DOUBLESTRING
399STC_H_SINGLESTRING = _stc.STC_H_SINGLESTRING
400STC_H_OTHER = _stc.STC_H_OTHER
401STC_H_COMMENT = _stc.STC_H_COMMENT
402STC_H_ENTITY = _stc.STC_H_ENTITY
403STC_H_TAGEND = _stc.STC_H_TAGEND
404STC_H_XMLSTART = _stc.STC_H_XMLSTART
405STC_H_XMLEND = _stc.STC_H_XMLEND
406STC_H_SCRIPT = _stc.STC_H_SCRIPT
407STC_H_ASP = _stc.STC_H_ASP
408STC_H_ASPAT = _stc.STC_H_ASPAT
409STC_H_CDATA = _stc.STC_H_CDATA
410STC_H_QUESTION = _stc.STC_H_QUESTION
411STC_H_VALUE = _stc.STC_H_VALUE
412STC_H_XCCOMMENT = _stc.STC_H_XCCOMMENT
413STC_H_SGML_DEFAULT = _stc.STC_H_SGML_DEFAULT
414STC_H_SGML_COMMAND = _stc.STC_H_SGML_COMMAND
415STC_H_SGML_1ST_PARAM = _stc.STC_H_SGML_1ST_PARAM
416STC_H_SGML_DOUBLESTRING = _stc.STC_H_SGML_DOUBLESTRING
417STC_H_SGML_SIMPLESTRING = _stc.STC_H_SGML_SIMPLESTRING
418STC_H_SGML_ERROR = _stc.STC_H_SGML_ERROR
419STC_H_SGML_SPECIAL = _stc.STC_H_SGML_SPECIAL
420STC_H_SGML_ENTITY = _stc.STC_H_SGML_ENTITY
421STC_H_SGML_COMMENT = _stc.STC_H_SGML_COMMENT
422STC_H_SGML_1ST_PARAM_COMMENT = _stc.STC_H_SGML_1ST_PARAM_COMMENT
423STC_H_SGML_BLOCK_DEFAULT = _stc.STC_H_SGML_BLOCK_DEFAULT
424STC_HJ_START = _stc.STC_HJ_START
425STC_HJ_DEFAULT = _stc.STC_HJ_DEFAULT
426STC_HJ_COMMENT = _stc.STC_HJ_COMMENT
427STC_HJ_COMMENTLINE = _stc.STC_HJ_COMMENTLINE
428STC_HJ_COMMENTDOC = _stc.STC_HJ_COMMENTDOC
429STC_HJ_NUMBER = _stc.STC_HJ_NUMBER
430STC_HJ_WORD = _stc.STC_HJ_WORD
431STC_HJ_KEYWORD = _stc.STC_HJ_KEYWORD
432STC_HJ_DOUBLESTRING = _stc.STC_HJ_DOUBLESTRING
433STC_HJ_SINGLESTRING = _stc.STC_HJ_SINGLESTRING
434STC_HJ_SYMBOLS = _stc.STC_HJ_SYMBOLS
435STC_HJ_STRINGEOL = _stc.STC_HJ_STRINGEOL
436STC_HJ_REGEX = _stc.STC_HJ_REGEX
437STC_HJA_START = _stc.STC_HJA_START
438STC_HJA_DEFAULT = _stc.STC_HJA_DEFAULT
439STC_HJA_COMMENT = _stc.STC_HJA_COMMENT
440STC_HJA_COMMENTLINE = _stc.STC_HJA_COMMENTLINE
441STC_HJA_COMMENTDOC = _stc.STC_HJA_COMMENTDOC
442STC_HJA_NUMBER = _stc.STC_HJA_NUMBER
443STC_HJA_WORD = _stc.STC_HJA_WORD
444STC_HJA_KEYWORD = _stc.STC_HJA_KEYWORD
445STC_HJA_DOUBLESTRING = _stc.STC_HJA_DOUBLESTRING
446STC_HJA_SINGLESTRING = _stc.STC_HJA_SINGLESTRING
447STC_HJA_SYMBOLS = _stc.STC_HJA_SYMBOLS
448STC_HJA_STRINGEOL = _stc.STC_HJA_STRINGEOL
449STC_HJA_REGEX = _stc.STC_HJA_REGEX
450STC_HB_START = _stc.STC_HB_START
451STC_HB_DEFAULT = _stc.STC_HB_DEFAULT
452STC_HB_COMMENTLINE = _stc.STC_HB_COMMENTLINE
453STC_HB_NUMBER = _stc.STC_HB_NUMBER
454STC_HB_WORD = _stc.STC_HB_WORD
455STC_HB_STRING = _stc.STC_HB_STRING
456STC_HB_IDENTIFIER = _stc.STC_HB_IDENTIFIER
457STC_HB_STRINGEOL = _stc.STC_HB_STRINGEOL
458STC_HBA_START = _stc.STC_HBA_START
459STC_HBA_DEFAULT = _stc.STC_HBA_DEFAULT
460STC_HBA_COMMENTLINE = _stc.STC_HBA_COMMENTLINE
461STC_HBA_NUMBER = _stc.STC_HBA_NUMBER
462STC_HBA_WORD = _stc.STC_HBA_WORD
463STC_HBA_STRING = _stc.STC_HBA_STRING
464STC_HBA_IDENTIFIER = _stc.STC_HBA_IDENTIFIER
465STC_HBA_STRINGEOL = _stc.STC_HBA_STRINGEOL
466STC_HP_START = _stc.STC_HP_START
467STC_HP_DEFAULT = _stc.STC_HP_DEFAULT
468STC_HP_COMMENTLINE = _stc.STC_HP_COMMENTLINE
469STC_HP_NUMBER = _stc.STC_HP_NUMBER
470STC_HP_STRING = _stc.STC_HP_STRING
471STC_HP_CHARACTER = _stc.STC_HP_CHARACTER
472STC_HP_WORD = _stc.STC_HP_WORD
473STC_HP_TRIPLE = _stc.STC_HP_TRIPLE
474STC_HP_TRIPLEDOUBLE = _stc.STC_HP_TRIPLEDOUBLE
475STC_HP_CLASSNAME = _stc.STC_HP_CLASSNAME
476STC_HP_DEFNAME = _stc.STC_HP_DEFNAME
477STC_HP_OPERATOR = _stc.STC_HP_OPERATOR
478STC_HP_IDENTIFIER = _stc.STC_HP_IDENTIFIER
5e483524 479STC_HPHP_COMPLEX_VARIABLE = _stc.STC_HPHP_COMPLEX_VARIABLE
d14a1e28
RD
480STC_HPA_START = _stc.STC_HPA_START
481STC_HPA_DEFAULT = _stc.STC_HPA_DEFAULT
482STC_HPA_COMMENTLINE = _stc.STC_HPA_COMMENTLINE
483STC_HPA_NUMBER = _stc.STC_HPA_NUMBER
484STC_HPA_STRING = _stc.STC_HPA_STRING
485STC_HPA_CHARACTER = _stc.STC_HPA_CHARACTER
486STC_HPA_WORD = _stc.STC_HPA_WORD
487STC_HPA_TRIPLE = _stc.STC_HPA_TRIPLE
488STC_HPA_TRIPLEDOUBLE = _stc.STC_HPA_TRIPLEDOUBLE
489STC_HPA_CLASSNAME = _stc.STC_HPA_CLASSNAME
490STC_HPA_DEFNAME = _stc.STC_HPA_DEFNAME
491STC_HPA_OPERATOR = _stc.STC_HPA_OPERATOR
492STC_HPA_IDENTIFIER = _stc.STC_HPA_IDENTIFIER
493STC_HPHP_DEFAULT = _stc.STC_HPHP_DEFAULT
494STC_HPHP_HSTRING = _stc.STC_HPHP_HSTRING
495STC_HPHP_SIMPLESTRING = _stc.STC_HPHP_SIMPLESTRING
496STC_HPHP_WORD = _stc.STC_HPHP_WORD
497STC_HPHP_NUMBER = _stc.STC_HPHP_NUMBER
498STC_HPHP_VARIABLE = _stc.STC_HPHP_VARIABLE
499STC_HPHP_COMMENT = _stc.STC_HPHP_COMMENT
500STC_HPHP_COMMENTLINE = _stc.STC_HPHP_COMMENTLINE
501STC_HPHP_HSTRING_VARIABLE = _stc.STC_HPHP_HSTRING_VARIABLE
502STC_HPHP_OPERATOR = _stc.STC_HPHP_OPERATOR
503STC_PL_DEFAULT = _stc.STC_PL_DEFAULT
504STC_PL_ERROR = _stc.STC_PL_ERROR
505STC_PL_COMMENTLINE = _stc.STC_PL_COMMENTLINE
506STC_PL_POD = _stc.STC_PL_POD
507STC_PL_NUMBER = _stc.STC_PL_NUMBER
508STC_PL_WORD = _stc.STC_PL_WORD
509STC_PL_STRING = _stc.STC_PL_STRING
510STC_PL_CHARACTER = _stc.STC_PL_CHARACTER
511STC_PL_PUNCTUATION = _stc.STC_PL_PUNCTUATION
512STC_PL_PREPROCESSOR = _stc.STC_PL_PREPROCESSOR
513STC_PL_OPERATOR = _stc.STC_PL_OPERATOR
514STC_PL_IDENTIFIER = _stc.STC_PL_IDENTIFIER
515STC_PL_SCALAR = _stc.STC_PL_SCALAR
516STC_PL_ARRAY = _stc.STC_PL_ARRAY
517STC_PL_HASH = _stc.STC_PL_HASH
518STC_PL_SYMBOLTABLE = _stc.STC_PL_SYMBOLTABLE
1bd55598 519STC_PL_VARIABLE_INDEXER = _stc.STC_PL_VARIABLE_INDEXER
d14a1e28
RD
520STC_PL_REGEX = _stc.STC_PL_REGEX
521STC_PL_REGSUBST = _stc.STC_PL_REGSUBST
522STC_PL_LONGQUOTE = _stc.STC_PL_LONGQUOTE
523STC_PL_BACKTICKS = _stc.STC_PL_BACKTICKS
524STC_PL_DATASECTION = _stc.STC_PL_DATASECTION
525STC_PL_HERE_DELIM = _stc.STC_PL_HERE_DELIM
526STC_PL_HERE_Q = _stc.STC_PL_HERE_Q
527STC_PL_HERE_QQ = _stc.STC_PL_HERE_QQ
528STC_PL_HERE_QX = _stc.STC_PL_HERE_QX
529STC_PL_STRING_Q = _stc.STC_PL_STRING_Q
530STC_PL_STRING_QQ = _stc.STC_PL_STRING_QQ
531STC_PL_STRING_QX = _stc.STC_PL_STRING_QX
532STC_PL_STRING_QR = _stc.STC_PL_STRING_QR
533STC_PL_STRING_QW = _stc.STC_PL_STRING_QW
1bd55598
RD
534STC_PL_POD_VERB = _stc.STC_PL_POD_VERB
535STC_RB_DEFAULT = _stc.STC_RB_DEFAULT
536STC_RB_ERROR = _stc.STC_RB_ERROR
537STC_RB_COMMENTLINE = _stc.STC_RB_COMMENTLINE
538STC_RB_POD = _stc.STC_RB_POD
539STC_RB_NUMBER = _stc.STC_RB_NUMBER
540STC_RB_WORD = _stc.STC_RB_WORD
541STC_RB_STRING = _stc.STC_RB_STRING
542STC_RB_CHARACTER = _stc.STC_RB_CHARACTER
543STC_RB_CLASSNAME = _stc.STC_RB_CLASSNAME
544STC_RB_DEFNAME = _stc.STC_RB_DEFNAME
545STC_RB_OPERATOR = _stc.STC_RB_OPERATOR
546STC_RB_IDENTIFIER = _stc.STC_RB_IDENTIFIER
547STC_RB_REGEX = _stc.STC_RB_REGEX
548STC_RB_GLOBAL = _stc.STC_RB_GLOBAL
549STC_RB_SYMBOL = _stc.STC_RB_SYMBOL
550STC_RB_MODULE_NAME = _stc.STC_RB_MODULE_NAME
551STC_RB_INSTANCE_VAR = _stc.STC_RB_INSTANCE_VAR
552STC_RB_CLASS_VAR = _stc.STC_RB_CLASS_VAR
553STC_RB_BACKTICKS = _stc.STC_RB_BACKTICKS
554STC_RB_DATASECTION = _stc.STC_RB_DATASECTION
555STC_RB_HERE_DELIM = _stc.STC_RB_HERE_DELIM
556STC_RB_HERE_Q = _stc.STC_RB_HERE_Q
557STC_RB_HERE_QQ = _stc.STC_RB_HERE_QQ
558STC_RB_HERE_QX = _stc.STC_RB_HERE_QX
559STC_RB_STRING_Q = _stc.STC_RB_STRING_Q
560STC_RB_STRING_QQ = _stc.STC_RB_STRING_QQ
561STC_RB_STRING_QX = _stc.STC_RB_STRING_QX
562STC_RB_STRING_QR = _stc.STC_RB_STRING_QR
563STC_RB_STRING_QW = _stc.STC_RB_STRING_QW
564STC_RB_WORD_DEMOTED = _stc.STC_RB_WORD_DEMOTED
565STC_RB_STDIN = _stc.STC_RB_STDIN
566STC_RB_STDOUT = _stc.STC_RB_STDOUT
567STC_RB_STDERR = _stc.STC_RB_STDERR
568STC_RB_UPPER_BOUND = _stc.STC_RB_UPPER_BOUND
d14a1e28
RD
569STC_B_DEFAULT = _stc.STC_B_DEFAULT
570STC_B_COMMENT = _stc.STC_B_COMMENT
571STC_B_NUMBER = _stc.STC_B_NUMBER
572STC_B_KEYWORD = _stc.STC_B_KEYWORD
573STC_B_STRING = _stc.STC_B_STRING
574STC_B_PREPROCESSOR = _stc.STC_B_PREPROCESSOR
575STC_B_OPERATOR = _stc.STC_B_OPERATOR
576STC_B_IDENTIFIER = _stc.STC_B_IDENTIFIER
577STC_B_DATE = _stc.STC_B_DATE
96b3fa7c
RD
578STC_B_STRINGEOL = _stc.STC_B_STRINGEOL
579STC_B_KEYWORD2 = _stc.STC_B_KEYWORD2
580STC_B_KEYWORD3 = _stc.STC_B_KEYWORD3
581STC_B_KEYWORD4 = _stc.STC_B_KEYWORD4
5e483524
RD
582STC_B_CONSTANT = _stc.STC_B_CONSTANT
583STC_B_ASM = _stc.STC_B_ASM
1bd55598
RD
584STC_B_LABEL = _stc.STC_B_LABEL
585STC_B_ERROR = _stc.STC_B_ERROR
586STC_B_HEXNUMBER = _stc.STC_B_HEXNUMBER
587STC_B_BINNUMBER = _stc.STC_B_BINNUMBER
d14a1e28
RD
588STC_PROPS_DEFAULT = _stc.STC_PROPS_DEFAULT
589STC_PROPS_COMMENT = _stc.STC_PROPS_COMMENT
590STC_PROPS_SECTION = _stc.STC_PROPS_SECTION
591STC_PROPS_ASSIGNMENT = _stc.STC_PROPS_ASSIGNMENT
592STC_PROPS_DEFVAL = _stc.STC_PROPS_DEFVAL
10044bf1 593STC_PROPS_KEY = _stc.STC_PROPS_KEY
d14a1e28
RD
594STC_L_DEFAULT = _stc.STC_L_DEFAULT
595STC_L_COMMAND = _stc.STC_L_COMMAND
596STC_L_TAG = _stc.STC_L_TAG
597STC_L_MATH = _stc.STC_L_MATH
598STC_L_COMMENT = _stc.STC_L_COMMENT
599STC_LUA_DEFAULT = _stc.STC_LUA_DEFAULT
600STC_LUA_COMMENT = _stc.STC_LUA_COMMENT
601STC_LUA_COMMENTLINE = _stc.STC_LUA_COMMENTLINE
602STC_LUA_COMMENTDOC = _stc.STC_LUA_COMMENTDOC
603STC_LUA_NUMBER = _stc.STC_LUA_NUMBER
604STC_LUA_WORD = _stc.STC_LUA_WORD
605STC_LUA_STRING = _stc.STC_LUA_STRING
606STC_LUA_CHARACTER = _stc.STC_LUA_CHARACTER
607STC_LUA_LITERALSTRING = _stc.STC_LUA_LITERALSTRING
608STC_LUA_PREPROCESSOR = _stc.STC_LUA_PREPROCESSOR
609STC_LUA_OPERATOR = _stc.STC_LUA_OPERATOR
610STC_LUA_IDENTIFIER = _stc.STC_LUA_IDENTIFIER
611STC_LUA_STRINGEOL = _stc.STC_LUA_STRINGEOL
612STC_LUA_WORD2 = _stc.STC_LUA_WORD2
613STC_LUA_WORD3 = _stc.STC_LUA_WORD3
614STC_LUA_WORD4 = _stc.STC_LUA_WORD4
615STC_LUA_WORD5 = _stc.STC_LUA_WORD5
616STC_LUA_WORD6 = _stc.STC_LUA_WORD6
617STC_LUA_WORD7 = _stc.STC_LUA_WORD7
618STC_LUA_WORD8 = _stc.STC_LUA_WORD8
619STC_ERR_DEFAULT = _stc.STC_ERR_DEFAULT
620STC_ERR_PYTHON = _stc.STC_ERR_PYTHON
621STC_ERR_GCC = _stc.STC_ERR_GCC
622STC_ERR_MS = _stc.STC_ERR_MS
623STC_ERR_CMD = _stc.STC_ERR_CMD
624STC_ERR_BORLAND = _stc.STC_ERR_BORLAND
625STC_ERR_PERL = _stc.STC_ERR_PERL
626STC_ERR_NET = _stc.STC_ERR_NET
627STC_ERR_LUA = _stc.STC_ERR_LUA
628STC_ERR_CTAG = _stc.STC_ERR_CTAG
629STC_ERR_DIFF_CHANGED = _stc.STC_ERR_DIFF_CHANGED
630STC_ERR_DIFF_ADDITION = _stc.STC_ERR_DIFF_ADDITION
631STC_ERR_DIFF_DELETION = _stc.STC_ERR_DIFF_DELETION
632STC_ERR_DIFF_MESSAGE = _stc.STC_ERR_DIFF_MESSAGE
633STC_ERR_PHP = _stc.STC_ERR_PHP
634STC_ERR_ELF = _stc.STC_ERR_ELF
635STC_ERR_IFC = _stc.STC_ERR_IFC
96b3fa7c
RD
636STC_ERR_IFORT = _stc.STC_ERR_IFORT
637STC_ERR_ABSF = _stc.STC_ERR_ABSF
5e483524 638STC_ERR_TIDY = _stc.STC_ERR_TIDY
53aa7709 639STC_ERR_JAVA_STACK = _stc.STC_ERR_JAVA_STACK
d14a1e28
RD
640STC_BAT_DEFAULT = _stc.STC_BAT_DEFAULT
641STC_BAT_COMMENT = _stc.STC_BAT_COMMENT
642STC_BAT_WORD = _stc.STC_BAT_WORD
643STC_BAT_LABEL = _stc.STC_BAT_LABEL
644STC_BAT_HIDE = _stc.STC_BAT_HIDE
645STC_BAT_COMMAND = _stc.STC_BAT_COMMAND
646STC_BAT_IDENTIFIER = _stc.STC_BAT_IDENTIFIER
647STC_BAT_OPERATOR = _stc.STC_BAT_OPERATOR
648STC_MAKE_DEFAULT = _stc.STC_MAKE_DEFAULT
649STC_MAKE_COMMENT = _stc.STC_MAKE_COMMENT
650STC_MAKE_PREPROCESSOR = _stc.STC_MAKE_PREPROCESSOR
651STC_MAKE_IDENTIFIER = _stc.STC_MAKE_IDENTIFIER
652STC_MAKE_OPERATOR = _stc.STC_MAKE_OPERATOR
653STC_MAKE_TARGET = _stc.STC_MAKE_TARGET
654STC_MAKE_IDEOL = _stc.STC_MAKE_IDEOL
655STC_DIFF_DEFAULT = _stc.STC_DIFF_DEFAULT
656STC_DIFF_COMMENT = _stc.STC_DIFF_COMMENT
657STC_DIFF_COMMAND = _stc.STC_DIFF_COMMAND
658STC_DIFF_HEADER = _stc.STC_DIFF_HEADER
659STC_DIFF_POSITION = _stc.STC_DIFF_POSITION
660STC_DIFF_DELETED = _stc.STC_DIFF_DELETED
661STC_DIFF_ADDED = _stc.STC_DIFF_ADDED
662STC_CONF_DEFAULT = _stc.STC_CONF_DEFAULT
663STC_CONF_COMMENT = _stc.STC_CONF_COMMENT
664STC_CONF_NUMBER = _stc.STC_CONF_NUMBER
665STC_CONF_IDENTIFIER = _stc.STC_CONF_IDENTIFIER
666STC_CONF_EXTENSION = _stc.STC_CONF_EXTENSION
667STC_CONF_PARAMETER = _stc.STC_CONF_PARAMETER
668STC_CONF_STRING = _stc.STC_CONF_STRING
669STC_CONF_OPERATOR = _stc.STC_CONF_OPERATOR
670STC_CONF_IP = _stc.STC_CONF_IP
671STC_CONF_DIRECTIVE = _stc.STC_CONF_DIRECTIVE
672STC_AVE_DEFAULT = _stc.STC_AVE_DEFAULT
673STC_AVE_COMMENT = _stc.STC_AVE_COMMENT
674STC_AVE_NUMBER = _stc.STC_AVE_NUMBER
675STC_AVE_WORD = _stc.STC_AVE_WORD
676STC_AVE_STRING = _stc.STC_AVE_STRING
677STC_AVE_ENUM = _stc.STC_AVE_ENUM
678STC_AVE_STRINGEOL = _stc.STC_AVE_STRINGEOL
679STC_AVE_IDENTIFIER = _stc.STC_AVE_IDENTIFIER
680STC_AVE_OPERATOR = _stc.STC_AVE_OPERATOR
681STC_AVE_WORD1 = _stc.STC_AVE_WORD1
682STC_AVE_WORD2 = _stc.STC_AVE_WORD2
683STC_AVE_WORD3 = _stc.STC_AVE_WORD3
684STC_AVE_WORD4 = _stc.STC_AVE_WORD4
685STC_AVE_WORD5 = _stc.STC_AVE_WORD5
686STC_AVE_WORD6 = _stc.STC_AVE_WORD6
687STC_ADA_DEFAULT = _stc.STC_ADA_DEFAULT
688STC_ADA_WORD = _stc.STC_ADA_WORD
689STC_ADA_IDENTIFIER = _stc.STC_ADA_IDENTIFIER
690STC_ADA_NUMBER = _stc.STC_ADA_NUMBER
691STC_ADA_DELIMITER = _stc.STC_ADA_DELIMITER
692STC_ADA_CHARACTER = _stc.STC_ADA_CHARACTER
693STC_ADA_CHARACTEREOL = _stc.STC_ADA_CHARACTEREOL
694STC_ADA_STRING = _stc.STC_ADA_STRING
695STC_ADA_STRINGEOL = _stc.STC_ADA_STRINGEOL
696STC_ADA_LABEL = _stc.STC_ADA_LABEL
697STC_ADA_COMMENTLINE = _stc.STC_ADA_COMMENTLINE
698STC_ADA_ILLEGAL = _stc.STC_ADA_ILLEGAL
699STC_BAAN_DEFAULT = _stc.STC_BAAN_DEFAULT
700STC_BAAN_COMMENT = _stc.STC_BAAN_COMMENT
701STC_BAAN_COMMENTDOC = _stc.STC_BAAN_COMMENTDOC
702STC_BAAN_NUMBER = _stc.STC_BAAN_NUMBER
703STC_BAAN_WORD = _stc.STC_BAAN_WORD
704STC_BAAN_STRING = _stc.STC_BAAN_STRING
705STC_BAAN_PREPROCESSOR = _stc.STC_BAAN_PREPROCESSOR
706STC_BAAN_OPERATOR = _stc.STC_BAAN_OPERATOR
707STC_BAAN_IDENTIFIER = _stc.STC_BAAN_IDENTIFIER
708STC_BAAN_STRINGEOL = _stc.STC_BAAN_STRINGEOL
709STC_BAAN_WORD2 = _stc.STC_BAAN_WORD2
710STC_LISP_DEFAULT = _stc.STC_LISP_DEFAULT
711STC_LISP_COMMENT = _stc.STC_LISP_COMMENT
712STC_LISP_NUMBER = _stc.STC_LISP_NUMBER
713STC_LISP_KEYWORD = _stc.STC_LISP_KEYWORD
1bd55598
RD
714STC_LISP_KEYWORD_KW = _stc.STC_LISP_KEYWORD_KW
715STC_LISP_SYMBOL = _stc.STC_LISP_SYMBOL
d14a1e28
RD
716STC_LISP_STRING = _stc.STC_LISP_STRING
717STC_LISP_STRINGEOL = _stc.STC_LISP_STRINGEOL
718STC_LISP_IDENTIFIER = _stc.STC_LISP_IDENTIFIER
719STC_LISP_OPERATOR = _stc.STC_LISP_OPERATOR
1bd55598
RD
720STC_LISP_SPECIAL = _stc.STC_LISP_SPECIAL
721STC_LISP_MULTI_COMMENT = _stc.STC_LISP_MULTI_COMMENT
d14a1e28
RD
722STC_EIFFEL_DEFAULT = _stc.STC_EIFFEL_DEFAULT
723STC_EIFFEL_COMMENTLINE = _stc.STC_EIFFEL_COMMENTLINE
724STC_EIFFEL_NUMBER = _stc.STC_EIFFEL_NUMBER
725STC_EIFFEL_WORD = _stc.STC_EIFFEL_WORD
726STC_EIFFEL_STRING = _stc.STC_EIFFEL_STRING
727STC_EIFFEL_CHARACTER = _stc.STC_EIFFEL_CHARACTER
728STC_EIFFEL_OPERATOR = _stc.STC_EIFFEL_OPERATOR
729STC_EIFFEL_IDENTIFIER = _stc.STC_EIFFEL_IDENTIFIER
730STC_EIFFEL_STRINGEOL = _stc.STC_EIFFEL_STRINGEOL
731STC_NNCRONTAB_DEFAULT = _stc.STC_NNCRONTAB_DEFAULT
732STC_NNCRONTAB_COMMENT = _stc.STC_NNCRONTAB_COMMENT
733STC_NNCRONTAB_TASK = _stc.STC_NNCRONTAB_TASK
734STC_NNCRONTAB_SECTION = _stc.STC_NNCRONTAB_SECTION
735STC_NNCRONTAB_KEYWORD = _stc.STC_NNCRONTAB_KEYWORD
736STC_NNCRONTAB_MODIFIER = _stc.STC_NNCRONTAB_MODIFIER
737STC_NNCRONTAB_ASTERISK = _stc.STC_NNCRONTAB_ASTERISK
738STC_NNCRONTAB_NUMBER = _stc.STC_NNCRONTAB_NUMBER
739STC_NNCRONTAB_STRING = _stc.STC_NNCRONTAB_STRING
740STC_NNCRONTAB_ENVIRONMENT = _stc.STC_NNCRONTAB_ENVIRONMENT
741STC_NNCRONTAB_IDENTIFIER = _stc.STC_NNCRONTAB_IDENTIFIER
96b3fa7c
RD
742STC_FORTH_DEFAULT = _stc.STC_FORTH_DEFAULT
743STC_FORTH_COMMENT = _stc.STC_FORTH_COMMENT
744STC_FORTH_COMMENT_ML = _stc.STC_FORTH_COMMENT_ML
745STC_FORTH_IDENTIFIER = _stc.STC_FORTH_IDENTIFIER
746STC_FORTH_CONTROL = _stc.STC_FORTH_CONTROL
747STC_FORTH_KEYWORD = _stc.STC_FORTH_KEYWORD
748STC_FORTH_DEFWORD = _stc.STC_FORTH_DEFWORD
749STC_FORTH_PREWORD1 = _stc.STC_FORTH_PREWORD1
750STC_FORTH_PREWORD2 = _stc.STC_FORTH_PREWORD2
751STC_FORTH_NUMBER = _stc.STC_FORTH_NUMBER
752STC_FORTH_STRING = _stc.STC_FORTH_STRING
753STC_FORTH_LOCALE = _stc.STC_FORTH_LOCALE
d14a1e28
RD
754STC_MATLAB_DEFAULT = _stc.STC_MATLAB_DEFAULT
755STC_MATLAB_COMMENT = _stc.STC_MATLAB_COMMENT
756STC_MATLAB_COMMAND = _stc.STC_MATLAB_COMMAND
757STC_MATLAB_NUMBER = _stc.STC_MATLAB_NUMBER
758STC_MATLAB_KEYWORD = _stc.STC_MATLAB_KEYWORD
759STC_MATLAB_STRING = _stc.STC_MATLAB_STRING
760STC_MATLAB_OPERATOR = _stc.STC_MATLAB_OPERATOR
761STC_MATLAB_IDENTIFIER = _stc.STC_MATLAB_IDENTIFIER
96b3fa7c 762STC_MATLAB_DOUBLEQUOTESTRING = _stc.STC_MATLAB_DOUBLEQUOTESTRING
d14a1e28 763STC_SCRIPTOL_DEFAULT = _stc.STC_SCRIPTOL_DEFAULT
96b3fa7c 764STC_SCRIPTOL_WHITE = _stc.STC_SCRIPTOL_WHITE
d14a1e28 765STC_SCRIPTOL_COMMENTLINE = _stc.STC_SCRIPTOL_COMMENTLINE
96b3fa7c
RD
766STC_SCRIPTOL_PERSISTENT = _stc.STC_SCRIPTOL_PERSISTENT
767STC_SCRIPTOL_CSTYLE = _stc.STC_SCRIPTOL_CSTYLE
768STC_SCRIPTOL_COMMENTBLOCK = _stc.STC_SCRIPTOL_COMMENTBLOCK
d14a1e28 769STC_SCRIPTOL_NUMBER = _stc.STC_SCRIPTOL_NUMBER
d14a1e28
RD
770STC_SCRIPTOL_STRING = _stc.STC_SCRIPTOL_STRING
771STC_SCRIPTOL_CHARACTER = _stc.STC_SCRIPTOL_CHARACTER
96b3fa7c
RD
772STC_SCRIPTOL_STRINGEOL = _stc.STC_SCRIPTOL_STRINGEOL
773STC_SCRIPTOL_KEYWORD = _stc.STC_SCRIPTOL_KEYWORD
d14a1e28
RD
774STC_SCRIPTOL_OPERATOR = _stc.STC_SCRIPTOL_OPERATOR
775STC_SCRIPTOL_IDENTIFIER = _stc.STC_SCRIPTOL_IDENTIFIER
96b3fa7c
RD
776STC_SCRIPTOL_TRIPLE = _stc.STC_SCRIPTOL_TRIPLE
777STC_SCRIPTOL_CLASSNAME = _stc.STC_SCRIPTOL_CLASSNAME
778STC_SCRIPTOL_PREPROCESSOR = _stc.STC_SCRIPTOL_PREPROCESSOR
d14a1e28
RD
779STC_ASM_DEFAULT = _stc.STC_ASM_DEFAULT
780STC_ASM_COMMENT = _stc.STC_ASM_COMMENT
781STC_ASM_NUMBER = _stc.STC_ASM_NUMBER
782STC_ASM_STRING = _stc.STC_ASM_STRING
783STC_ASM_OPERATOR = _stc.STC_ASM_OPERATOR
784STC_ASM_IDENTIFIER = _stc.STC_ASM_IDENTIFIER
785STC_ASM_CPUINSTRUCTION = _stc.STC_ASM_CPUINSTRUCTION
786STC_ASM_MATHINSTRUCTION = _stc.STC_ASM_MATHINSTRUCTION
787STC_ASM_REGISTER = _stc.STC_ASM_REGISTER
788STC_ASM_DIRECTIVE = _stc.STC_ASM_DIRECTIVE
789STC_ASM_DIRECTIVEOPERAND = _stc.STC_ASM_DIRECTIVEOPERAND
96b3fa7c
RD
790STC_ASM_COMMENTBLOCK = _stc.STC_ASM_COMMENTBLOCK
791STC_ASM_CHARACTER = _stc.STC_ASM_CHARACTER
792STC_ASM_STRINGEOL = _stc.STC_ASM_STRINGEOL
793STC_ASM_EXTINSTRUCTION = _stc.STC_ASM_EXTINSTRUCTION
d14a1e28
RD
794STC_F_DEFAULT = _stc.STC_F_DEFAULT
795STC_F_COMMENT = _stc.STC_F_COMMENT
796STC_F_NUMBER = _stc.STC_F_NUMBER
797STC_F_STRING1 = _stc.STC_F_STRING1
798STC_F_STRING2 = _stc.STC_F_STRING2
799STC_F_STRINGEOL = _stc.STC_F_STRINGEOL
800STC_F_OPERATOR = _stc.STC_F_OPERATOR
801STC_F_IDENTIFIER = _stc.STC_F_IDENTIFIER
802STC_F_WORD = _stc.STC_F_WORD
803STC_F_WORD2 = _stc.STC_F_WORD2
804STC_F_WORD3 = _stc.STC_F_WORD3
805STC_F_PREPROCESSOR = _stc.STC_F_PREPROCESSOR
806STC_F_OPERATOR2 = _stc.STC_F_OPERATOR2
807STC_F_LABEL = _stc.STC_F_LABEL
808STC_F_CONTINUATION = _stc.STC_F_CONTINUATION
809STC_CSS_DEFAULT = _stc.STC_CSS_DEFAULT
810STC_CSS_TAG = _stc.STC_CSS_TAG
811STC_CSS_CLASS = _stc.STC_CSS_CLASS
812STC_CSS_PSEUDOCLASS = _stc.STC_CSS_PSEUDOCLASS
813STC_CSS_UNKNOWN_PSEUDOCLASS = _stc.STC_CSS_UNKNOWN_PSEUDOCLASS
814STC_CSS_OPERATOR = _stc.STC_CSS_OPERATOR
815STC_CSS_IDENTIFIER = _stc.STC_CSS_IDENTIFIER
816STC_CSS_UNKNOWN_IDENTIFIER = _stc.STC_CSS_UNKNOWN_IDENTIFIER
817STC_CSS_VALUE = _stc.STC_CSS_VALUE
818STC_CSS_COMMENT = _stc.STC_CSS_COMMENT
819STC_CSS_ID = _stc.STC_CSS_ID
820STC_CSS_IMPORTANT = _stc.STC_CSS_IMPORTANT
821STC_CSS_DIRECTIVE = _stc.STC_CSS_DIRECTIVE
822STC_CSS_DOUBLESTRING = _stc.STC_CSS_DOUBLESTRING
823STC_CSS_SINGLESTRING = _stc.STC_CSS_SINGLESTRING
53aa7709 824STC_CSS_IDENTIFIER2 = _stc.STC_CSS_IDENTIFIER2
1bd55598 825STC_CSS_ATTRIBUTE = _stc.STC_CSS_ATTRIBUTE
d14a1e28
RD
826STC_POV_DEFAULT = _stc.STC_POV_DEFAULT
827STC_POV_COMMENT = _stc.STC_POV_COMMENT
828STC_POV_COMMENTLINE = _stc.STC_POV_COMMENTLINE
829STC_POV_NUMBER = _stc.STC_POV_NUMBER
830STC_POV_OPERATOR = _stc.STC_POV_OPERATOR
831STC_POV_IDENTIFIER = _stc.STC_POV_IDENTIFIER
832STC_POV_STRING = _stc.STC_POV_STRING
833STC_POV_STRINGEOL = _stc.STC_POV_STRINGEOL
834STC_POV_DIRECTIVE = _stc.STC_POV_DIRECTIVE
835STC_POV_BADDIRECTIVE = _stc.STC_POV_BADDIRECTIVE
836STC_POV_WORD2 = _stc.STC_POV_WORD2
837STC_POV_WORD3 = _stc.STC_POV_WORD3
838STC_POV_WORD4 = _stc.STC_POV_WORD4
839STC_POV_WORD5 = _stc.STC_POV_WORD5
840STC_POV_WORD6 = _stc.STC_POV_WORD6
841STC_POV_WORD7 = _stc.STC_POV_WORD7
842STC_POV_WORD8 = _stc.STC_POV_WORD8
843STC_LOUT_DEFAULT = _stc.STC_LOUT_DEFAULT
844STC_LOUT_COMMENT = _stc.STC_LOUT_COMMENT
845STC_LOUT_NUMBER = _stc.STC_LOUT_NUMBER
846STC_LOUT_WORD = _stc.STC_LOUT_WORD
847STC_LOUT_WORD2 = _stc.STC_LOUT_WORD2
848STC_LOUT_WORD3 = _stc.STC_LOUT_WORD3
849STC_LOUT_WORD4 = _stc.STC_LOUT_WORD4
850STC_LOUT_STRING = _stc.STC_LOUT_STRING
851STC_LOUT_OPERATOR = _stc.STC_LOUT_OPERATOR
852STC_LOUT_IDENTIFIER = _stc.STC_LOUT_IDENTIFIER
853STC_LOUT_STRINGEOL = _stc.STC_LOUT_STRINGEOL
854STC_ESCRIPT_DEFAULT = _stc.STC_ESCRIPT_DEFAULT
855STC_ESCRIPT_COMMENT = _stc.STC_ESCRIPT_COMMENT
856STC_ESCRIPT_COMMENTLINE = _stc.STC_ESCRIPT_COMMENTLINE
857STC_ESCRIPT_COMMENTDOC = _stc.STC_ESCRIPT_COMMENTDOC
858STC_ESCRIPT_NUMBER = _stc.STC_ESCRIPT_NUMBER
859STC_ESCRIPT_WORD = _stc.STC_ESCRIPT_WORD
860STC_ESCRIPT_STRING = _stc.STC_ESCRIPT_STRING
861STC_ESCRIPT_OPERATOR = _stc.STC_ESCRIPT_OPERATOR
862STC_ESCRIPT_IDENTIFIER = _stc.STC_ESCRIPT_IDENTIFIER
863STC_ESCRIPT_BRACE = _stc.STC_ESCRIPT_BRACE
864STC_ESCRIPT_WORD2 = _stc.STC_ESCRIPT_WORD2
865STC_ESCRIPT_WORD3 = _stc.STC_ESCRIPT_WORD3
866STC_PS_DEFAULT = _stc.STC_PS_DEFAULT
867STC_PS_COMMENT = _stc.STC_PS_COMMENT
868STC_PS_DSC_COMMENT = _stc.STC_PS_DSC_COMMENT
869STC_PS_DSC_VALUE = _stc.STC_PS_DSC_VALUE
870STC_PS_NUMBER = _stc.STC_PS_NUMBER
871STC_PS_NAME = _stc.STC_PS_NAME
872STC_PS_KEYWORD = _stc.STC_PS_KEYWORD
873STC_PS_LITERAL = _stc.STC_PS_LITERAL
874STC_PS_IMMEVAL = _stc.STC_PS_IMMEVAL
875STC_PS_PAREN_ARRAY = _stc.STC_PS_PAREN_ARRAY
876STC_PS_PAREN_DICT = _stc.STC_PS_PAREN_DICT
877STC_PS_PAREN_PROC = _stc.STC_PS_PAREN_PROC
878STC_PS_TEXT = _stc.STC_PS_TEXT
879STC_PS_HEXSTRING = _stc.STC_PS_HEXSTRING
880STC_PS_BASE85STRING = _stc.STC_PS_BASE85STRING
881STC_PS_BADSTRINGCHAR = _stc.STC_PS_BADSTRINGCHAR
882STC_NSIS_DEFAULT = _stc.STC_NSIS_DEFAULT
883STC_NSIS_COMMENT = _stc.STC_NSIS_COMMENT
884STC_NSIS_STRINGDQ = _stc.STC_NSIS_STRINGDQ
885STC_NSIS_STRINGLQ = _stc.STC_NSIS_STRINGLQ
886STC_NSIS_STRINGRQ = _stc.STC_NSIS_STRINGRQ
887STC_NSIS_FUNCTION = _stc.STC_NSIS_FUNCTION
888STC_NSIS_VARIABLE = _stc.STC_NSIS_VARIABLE
889STC_NSIS_LABEL = _stc.STC_NSIS_LABEL
890STC_NSIS_USERDEFINED = _stc.STC_NSIS_USERDEFINED
891STC_NSIS_SECTIONDEF = _stc.STC_NSIS_SECTIONDEF
892STC_NSIS_SUBSECTIONDEF = _stc.STC_NSIS_SUBSECTIONDEF
893STC_NSIS_IFDEFINEDEF = _stc.STC_NSIS_IFDEFINEDEF
894STC_NSIS_MACRODEF = _stc.STC_NSIS_MACRODEF
895STC_NSIS_STRINGVAR = _stc.STC_NSIS_STRINGVAR
5e483524 896STC_NSIS_NUMBER = _stc.STC_NSIS_NUMBER
1bd55598
RD
897STC_NSIS_SECTIONGROUP = _stc.STC_NSIS_SECTIONGROUP
898STC_NSIS_PAGEEX = _stc.STC_NSIS_PAGEEX
899STC_NSIS_FUNCTIONDEF = _stc.STC_NSIS_FUNCTIONDEF
900STC_NSIS_COMMENTBOX = _stc.STC_NSIS_COMMENTBOX
d14a1e28
RD
901STC_MMIXAL_LEADWS = _stc.STC_MMIXAL_LEADWS
902STC_MMIXAL_COMMENT = _stc.STC_MMIXAL_COMMENT
903STC_MMIXAL_LABEL = _stc.STC_MMIXAL_LABEL
904STC_MMIXAL_OPCODE = _stc.STC_MMIXAL_OPCODE
905STC_MMIXAL_OPCODE_PRE = _stc.STC_MMIXAL_OPCODE_PRE
906STC_MMIXAL_OPCODE_VALID = _stc.STC_MMIXAL_OPCODE_VALID
907STC_MMIXAL_OPCODE_UNKNOWN = _stc.STC_MMIXAL_OPCODE_UNKNOWN
908STC_MMIXAL_OPCODE_POST = _stc.STC_MMIXAL_OPCODE_POST
909STC_MMIXAL_OPERANDS = _stc.STC_MMIXAL_OPERANDS
910STC_MMIXAL_NUMBER = _stc.STC_MMIXAL_NUMBER
911STC_MMIXAL_REF = _stc.STC_MMIXAL_REF
912STC_MMIXAL_CHAR = _stc.STC_MMIXAL_CHAR
913STC_MMIXAL_STRING = _stc.STC_MMIXAL_STRING
914STC_MMIXAL_REGISTER = _stc.STC_MMIXAL_REGISTER
915STC_MMIXAL_HEX = _stc.STC_MMIXAL_HEX
916STC_MMIXAL_OPERATOR = _stc.STC_MMIXAL_OPERATOR
917STC_MMIXAL_SYMBOL = _stc.STC_MMIXAL_SYMBOL
918STC_MMIXAL_INCLUDE = _stc.STC_MMIXAL_INCLUDE
96b3fa7c
RD
919STC_CLW_DEFAULT = _stc.STC_CLW_DEFAULT
920STC_CLW_LABEL = _stc.STC_CLW_LABEL
921STC_CLW_COMMENT = _stc.STC_CLW_COMMENT
922STC_CLW_STRING = _stc.STC_CLW_STRING
923STC_CLW_USER_IDENTIFIER = _stc.STC_CLW_USER_IDENTIFIER
924STC_CLW_INTEGER_CONSTANT = _stc.STC_CLW_INTEGER_CONSTANT
925STC_CLW_REAL_CONSTANT = _stc.STC_CLW_REAL_CONSTANT
926STC_CLW_PICTURE_STRING = _stc.STC_CLW_PICTURE_STRING
927STC_CLW_KEYWORD = _stc.STC_CLW_KEYWORD
928STC_CLW_COMPILER_DIRECTIVE = _stc.STC_CLW_COMPILER_DIRECTIVE
1bd55598 929STC_CLW_RUNTIME_EXPRESSIONS = _stc.STC_CLW_RUNTIME_EXPRESSIONS
96b3fa7c
RD
930STC_CLW_BUILTIN_PROCEDURES_FUNCTION = _stc.STC_CLW_BUILTIN_PROCEDURES_FUNCTION
931STC_CLW_STRUCTURE_DATA_TYPE = _stc.STC_CLW_STRUCTURE_DATA_TYPE
932STC_CLW_ATTRIBUTE = _stc.STC_CLW_ATTRIBUTE
933STC_CLW_STANDARD_EQUATE = _stc.STC_CLW_STANDARD_EQUATE
934STC_CLW_ERROR = _stc.STC_CLW_ERROR
1bd55598 935STC_CLW_DEPRECATED = _stc.STC_CLW_DEPRECATED
96b3fa7c
RD
936STC_LOT_DEFAULT = _stc.STC_LOT_DEFAULT
937STC_LOT_HEADER = _stc.STC_LOT_HEADER
938STC_LOT_BREAK = _stc.STC_LOT_BREAK
939STC_LOT_SET = _stc.STC_LOT_SET
940STC_LOT_PASS = _stc.STC_LOT_PASS
941STC_LOT_FAIL = _stc.STC_LOT_FAIL
942STC_LOT_ABORT = _stc.STC_LOT_ABORT
943STC_YAML_DEFAULT = _stc.STC_YAML_DEFAULT
944STC_YAML_COMMENT = _stc.STC_YAML_COMMENT
945STC_YAML_IDENTIFIER = _stc.STC_YAML_IDENTIFIER
946STC_YAML_KEYWORD = _stc.STC_YAML_KEYWORD
947STC_YAML_NUMBER = _stc.STC_YAML_NUMBER
948STC_YAML_REFERENCE = _stc.STC_YAML_REFERENCE
949STC_YAML_DOCUMENT = _stc.STC_YAML_DOCUMENT
950STC_YAML_TEXT = _stc.STC_YAML_TEXT
951STC_YAML_ERROR = _stc.STC_YAML_ERROR
952STC_TEX_DEFAULT = _stc.STC_TEX_DEFAULT
953STC_TEX_SPECIAL = _stc.STC_TEX_SPECIAL
954STC_TEX_GROUP = _stc.STC_TEX_GROUP
955STC_TEX_SYMBOL = _stc.STC_TEX_SYMBOL
956STC_TEX_COMMAND = _stc.STC_TEX_COMMAND
957STC_TEX_TEXT = _stc.STC_TEX_TEXT
958STC_METAPOST_DEFAULT = _stc.STC_METAPOST_DEFAULT
959STC_METAPOST_SPECIAL = _stc.STC_METAPOST_SPECIAL
960STC_METAPOST_GROUP = _stc.STC_METAPOST_GROUP
961STC_METAPOST_SYMBOL = _stc.STC_METAPOST_SYMBOL
962STC_METAPOST_COMMAND = _stc.STC_METAPOST_COMMAND
963STC_METAPOST_TEXT = _stc.STC_METAPOST_TEXT
964STC_METAPOST_EXTRA = _stc.STC_METAPOST_EXTRA
965STC_ERLANG_DEFAULT = _stc.STC_ERLANG_DEFAULT
966STC_ERLANG_COMMENT = _stc.STC_ERLANG_COMMENT
967STC_ERLANG_VARIABLE = _stc.STC_ERLANG_VARIABLE
968STC_ERLANG_NUMBER = _stc.STC_ERLANG_NUMBER
969STC_ERLANG_KEYWORD = _stc.STC_ERLANG_KEYWORD
970STC_ERLANG_STRING = _stc.STC_ERLANG_STRING
971STC_ERLANG_OPERATOR = _stc.STC_ERLANG_OPERATOR
972STC_ERLANG_ATOM = _stc.STC_ERLANG_ATOM
973STC_ERLANG_FUNCTION_NAME = _stc.STC_ERLANG_FUNCTION_NAME
974STC_ERLANG_CHARACTER = _stc.STC_ERLANG_CHARACTER
975STC_ERLANG_MACRO = _stc.STC_ERLANG_MACRO
976STC_ERLANG_RECORD = _stc.STC_ERLANG_RECORD
977STC_ERLANG_SEPARATOR = _stc.STC_ERLANG_SEPARATOR
978STC_ERLANG_NODE_NAME = _stc.STC_ERLANG_NODE_NAME
979STC_ERLANG_UNKNOWN = _stc.STC_ERLANG_UNKNOWN
5e483524
RD
980STC_MSSQL_DEFAULT = _stc.STC_MSSQL_DEFAULT
981STC_MSSQL_COMMENT = _stc.STC_MSSQL_COMMENT
982STC_MSSQL_LINE_COMMENT = _stc.STC_MSSQL_LINE_COMMENT
983STC_MSSQL_NUMBER = _stc.STC_MSSQL_NUMBER
984STC_MSSQL_STRING = _stc.STC_MSSQL_STRING
985STC_MSSQL_OPERATOR = _stc.STC_MSSQL_OPERATOR
986STC_MSSQL_IDENTIFIER = _stc.STC_MSSQL_IDENTIFIER
987STC_MSSQL_VARIABLE = _stc.STC_MSSQL_VARIABLE
988STC_MSSQL_COLUMN_NAME = _stc.STC_MSSQL_COLUMN_NAME
989STC_MSSQL_STATEMENT = _stc.STC_MSSQL_STATEMENT
990STC_MSSQL_DATATYPE = _stc.STC_MSSQL_DATATYPE
991STC_MSSQL_SYSTABLE = _stc.STC_MSSQL_SYSTABLE
992STC_MSSQL_GLOBAL_VARIABLE = _stc.STC_MSSQL_GLOBAL_VARIABLE
993STC_MSSQL_FUNCTION = _stc.STC_MSSQL_FUNCTION
994STC_MSSQL_STORED_PROCEDURE = _stc.STC_MSSQL_STORED_PROCEDURE
995STC_MSSQL_DEFAULT_PREF_DATATYPE = _stc.STC_MSSQL_DEFAULT_PREF_DATATYPE
996STC_MSSQL_COLUMN_NAME_2 = _stc.STC_MSSQL_COLUMN_NAME_2
997STC_V_DEFAULT = _stc.STC_V_DEFAULT
998STC_V_COMMENT = _stc.STC_V_COMMENT
999STC_V_COMMENTLINE = _stc.STC_V_COMMENTLINE
1000STC_V_COMMENTLINEBANG = _stc.STC_V_COMMENTLINEBANG
1001STC_V_NUMBER = _stc.STC_V_NUMBER
1002STC_V_WORD = _stc.STC_V_WORD
1003STC_V_STRING = _stc.STC_V_STRING
1004STC_V_WORD2 = _stc.STC_V_WORD2
1005STC_V_WORD3 = _stc.STC_V_WORD3
1006STC_V_PREPROCESSOR = _stc.STC_V_PREPROCESSOR
1007STC_V_OPERATOR = _stc.STC_V_OPERATOR
1008STC_V_IDENTIFIER = _stc.STC_V_IDENTIFIER
1009STC_V_STRINGEOL = _stc.STC_V_STRINGEOL
1010STC_V_USER = _stc.STC_V_USER
1011STC_KIX_DEFAULT = _stc.STC_KIX_DEFAULT
1012STC_KIX_COMMENT = _stc.STC_KIX_COMMENT
1013STC_KIX_STRING1 = _stc.STC_KIX_STRING1
1014STC_KIX_STRING2 = _stc.STC_KIX_STRING2
1015STC_KIX_NUMBER = _stc.STC_KIX_NUMBER
1016STC_KIX_VAR = _stc.STC_KIX_VAR
1017STC_KIX_MACRO = _stc.STC_KIX_MACRO
1018STC_KIX_KEYWORD = _stc.STC_KIX_KEYWORD
1019STC_KIX_FUNCTIONS = _stc.STC_KIX_FUNCTIONS
1020STC_KIX_OPERATOR = _stc.STC_KIX_OPERATOR
1021STC_KIX_IDENTIFIER = _stc.STC_KIX_IDENTIFIER
1022STC_GC_DEFAULT = _stc.STC_GC_DEFAULT
1023STC_GC_COMMENTLINE = _stc.STC_GC_COMMENTLINE
1024STC_GC_COMMENTBLOCK = _stc.STC_GC_COMMENTBLOCK
1025STC_GC_GLOBAL = _stc.STC_GC_GLOBAL
1026STC_GC_EVENT = _stc.STC_GC_EVENT
1027STC_GC_ATTRIBUTE = _stc.STC_GC_ATTRIBUTE
1028STC_GC_CONTROL = _stc.STC_GC_CONTROL
1029STC_GC_COMMAND = _stc.STC_GC_COMMAND
1030STC_GC_STRING = _stc.STC_GC_STRING
1031STC_GC_OPERATOR = _stc.STC_GC_OPERATOR
1032STC_SN_DEFAULT = _stc.STC_SN_DEFAULT
1033STC_SN_CODE = _stc.STC_SN_CODE
1034STC_SN_COMMENTLINE = _stc.STC_SN_COMMENTLINE
1035STC_SN_COMMENTLINEBANG = _stc.STC_SN_COMMENTLINEBANG
1036STC_SN_NUMBER = _stc.STC_SN_NUMBER
1037STC_SN_WORD = _stc.STC_SN_WORD
1038STC_SN_STRING = _stc.STC_SN_STRING
1039STC_SN_WORD2 = _stc.STC_SN_WORD2
1040STC_SN_WORD3 = _stc.STC_SN_WORD3
1041STC_SN_PREPROCESSOR = _stc.STC_SN_PREPROCESSOR
1042STC_SN_OPERATOR = _stc.STC_SN_OPERATOR
1043STC_SN_IDENTIFIER = _stc.STC_SN_IDENTIFIER
1044STC_SN_STRINGEOL = _stc.STC_SN_STRINGEOL
1045STC_SN_REGEXTAG = _stc.STC_SN_REGEXTAG
1046STC_SN_SIGNAL = _stc.STC_SN_SIGNAL
1047STC_SN_USER = _stc.STC_SN_USER
1048STC_AU3_DEFAULT = _stc.STC_AU3_DEFAULT
1049STC_AU3_COMMENT = _stc.STC_AU3_COMMENT
1050STC_AU3_COMMENTBLOCK = _stc.STC_AU3_COMMENTBLOCK
1051STC_AU3_NUMBER = _stc.STC_AU3_NUMBER
1052STC_AU3_FUNCTION = _stc.STC_AU3_FUNCTION
1053STC_AU3_KEYWORD = _stc.STC_AU3_KEYWORD
1054STC_AU3_MACRO = _stc.STC_AU3_MACRO
1055STC_AU3_STRING = _stc.STC_AU3_STRING
1056STC_AU3_OPERATOR = _stc.STC_AU3_OPERATOR
1057STC_AU3_VARIABLE = _stc.STC_AU3_VARIABLE
1058STC_AU3_SENT = _stc.STC_AU3_SENT
1059STC_AU3_PREPROCESSOR = _stc.STC_AU3_PREPROCESSOR
53aa7709 1060STC_AU3_SPECIAL = _stc.STC_AU3_SPECIAL
1bd55598
RD
1061STC_AU3_EXPAND = _stc.STC_AU3_EXPAND
1062STC_AU3_COMOBJ = _stc.STC_AU3_COMOBJ
10044bf1 1063STC_AU3_UDF = _stc.STC_AU3_UDF
5e483524
RD
1064STC_APDL_DEFAULT = _stc.STC_APDL_DEFAULT
1065STC_APDL_COMMENT = _stc.STC_APDL_COMMENT
1066STC_APDL_COMMENTBLOCK = _stc.STC_APDL_COMMENTBLOCK
1067STC_APDL_NUMBER = _stc.STC_APDL_NUMBER
1068STC_APDL_STRING = _stc.STC_APDL_STRING
53aa7709 1069STC_APDL_OPERATOR = _stc.STC_APDL_OPERATOR
5e483524 1070STC_APDL_WORD = _stc.STC_APDL_WORD
5e483524 1071STC_APDL_PROCESSOR = _stc.STC_APDL_PROCESSOR
53aa7709
RD
1072STC_APDL_COMMAND = _stc.STC_APDL_COMMAND
1073STC_APDL_SLASHCOMMAND = _stc.STC_APDL_SLASHCOMMAND
1074STC_APDL_STARCOMMAND = _stc.STC_APDL_STARCOMMAND
1075STC_APDL_ARGUMENT = _stc.STC_APDL_ARGUMENT
5e483524
RD
1076STC_APDL_FUNCTION = _stc.STC_APDL_FUNCTION
1077STC_SH_DEFAULT = _stc.STC_SH_DEFAULT
1078STC_SH_ERROR = _stc.STC_SH_ERROR
1079STC_SH_COMMENTLINE = _stc.STC_SH_COMMENTLINE
1080STC_SH_NUMBER = _stc.STC_SH_NUMBER
1081STC_SH_WORD = _stc.STC_SH_WORD
1082STC_SH_STRING = _stc.STC_SH_STRING
1083STC_SH_CHARACTER = _stc.STC_SH_CHARACTER
1084STC_SH_OPERATOR = _stc.STC_SH_OPERATOR
1085STC_SH_IDENTIFIER = _stc.STC_SH_IDENTIFIER
1086STC_SH_SCALAR = _stc.STC_SH_SCALAR
1087STC_SH_PARAM = _stc.STC_SH_PARAM
1088STC_SH_BACKTICKS = _stc.STC_SH_BACKTICKS
1089STC_SH_HERE_DELIM = _stc.STC_SH_HERE_DELIM
1090STC_SH_HERE_Q = _stc.STC_SH_HERE_Q
53aa7709
RD
1091STC_ASN1_DEFAULT = _stc.STC_ASN1_DEFAULT
1092STC_ASN1_COMMENT = _stc.STC_ASN1_COMMENT
1093STC_ASN1_IDENTIFIER = _stc.STC_ASN1_IDENTIFIER
1094STC_ASN1_STRING = _stc.STC_ASN1_STRING
1095STC_ASN1_OID = _stc.STC_ASN1_OID
1096STC_ASN1_SCALAR = _stc.STC_ASN1_SCALAR
1097STC_ASN1_KEYWORD = _stc.STC_ASN1_KEYWORD
1098STC_ASN1_ATTRIBUTE = _stc.STC_ASN1_ATTRIBUTE
1099STC_ASN1_DESCRIPTOR = _stc.STC_ASN1_DESCRIPTOR
1100STC_ASN1_TYPE = _stc.STC_ASN1_TYPE
1101STC_ASN1_OPERATOR = _stc.STC_ASN1_OPERATOR
1102STC_VHDL_DEFAULT = _stc.STC_VHDL_DEFAULT
1103STC_VHDL_COMMENT = _stc.STC_VHDL_COMMENT
1104STC_VHDL_COMMENTLINEBANG = _stc.STC_VHDL_COMMENTLINEBANG
1105STC_VHDL_NUMBER = _stc.STC_VHDL_NUMBER
1106STC_VHDL_STRING = _stc.STC_VHDL_STRING
1107STC_VHDL_OPERATOR = _stc.STC_VHDL_OPERATOR
1108STC_VHDL_IDENTIFIER = _stc.STC_VHDL_IDENTIFIER
1109STC_VHDL_STRINGEOL = _stc.STC_VHDL_STRINGEOL
1110STC_VHDL_KEYWORD = _stc.STC_VHDL_KEYWORD
1111STC_VHDL_STDOPERATOR = _stc.STC_VHDL_STDOPERATOR
1112STC_VHDL_ATTRIBUTE = _stc.STC_VHDL_ATTRIBUTE
1113STC_VHDL_STDFUNCTION = _stc.STC_VHDL_STDFUNCTION
1114STC_VHDL_STDPACKAGE = _stc.STC_VHDL_STDPACKAGE
1115STC_VHDL_STDTYPE = _stc.STC_VHDL_STDTYPE
1116STC_VHDL_USERWORD = _stc.STC_VHDL_USERWORD
1bd55598
RD
1117STC_CAML_DEFAULT = _stc.STC_CAML_DEFAULT
1118STC_CAML_IDENTIFIER = _stc.STC_CAML_IDENTIFIER
1119STC_CAML_TAGNAME = _stc.STC_CAML_TAGNAME
1120STC_CAML_KEYWORD = _stc.STC_CAML_KEYWORD
1121STC_CAML_KEYWORD2 = _stc.STC_CAML_KEYWORD2
1122STC_CAML_KEYWORD3 = _stc.STC_CAML_KEYWORD3
1123STC_CAML_LINENUM = _stc.STC_CAML_LINENUM
1124STC_CAML_OPERATOR = _stc.STC_CAML_OPERATOR
1125STC_CAML_NUMBER = _stc.STC_CAML_NUMBER
1126STC_CAML_CHAR = _stc.STC_CAML_CHAR
1127STC_CAML_STRING = _stc.STC_CAML_STRING
1128STC_CAML_COMMENT = _stc.STC_CAML_COMMENT
1129STC_CAML_COMMENT1 = _stc.STC_CAML_COMMENT1
1130STC_CAML_COMMENT2 = _stc.STC_CAML_COMMENT2
1131STC_CAML_COMMENT3 = _stc.STC_CAML_COMMENT3
1132STC_HA_DEFAULT = _stc.STC_HA_DEFAULT
1133STC_HA_IDENTIFIER = _stc.STC_HA_IDENTIFIER
1134STC_HA_KEYWORD = _stc.STC_HA_KEYWORD
1135STC_HA_NUMBER = _stc.STC_HA_NUMBER
1136STC_HA_STRING = _stc.STC_HA_STRING
1137STC_HA_CHARACTER = _stc.STC_HA_CHARACTER
1138STC_HA_CLASS = _stc.STC_HA_CLASS
1139STC_HA_MODULE = _stc.STC_HA_MODULE
1140STC_HA_CAPITAL = _stc.STC_HA_CAPITAL
1141STC_HA_DATA = _stc.STC_HA_DATA
1142STC_HA_IMPORT = _stc.STC_HA_IMPORT
1143STC_HA_OPERATOR = _stc.STC_HA_OPERATOR
1144STC_HA_INSTANCE = _stc.STC_HA_INSTANCE
1145STC_HA_COMMENTLINE = _stc.STC_HA_COMMENTLINE
1146STC_HA_COMMENTBLOCK = _stc.STC_HA_COMMENTBLOCK
1147STC_HA_COMMENTBLOCK2 = _stc.STC_HA_COMMENTBLOCK2
1148STC_HA_COMMENTBLOCK3 = _stc.STC_HA_COMMENTBLOCK3
1149STC_T3_DEFAULT = _stc.STC_T3_DEFAULT
1150STC_T3_X_DEFAULT = _stc.STC_T3_X_DEFAULT
1151STC_T3_PREPROCESSOR = _stc.STC_T3_PREPROCESSOR
1152STC_T3_BLOCK_COMMENT = _stc.STC_T3_BLOCK_COMMENT
1153STC_T3_LINE_COMMENT = _stc.STC_T3_LINE_COMMENT
1154STC_T3_OPERATOR = _stc.STC_T3_OPERATOR
1155STC_T3_KEYWORD = _stc.STC_T3_KEYWORD
1156STC_T3_NUMBER = _stc.STC_T3_NUMBER
1157STC_T3_IDENTIFIER = _stc.STC_T3_IDENTIFIER
1158STC_T3_S_STRING = _stc.STC_T3_S_STRING
1159STC_T3_D_STRING = _stc.STC_T3_D_STRING
1160STC_T3_X_STRING = _stc.STC_T3_X_STRING
1161STC_T3_LIB_DIRECTIVE = _stc.STC_T3_LIB_DIRECTIVE
1162STC_T3_MSG_PARAM = _stc.STC_T3_MSG_PARAM
1163STC_T3_HTML_TAG = _stc.STC_T3_HTML_TAG
1164STC_T3_HTML_DEFAULT = _stc.STC_T3_HTML_DEFAULT
1165STC_T3_HTML_STRING = _stc.STC_T3_HTML_STRING
1166STC_T3_USER1 = _stc.STC_T3_USER1
1167STC_T3_USER2 = _stc.STC_T3_USER2
1168STC_T3_USER3 = _stc.STC_T3_USER3
1169STC_REBOL_DEFAULT = _stc.STC_REBOL_DEFAULT
1170STC_REBOL_COMMENTLINE = _stc.STC_REBOL_COMMENTLINE
1171STC_REBOL_COMMENTBLOCK = _stc.STC_REBOL_COMMENTBLOCK
1172STC_REBOL_PREFACE = _stc.STC_REBOL_PREFACE
1173STC_REBOL_OPERATOR = _stc.STC_REBOL_OPERATOR
1174STC_REBOL_CHARACTER = _stc.STC_REBOL_CHARACTER
1175STC_REBOL_QUOTEDSTRING = _stc.STC_REBOL_QUOTEDSTRING
1176STC_REBOL_BRACEDSTRING = _stc.STC_REBOL_BRACEDSTRING
1177STC_REBOL_NUMBER = _stc.STC_REBOL_NUMBER
1178STC_REBOL_PAIR = _stc.STC_REBOL_PAIR
1179STC_REBOL_TUPLE = _stc.STC_REBOL_TUPLE
1180STC_REBOL_BINARY = _stc.STC_REBOL_BINARY
1181STC_REBOL_MONEY = _stc.STC_REBOL_MONEY
1182STC_REBOL_ISSUE = _stc.STC_REBOL_ISSUE
1183STC_REBOL_TAG = _stc.STC_REBOL_TAG
1184STC_REBOL_FILE = _stc.STC_REBOL_FILE
1185STC_REBOL_EMAIL = _stc.STC_REBOL_EMAIL
1186STC_REBOL_URL = _stc.STC_REBOL_URL
1187STC_REBOL_DATE = _stc.STC_REBOL_DATE
1188STC_REBOL_TIME = _stc.STC_REBOL_TIME
1189STC_REBOL_IDENTIFIER = _stc.STC_REBOL_IDENTIFIER
1190STC_REBOL_WORD = _stc.STC_REBOL_WORD
1191STC_REBOL_WORD2 = _stc.STC_REBOL_WORD2
1192STC_REBOL_WORD3 = _stc.STC_REBOL_WORD3
1193STC_REBOL_WORD4 = _stc.STC_REBOL_WORD4
1194STC_REBOL_WORD5 = _stc.STC_REBOL_WORD5
1195STC_REBOL_WORD6 = _stc.STC_REBOL_WORD6
1196STC_REBOL_WORD7 = _stc.STC_REBOL_WORD7
1197STC_REBOL_WORD8 = _stc.STC_REBOL_WORD8
1198STC_SQL_DEFAULT = _stc.STC_SQL_DEFAULT
1199STC_SQL_COMMENT = _stc.STC_SQL_COMMENT
1200STC_SQL_COMMENTLINE = _stc.STC_SQL_COMMENTLINE
1201STC_SQL_COMMENTDOC = _stc.STC_SQL_COMMENTDOC
1202STC_SQL_NUMBER = _stc.STC_SQL_NUMBER
1203STC_SQL_WORD = _stc.STC_SQL_WORD
1204STC_SQL_STRING = _stc.STC_SQL_STRING
1205STC_SQL_CHARACTER = _stc.STC_SQL_CHARACTER
1206STC_SQL_SQLPLUS = _stc.STC_SQL_SQLPLUS
1207STC_SQL_SQLPLUS_PROMPT = _stc.STC_SQL_SQLPLUS_PROMPT
1208STC_SQL_OPERATOR = _stc.STC_SQL_OPERATOR
1209STC_SQL_IDENTIFIER = _stc.STC_SQL_IDENTIFIER
1210STC_SQL_SQLPLUS_COMMENT = _stc.STC_SQL_SQLPLUS_COMMENT
1211STC_SQL_COMMENTLINEDOC = _stc.STC_SQL_COMMENTLINEDOC
1212STC_SQL_WORD2 = _stc.STC_SQL_WORD2
1213STC_SQL_COMMENTDOCKEYWORD = _stc.STC_SQL_COMMENTDOCKEYWORD
1214STC_SQL_COMMENTDOCKEYWORDERROR = _stc.STC_SQL_COMMENTDOCKEYWORDERROR
1215STC_SQL_USER1 = _stc.STC_SQL_USER1
1216STC_SQL_USER2 = _stc.STC_SQL_USER2
1217STC_SQL_USER3 = _stc.STC_SQL_USER3
1218STC_SQL_USER4 = _stc.STC_SQL_USER4
1219STC_SQL_QUOTEDIDENTIFIER = _stc.STC_SQL_QUOTEDIDENTIFIER
1220STC_ST_DEFAULT = _stc.STC_ST_DEFAULT
1221STC_ST_STRING = _stc.STC_ST_STRING
1222STC_ST_NUMBER = _stc.STC_ST_NUMBER
1223STC_ST_COMMENT = _stc.STC_ST_COMMENT
1224STC_ST_SYMBOL = _stc.STC_ST_SYMBOL
1225STC_ST_BINARY = _stc.STC_ST_BINARY
1226STC_ST_BOOL = _stc.STC_ST_BOOL
1227STC_ST_SELF = _stc.STC_ST_SELF
1228STC_ST_SUPER = _stc.STC_ST_SUPER
1229STC_ST_NIL = _stc.STC_ST_NIL
1230STC_ST_GLOBAL = _stc.STC_ST_GLOBAL
1231STC_ST_RETURN = _stc.STC_ST_RETURN
1232STC_ST_SPECIAL = _stc.STC_ST_SPECIAL
1233STC_ST_KWSEND = _stc.STC_ST_KWSEND
1234STC_ST_ASSIGN = _stc.STC_ST_ASSIGN
1235STC_ST_CHARACTER = _stc.STC_ST_CHARACTER
1236STC_ST_SPEC_SEL = _stc.STC_ST_SPEC_SEL
1237STC_FS_DEFAULT = _stc.STC_FS_DEFAULT
1238STC_FS_COMMENT = _stc.STC_FS_COMMENT
1239STC_FS_COMMENTLINE = _stc.STC_FS_COMMENTLINE
1240STC_FS_COMMENTDOC = _stc.STC_FS_COMMENTDOC
1241STC_FS_COMMENTLINEDOC = _stc.STC_FS_COMMENTLINEDOC
1242STC_FS_COMMENTDOCKEYWORD = _stc.STC_FS_COMMENTDOCKEYWORD
1243STC_FS_COMMENTDOCKEYWORDERROR = _stc.STC_FS_COMMENTDOCKEYWORDERROR
1244STC_FS_KEYWORD = _stc.STC_FS_KEYWORD
1245STC_FS_KEYWORD2 = _stc.STC_FS_KEYWORD2
1246STC_FS_KEYWORD3 = _stc.STC_FS_KEYWORD3
1247STC_FS_KEYWORD4 = _stc.STC_FS_KEYWORD4
1248STC_FS_NUMBER = _stc.STC_FS_NUMBER
1249STC_FS_STRING = _stc.STC_FS_STRING
1250STC_FS_PREPROCESSOR = _stc.STC_FS_PREPROCESSOR
1251STC_FS_OPERATOR = _stc.STC_FS_OPERATOR
1252STC_FS_IDENTIFIER = _stc.STC_FS_IDENTIFIER
1253STC_FS_DATE = _stc.STC_FS_DATE
1254STC_FS_STRINGEOL = _stc.STC_FS_STRINGEOL
1255STC_FS_CONSTANT = _stc.STC_FS_CONSTANT
1256STC_FS_ASM = _stc.STC_FS_ASM
1257STC_FS_LABEL = _stc.STC_FS_LABEL
1258STC_FS_ERROR = _stc.STC_FS_ERROR
1259STC_FS_HEXNUMBER = _stc.STC_FS_HEXNUMBER
1260STC_FS_BINNUMBER = _stc.STC_FS_BINNUMBER
1261STC_CSOUND_DEFAULT = _stc.STC_CSOUND_DEFAULT
1262STC_CSOUND_COMMENT = _stc.STC_CSOUND_COMMENT
1263STC_CSOUND_NUMBER = _stc.STC_CSOUND_NUMBER
1264STC_CSOUND_OPERATOR = _stc.STC_CSOUND_OPERATOR
1265STC_CSOUND_INSTR = _stc.STC_CSOUND_INSTR
1266STC_CSOUND_IDENTIFIER = _stc.STC_CSOUND_IDENTIFIER
1267STC_CSOUND_OPCODE = _stc.STC_CSOUND_OPCODE
1268STC_CSOUND_HEADERSTMT = _stc.STC_CSOUND_HEADERSTMT
1269STC_CSOUND_USERKEYWORD = _stc.STC_CSOUND_USERKEYWORD
1270STC_CSOUND_COMMENTBLOCK = _stc.STC_CSOUND_COMMENTBLOCK
1271STC_CSOUND_PARAM = _stc.STC_CSOUND_PARAM
1272STC_CSOUND_ARATE_VAR = _stc.STC_CSOUND_ARATE_VAR
1273STC_CSOUND_KRATE_VAR = _stc.STC_CSOUND_KRATE_VAR
1274STC_CSOUND_IRATE_VAR = _stc.STC_CSOUND_IRATE_VAR
1275STC_CSOUND_GLOBAL_VAR = _stc.STC_CSOUND_GLOBAL_VAR
1276STC_CSOUND_STRINGEOL = _stc.STC_CSOUND_STRINGEOL
10044bf1
RD
1277STC_INNO_DEFAULT = _stc.STC_INNO_DEFAULT
1278STC_INNO_COMMENT = _stc.STC_INNO_COMMENT
1279STC_INNO_KEYWORD = _stc.STC_INNO_KEYWORD
1280STC_INNO_PARAMETER = _stc.STC_INNO_PARAMETER
1281STC_INNO_SECTION = _stc.STC_INNO_SECTION
1282STC_INNO_PREPROC = _stc.STC_INNO_PREPROC
1283STC_INNO_PREPROC_INLINE = _stc.STC_INNO_PREPROC_INLINE
1284STC_INNO_COMMENT_PASCAL = _stc.STC_INNO_COMMENT_PASCAL
1285STC_INNO_KEYWORD_PASCAL = _stc.STC_INNO_KEYWORD_PASCAL
1286STC_INNO_KEYWORD_USER = _stc.STC_INNO_KEYWORD_USER
1287STC_INNO_STRING_DOUBLE = _stc.STC_INNO_STRING_DOUBLE
1288STC_INNO_STRING_SINGLE = _stc.STC_INNO_STRING_SINGLE
1289STC_INNO_IDENTIFIER = _stc.STC_INNO_IDENTIFIER
1290STC_OPAL_SPACE = _stc.STC_OPAL_SPACE
1291STC_OPAL_COMMENT_BLOCK = _stc.STC_OPAL_COMMENT_BLOCK
1292STC_OPAL_COMMENT_LINE = _stc.STC_OPAL_COMMENT_LINE
1293STC_OPAL_INTEGER = _stc.STC_OPAL_INTEGER
1294STC_OPAL_KEYWORD = _stc.STC_OPAL_KEYWORD
1295STC_OPAL_SORT = _stc.STC_OPAL_SORT
1296STC_OPAL_STRING = _stc.STC_OPAL_STRING
1297STC_OPAL_PAR = _stc.STC_OPAL_PAR
1298STC_OPAL_BOOL_CONST = _stc.STC_OPAL_BOOL_CONST
1299STC_OPAL_DEFAULT = _stc.STC_OPAL_DEFAULT
1300STC_SPICE_DEFAULT = _stc.STC_SPICE_DEFAULT
1301STC_SPICE_IDENTIFIER = _stc.STC_SPICE_IDENTIFIER
1302STC_SPICE_KEYWORD = _stc.STC_SPICE_KEYWORD
1303STC_SPICE_KEYWORD2 = _stc.STC_SPICE_KEYWORD2
1304STC_SPICE_KEYWORD3 = _stc.STC_SPICE_KEYWORD3
1305STC_SPICE_NUMBER = _stc.STC_SPICE_NUMBER
1306STC_SPICE_DELIMITER = _stc.STC_SPICE_DELIMITER
1307STC_SPICE_VALUE = _stc.STC_SPICE_VALUE
1308STC_SPICE_COMMENTLINE = _stc.STC_SPICE_COMMENTLINE
d14a1e28
RD
1309STC_CMD_REDO = _stc.STC_CMD_REDO
1310STC_CMD_SELECTALL = _stc.STC_CMD_SELECTALL
1311STC_CMD_UNDO = _stc.STC_CMD_UNDO
1312STC_CMD_CUT = _stc.STC_CMD_CUT
1313STC_CMD_COPY = _stc.STC_CMD_COPY
1314STC_CMD_PASTE = _stc.STC_CMD_PASTE
1315STC_CMD_CLEAR = _stc.STC_CMD_CLEAR
1316STC_CMD_LINEDOWN = _stc.STC_CMD_LINEDOWN
1317STC_CMD_LINEDOWNEXTEND = _stc.STC_CMD_LINEDOWNEXTEND
1318STC_CMD_LINEUP = _stc.STC_CMD_LINEUP
1319STC_CMD_LINEUPEXTEND = _stc.STC_CMD_LINEUPEXTEND
1320STC_CMD_CHARLEFT = _stc.STC_CMD_CHARLEFT
1321STC_CMD_CHARLEFTEXTEND = _stc.STC_CMD_CHARLEFTEXTEND
1322STC_CMD_CHARRIGHT = _stc.STC_CMD_CHARRIGHT
1323STC_CMD_CHARRIGHTEXTEND = _stc.STC_CMD_CHARRIGHTEXTEND
1324STC_CMD_WORDLEFT = _stc.STC_CMD_WORDLEFT
1325STC_CMD_WORDLEFTEXTEND = _stc.STC_CMD_WORDLEFTEXTEND
1326STC_CMD_WORDRIGHT = _stc.STC_CMD_WORDRIGHT
1327STC_CMD_WORDRIGHTEXTEND = _stc.STC_CMD_WORDRIGHTEXTEND
1328STC_CMD_HOME = _stc.STC_CMD_HOME
1329STC_CMD_HOMEEXTEND = _stc.STC_CMD_HOMEEXTEND
1330STC_CMD_LINEEND = _stc.STC_CMD_LINEEND
1331STC_CMD_LINEENDEXTEND = _stc.STC_CMD_LINEENDEXTEND
1332STC_CMD_DOCUMENTSTART = _stc.STC_CMD_DOCUMENTSTART
1333STC_CMD_DOCUMENTSTARTEXTEND = _stc.STC_CMD_DOCUMENTSTARTEXTEND
1334STC_CMD_DOCUMENTEND = _stc.STC_CMD_DOCUMENTEND
1335STC_CMD_DOCUMENTENDEXTEND = _stc.STC_CMD_DOCUMENTENDEXTEND
1336STC_CMD_PAGEUP = _stc.STC_CMD_PAGEUP
1337STC_CMD_PAGEUPEXTEND = _stc.STC_CMD_PAGEUPEXTEND
1338STC_CMD_PAGEDOWN = _stc.STC_CMD_PAGEDOWN
1339STC_CMD_PAGEDOWNEXTEND = _stc.STC_CMD_PAGEDOWNEXTEND
1340STC_CMD_EDITTOGGLEOVERTYPE = _stc.STC_CMD_EDITTOGGLEOVERTYPE
1341STC_CMD_CANCEL = _stc.STC_CMD_CANCEL
1342STC_CMD_DELETEBACK = _stc.STC_CMD_DELETEBACK
1343STC_CMD_TAB = _stc.STC_CMD_TAB
1344STC_CMD_BACKTAB = _stc.STC_CMD_BACKTAB
1345STC_CMD_NEWLINE = _stc.STC_CMD_NEWLINE
1346STC_CMD_FORMFEED = _stc.STC_CMD_FORMFEED
1347STC_CMD_VCHOME = _stc.STC_CMD_VCHOME
1348STC_CMD_VCHOMEEXTEND = _stc.STC_CMD_VCHOMEEXTEND
1349STC_CMD_ZOOMIN = _stc.STC_CMD_ZOOMIN
1350STC_CMD_ZOOMOUT = _stc.STC_CMD_ZOOMOUT
1351STC_CMD_DELWORDLEFT = _stc.STC_CMD_DELWORDLEFT
1352STC_CMD_DELWORDRIGHT = _stc.STC_CMD_DELWORDRIGHT
1353STC_CMD_LINECUT = _stc.STC_CMD_LINECUT
1354STC_CMD_LINEDELETE = _stc.STC_CMD_LINEDELETE
1355STC_CMD_LINETRANSPOSE = _stc.STC_CMD_LINETRANSPOSE
1356STC_CMD_LINEDUPLICATE = _stc.STC_CMD_LINEDUPLICATE
1357STC_CMD_LOWERCASE = _stc.STC_CMD_LOWERCASE
1358STC_CMD_UPPERCASE = _stc.STC_CMD_UPPERCASE
1359STC_CMD_LINESCROLLDOWN = _stc.STC_CMD_LINESCROLLDOWN
1360STC_CMD_LINESCROLLUP = _stc.STC_CMD_LINESCROLLUP
1361STC_CMD_DELETEBACKNOTLINE = _stc.STC_CMD_DELETEBACKNOTLINE
1362STC_CMD_HOMEDISPLAY = _stc.STC_CMD_HOMEDISPLAY
1363STC_CMD_HOMEDISPLAYEXTEND = _stc.STC_CMD_HOMEDISPLAYEXTEND
1364STC_CMD_LINEENDDISPLAY = _stc.STC_CMD_LINEENDDISPLAY
1365STC_CMD_LINEENDDISPLAYEXTEND = _stc.STC_CMD_LINEENDDISPLAYEXTEND
1366STC_CMD_HOMEWRAP = _stc.STC_CMD_HOMEWRAP
1367STC_CMD_HOMEWRAPEXTEND = _stc.STC_CMD_HOMEWRAPEXTEND
1368STC_CMD_LINEENDWRAP = _stc.STC_CMD_LINEENDWRAP
1369STC_CMD_LINEENDWRAPEXTEND = _stc.STC_CMD_LINEENDWRAPEXTEND
1370STC_CMD_VCHOMEWRAP = _stc.STC_CMD_VCHOMEWRAP
1371STC_CMD_VCHOMEWRAPEXTEND = _stc.STC_CMD_VCHOMEWRAPEXTEND
4276dc52 1372STC_CMD_LINECOPY = _stc.STC_CMD_LINECOPY
d14a1e28
RD
1373STC_CMD_WORDPARTLEFT = _stc.STC_CMD_WORDPARTLEFT
1374STC_CMD_WORDPARTLEFTEXTEND = _stc.STC_CMD_WORDPARTLEFTEXTEND
1375STC_CMD_WORDPARTRIGHT = _stc.STC_CMD_WORDPARTRIGHT
1376STC_CMD_WORDPARTRIGHTEXTEND = _stc.STC_CMD_WORDPARTRIGHTEXTEND
1377STC_CMD_DELLINELEFT = _stc.STC_CMD_DELLINELEFT
1378STC_CMD_DELLINERIGHT = _stc.STC_CMD_DELLINERIGHT
1379STC_CMD_PARADOWN = _stc.STC_CMD_PARADOWN
1380STC_CMD_PARADOWNEXTEND = _stc.STC_CMD_PARADOWNEXTEND
1381STC_CMD_PARAUP = _stc.STC_CMD_PARAUP
1382STC_CMD_PARAUPEXTEND = _stc.STC_CMD_PARAUPEXTEND
96b3fa7c
RD
1383STC_CMD_LINEDOWNRECTEXTEND = _stc.STC_CMD_LINEDOWNRECTEXTEND
1384STC_CMD_LINEUPRECTEXTEND = _stc.STC_CMD_LINEUPRECTEXTEND
1385STC_CMD_CHARLEFTRECTEXTEND = _stc.STC_CMD_CHARLEFTRECTEXTEND
1386STC_CMD_CHARRIGHTRECTEXTEND = _stc.STC_CMD_CHARRIGHTRECTEXTEND
1387STC_CMD_HOMERECTEXTEND = _stc.STC_CMD_HOMERECTEXTEND
1388STC_CMD_VCHOMERECTEXTEND = _stc.STC_CMD_VCHOMERECTEXTEND
1389STC_CMD_LINEENDRECTEXTEND = _stc.STC_CMD_LINEENDRECTEXTEND
1390STC_CMD_PAGEUPRECTEXTEND = _stc.STC_CMD_PAGEUPRECTEXTEND
1391STC_CMD_PAGEDOWNRECTEXTEND = _stc.STC_CMD_PAGEDOWNRECTEXTEND
1392STC_CMD_STUTTEREDPAGEUP = _stc.STC_CMD_STUTTEREDPAGEUP
1393STC_CMD_STUTTEREDPAGEUPEXTEND = _stc.STC_CMD_STUTTEREDPAGEUPEXTEND
1394STC_CMD_STUTTEREDPAGEDOWN = _stc.STC_CMD_STUTTEREDPAGEDOWN
1395STC_CMD_STUTTEREDPAGEDOWNEXTEND = _stc.STC_CMD_STUTTEREDPAGEDOWNEXTEND
1396STC_CMD_WORDLEFTEND = _stc.STC_CMD_WORDLEFTEND
1397STC_CMD_WORDLEFTENDEXTEND = _stc.STC_CMD_WORDLEFTENDEXTEND
1398STC_CMD_WORDRIGHTEND = _stc.STC_CMD_WORDRIGHTEND
1399STC_CMD_WORDRIGHTENDEXTEND = _stc.STC_CMD_WORDRIGHTENDEXTEND
d55e5bfc 1400class StyledTextCtrl(_core.Control):
36ed4f51 1401 """Proxy of C++ StyledTextCtrl class"""
1bd55598
RD
1402 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1403 __repr__ = _swig_repr
1404 def __init__(self, *args, **kwargs):
0df68c9f 1405 """
bfddbb17
RD
1406 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1407 Size size=DefaultSize, long style=0, String name=STCNameStr) -> StyledTextCtrl
0df68c9f 1408 """
1bd55598 1409 _stc.StyledTextCtrl_swiginit(self,_stc.new_StyledTextCtrl(*args, **kwargs))
d14a1e28 1410 self._setOORInfo(self)
e811c8ce
RD
1411
1412 def Create(*args, **kwargs):
0df68c9f 1413 """
bfddbb17 1414 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
66af7a75 1415 Size size=DefaultSize, long style=0, String name=wxSTCNameStr) -> bool
0df68c9f 1416 """
e811c8ce
RD
1417 return _stc.StyledTextCtrl_Create(*args, **kwargs)
1418
1419 def AddText(*args, **kwargs):
9ad7392b
RD
1420 """
1421 AddText(self, String text)
1422
1423 Add text to the document at current position.
1424 """
e811c8ce
RD
1425 return _stc.StyledTextCtrl_AddText(*args, **kwargs)
1426
1427 def AddStyledText(*args, **kwargs):
9ad7392b
RD
1428 """
1429 AddStyledText(self, wxMemoryBuffer data)
1430
1431 Add array of cells to document.
1432 """
e811c8ce
RD
1433 return _stc.StyledTextCtrl_AddStyledText(*args, **kwargs)
1434
1435 def InsertText(*args, **kwargs):
9ad7392b
RD
1436 """
1437 InsertText(self, int pos, String text)
1438
1439 Insert string at a position.
1440 """
e811c8ce
RD
1441 return _stc.StyledTextCtrl_InsertText(*args, **kwargs)
1442
1443 def ClearAll(*args, **kwargs):
9ad7392b
RD
1444 """
1445 ClearAll(self)
1446
1447 Delete all text in the document.
1448 """
e811c8ce
RD
1449 return _stc.StyledTextCtrl_ClearAll(*args, **kwargs)
1450
1451 def ClearDocumentStyle(*args, **kwargs):
9ad7392b
RD
1452 """
1453 ClearDocumentStyle(self)
1454
1455 Set all style bytes to 0, remove all folding information.
1456 """
e811c8ce
RD
1457 return _stc.StyledTextCtrl_ClearDocumentStyle(*args, **kwargs)
1458
1459 def GetLength(*args, **kwargs):
9ad7392b
RD
1460 """
1461 GetLength(self) -> int
1462
1463 Returns the number of characters in the document.
1464 """
e811c8ce
RD
1465 return _stc.StyledTextCtrl_GetLength(*args, **kwargs)
1466
1467 def GetCharAt(*args, **kwargs):
9ad7392b
RD
1468 """
1469 GetCharAt(self, int pos) -> int
1470
1471 Returns the character byte at the position.
1472 """
e811c8ce
RD
1473 return _stc.StyledTextCtrl_GetCharAt(*args, **kwargs)
1474
1475 def GetCurrentPos(*args, **kwargs):
9ad7392b
RD
1476 """
1477 GetCurrentPos(self) -> int
1478
1479 Returns the position of the caret.
1480 """
e811c8ce
RD
1481 return _stc.StyledTextCtrl_GetCurrentPos(*args, **kwargs)
1482
1483 def GetAnchor(*args, **kwargs):
9ad7392b
RD
1484 """
1485 GetAnchor(self) -> int
1486
1487 Returns the position of the opposite end of the selection to the caret.
1488 """
e811c8ce
RD
1489 return _stc.StyledTextCtrl_GetAnchor(*args, **kwargs)
1490
1491 def GetStyleAt(*args, **kwargs):
9ad7392b
RD
1492 """
1493 GetStyleAt(self, int pos) -> int
1494
1495 Returns the style byte at the position.
1496 """
e811c8ce
RD
1497 return _stc.StyledTextCtrl_GetStyleAt(*args, **kwargs)
1498
1499 def Redo(*args, **kwargs):
9ad7392b
RD
1500 """
1501 Redo(self)
1502
1503 Redoes the next action on the undo history.
1504 """
e811c8ce
RD
1505 return _stc.StyledTextCtrl_Redo(*args, **kwargs)
1506
1507 def SetUndoCollection(*args, **kwargs):
9ad7392b
RD
1508 """
1509 SetUndoCollection(self, bool collectUndo)
1510
1511 Choose between collecting actions into the undo
1512 history and discarding them.
1513 """
e811c8ce
RD
1514 return _stc.StyledTextCtrl_SetUndoCollection(*args, **kwargs)
1515
1516 def SelectAll(*args, **kwargs):
9ad7392b
RD
1517 """
1518 SelectAll(self)
1519
1520 Select all the text in the document.
1521 """
e811c8ce
RD
1522 return _stc.StyledTextCtrl_SelectAll(*args, **kwargs)
1523
1524 def SetSavePoint(*args, **kwargs):
9ad7392b
RD
1525 """
1526 SetSavePoint(self)
1527
1528 Remember the current position in the undo history as the position
1529 at which the document was saved.
1530 """
e811c8ce
RD
1531 return _stc.StyledTextCtrl_SetSavePoint(*args, **kwargs)
1532
1533 def GetStyledText(*args, **kwargs):
9ad7392b
RD
1534 """
1535 GetStyledText(self, int startPos, int endPos) -> wxMemoryBuffer
1536
1537 Retrieve a buffer of cells.
1538 """
e811c8ce
RD
1539 return _stc.StyledTextCtrl_GetStyledText(*args, **kwargs)
1540
1541 def CanRedo(*args, **kwargs):
9ad7392b
RD
1542 """
1543 CanRedo(self) -> bool
1544
1545 Are there any redoable actions in the undo history?
1546 """
e811c8ce
RD
1547 return _stc.StyledTextCtrl_CanRedo(*args, **kwargs)
1548
1549 def MarkerLineFromHandle(*args, **kwargs):
9ad7392b
RD
1550 """
1551 MarkerLineFromHandle(self, int handle) -> int
1552
1553 Retrieve the line number at which a particular marker is located.
1554 """
e811c8ce
RD
1555 return _stc.StyledTextCtrl_MarkerLineFromHandle(*args, **kwargs)
1556
1557 def MarkerDeleteHandle(*args, **kwargs):
9ad7392b
RD
1558 """
1559 MarkerDeleteHandle(self, int handle)
1560
1561 Delete a marker.
1562 """
e811c8ce
RD
1563 return _stc.StyledTextCtrl_MarkerDeleteHandle(*args, **kwargs)
1564
1565 def GetUndoCollection(*args, **kwargs):
9ad7392b
RD
1566 """
1567 GetUndoCollection(self) -> bool
1568
1569 Is undo history being collected?
1570 """
e811c8ce
RD
1571 return _stc.StyledTextCtrl_GetUndoCollection(*args, **kwargs)
1572
1573 def GetViewWhiteSpace(*args, **kwargs):
9ad7392b
RD
1574 """
1575 GetViewWhiteSpace(self) -> int
1576
1577 Are white space characters currently visible?
1578 Returns one of SCWS_* constants.
1579 """
e811c8ce
RD
1580 return _stc.StyledTextCtrl_GetViewWhiteSpace(*args, **kwargs)
1581
1582 def SetViewWhiteSpace(*args, **kwargs):
9ad7392b
RD
1583 """
1584 SetViewWhiteSpace(self, int viewWS)
1585
1586 Make white space characters invisible, always visible or visible outside indentation.
1587 """
e811c8ce
RD
1588 return _stc.StyledTextCtrl_SetViewWhiteSpace(*args, **kwargs)
1589
1590 def PositionFromPoint(*args, **kwargs):
9ad7392b
RD
1591 """
1592 PositionFromPoint(self, Point pt) -> int
1593
1594 Find the position from a point within the window.
1595 """
e811c8ce
RD
1596 return _stc.StyledTextCtrl_PositionFromPoint(*args, **kwargs)
1597
1598 def PositionFromPointClose(*args, **kwargs):
9ad7392b
RD
1599 """
1600 PositionFromPointClose(self, int x, int y) -> int
1601
1602 Find the position from a point within the window but return
1603 INVALID_POSITION if not close to text.
1604 """
e811c8ce
RD
1605 return _stc.StyledTextCtrl_PositionFromPointClose(*args, **kwargs)
1606
1607 def GotoLine(*args, **kwargs):
9ad7392b
RD
1608 """
1609 GotoLine(self, int line)
1610
1611 Set caret to start of a line and ensure it is visible.
1612 """
e811c8ce
RD
1613 return _stc.StyledTextCtrl_GotoLine(*args, **kwargs)
1614
1615 def GotoPos(*args, **kwargs):
9ad7392b
RD
1616 """
1617 GotoPos(self, int pos)
1618
1619 Set caret to a position and ensure it is visible.
1620 """
e811c8ce
RD
1621 return _stc.StyledTextCtrl_GotoPos(*args, **kwargs)
1622
1623 def SetAnchor(*args, **kwargs):
9ad7392b
RD
1624 """
1625 SetAnchor(self, int posAnchor)
1626
1627 Set the selection anchor to a position. The anchor is the opposite
1628 end of the selection from the caret.
1629 """
e811c8ce
RD
1630 return _stc.StyledTextCtrl_SetAnchor(*args, **kwargs)
1631
1632 def GetCurLine(*args, **kwargs):
9ad7392b
RD
1633 """
1634 GetCurLine(self) -> (text, pos)
1635
1636 Retrieve the text of the line containing the caret, and also theindex
1637 of the caret on the line.
1638 """
e811c8ce
RD
1639 return _stc.StyledTextCtrl_GetCurLine(*args, **kwargs)
1640
1641 def GetEndStyled(*args, **kwargs):
9ad7392b
RD
1642 """
1643 GetEndStyled(self) -> int
1644
1645 Retrieve the position of the last correctly styled character.
1646 """
e811c8ce
RD
1647 return _stc.StyledTextCtrl_GetEndStyled(*args, **kwargs)
1648
1649 def ConvertEOLs(*args, **kwargs):
9ad7392b
RD
1650 """
1651 ConvertEOLs(self, int eolMode)
1652
1653 Convert all line endings in the document to one mode.
1654 """
e811c8ce
RD
1655 return _stc.StyledTextCtrl_ConvertEOLs(*args, **kwargs)
1656
1657 def GetEOLMode(*args, **kwargs):
9ad7392b
RD
1658 """
1659 GetEOLMode(self) -> int
1660
1661 Retrieve the current end of line mode - one of CRLF, CR, or LF.
1662 """
e811c8ce
RD
1663 return _stc.StyledTextCtrl_GetEOLMode(*args, **kwargs)
1664
1665 def SetEOLMode(*args, **kwargs):
9ad7392b
RD
1666 """
1667 SetEOLMode(self, int eolMode)
1668
1669 Set the current end of line mode.
1670 """
e811c8ce
RD
1671 return _stc.StyledTextCtrl_SetEOLMode(*args, **kwargs)
1672
1673 def StartStyling(*args, **kwargs):
9ad7392b
RD
1674 """
1675 StartStyling(self, int pos, int mask)
1676
1677 Set the current styling position to pos and the styling mask to mask.
1678 The styling mask can be used to protect some bits in each styling byte from modification.
1679 """
e811c8ce
RD
1680 return _stc.StyledTextCtrl_StartStyling(*args, **kwargs)
1681
1682 def SetStyling(*args, **kwargs):
9ad7392b
RD
1683 """
1684 SetStyling(self, int length, int style)
1685
1686 Change style from current styling position for length characters to a style
1687 and move the current styling position to after this newly styled segment.
1688 """
e811c8ce
RD
1689 return _stc.StyledTextCtrl_SetStyling(*args, **kwargs)
1690
1691 def GetBufferedDraw(*args, **kwargs):
9ad7392b
RD
1692 """
1693 GetBufferedDraw(self) -> bool
1694
1695 Is drawing done first into a buffer or direct to the screen?
1696 """
e811c8ce
RD
1697 return _stc.StyledTextCtrl_GetBufferedDraw(*args, **kwargs)
1698
1699 def SetBufferedDraw(*args, **kwargs):
9ad7392b
RD
1700 """
1701 SetBufferedDraw(self, bool buffered)
1702
1703 If drawing is buffered then each line of text is drawn into a bitmap buffer
1704 before drawing it to the screen to avoid flicker.
1705 """
e811c8ce
RD
1706 return _stc.StyledTextCtrl_SetBufferedDraw(*args, **kwargs)
1707
1708 def SetTabWidth(*args, **kwargs):
9ad7392b
RD
1709 """
1710 SetTabWidth(self, int tabWidth)
1711
1712 Change the visible size of a tab to be a multiple of the width of a space character.
1713 """
e811c8ce
RD
1714 return _stc.StyledTextCtrl_SetTabWidth(*args, **kwargs)
1715
1716 def GetTabWidth(*args, **kwargs):
9ad7392b
RD
1717 """
1718 GetTabWidth(self) -> int
1719
1720 Retrieve the visible size of a tab.
1721 """
e811c8ce
RD
1722 return _stc.StyledTextCtrl_GetTabWidth(*args, **kwargs)
1723
1724 def SetCodePage(*args, **kwargs):
9ad7392b
RD
1725 """
1726 SetCodePage(self, int codePage)
1727
1728 Set the code page used to interpret the bytes of the document as characters.
1729 """
e811c8ce
RD
1730 return _stc.StyledTextCtrl_SetCodePage(*args, **kwargs)
1731
1732 def MarkerDefine(*args, **kwargs):
0df68c9f 1733 """
a95a7133 1734 MarkerDefine(self, int markerNumber, int markerSymbol, Colour foreground=wxNullColour,
196addbf 1735 Colour background=wxNullColour)
9ad7392b
RD
1736
1737 Set the symbol used for a particular marker number,
1738 and optionally the fore and background colours.
0df68c9f 1739 """
e811c8ce
RD
1740 return _stc.StyledTextCtrl_MarkerDefine(*args, **kwargs)
1741
1742 def MarkerSetForeground(*args, **kwargs):
9ad7392b
RD
1743 """
1744 MarkerSetForeground(self, int markerNumber, Colour fore)
1745
1746 Set the foreground colour used for a particular marker number.
1747 """
e811c8ce
RD
1748 return _stc.StyledTextCtrl_MarkerSetForeground(*args, **kwargs)
1749
1750 def MarkerSetBackground(*args, **kwargs):
9ad7392b
RD
1751 """
1752 MarkerSetBackground(self, int markerNumber, Colour back)
1753
1754 Set the background colour used for a particular marker number.
1755 """
e811c8ce
RD
1756 return _stc.StyledTextCtrl_MarkerSetBackground(*args, **kwargs)
1757
1758 def MarkerAdd(*args, **kwargs):
9ad7392b
RD
1759 """
1760 MarkerAdd(self, int line, int markerNumber) -> int
1761
1762 Add a marker to a line, returning an ID which can be used to find or delete the marker.
1763 """
e811c8ce
RD
1764 return _stc.StyledTextCtrl_MarkerAdd(*args, **kwargs)
1765
1766 def MarkerDelete(*args, **kwargs):
9ad7392b
RD
1767 """
1768 MarkerDelete(self, int line, int markerNumber)
1769
1770 Delete a marker from a line.
1771 """
e811c8ce
RD
1772 return _stc.StyledTextCtrl_MarkerDelete(*args, **kwargs)
1773
1774 def MarkerDeleteAll(*args, **kwargs):
9ad7392b
RD
1775 """
1776 MarkerDeleteAll(self, int markerNumber)
1777
1778 Delete all markers with a particular number from all lines.
1779 """
e811c8ce
RD
1780 return _stc.StyledTextCtrl_MarkerDeleteAll(*args, **kwargs)
1781
1782 def MarkerGet(*args, **kwargs):
9ad7392b
RD
1783 """
1784 MarkerGet(self, int line) -> int
1785
1786 Get a bit mask of all the markers set on a line.
1787 """
e811c8ce
RD
1788 return _stc.StyledTextCtrl_MarkerGet(*args, **kwargs)
1789
1790 def MarkerNext(*args, **kwargs):
9ad7392b
RD
1791 """
1792 MarkerNext(self, int lineStart, int markerMask) -> int
1793
1794 Find the next line after lineStart that includes a marker in mask.
1795 """
e811c8ce
RD
1796 return _stc.StyledTextCtrl_MarkerNext(*args, **kwargs)
1797
1798 def MarkerPrevious(*args, **kwargs):
9ad7392b
RD
1799 """
1800 MarkerPrevious(self, int lineStart, int markerMask) -> int
1801
1802 Find the previous line before lineStart that includes a marker in mask.
1803 """
e811c8ce
RD
1804 return _stc.StyledTextCtrl_MarkerPrevious(*args, **kwargs)
1805
1806 def MarkerDefineBitmap(*args, **kwargs):
9ad7392b
RD
1807 """
1808 MarkerDefineBitmap(self, int markerNumber, Bitmap bmp)
1809
1810 Define a marker from a bitmap
1811 """
e811c8ce
RD
1812 return _stc.StyledTextCtrl_MarkerDefineBitmap(*args, **kwargs)
1813
1bd55598
RD
1814 def MarkerAddSet(*args, **kwargs):
1815 """
1816 MarkerAddSet(self, int line, int set)
1817
1818 Add a set of markers to a line.
1819 """
1820 return _stc.StyledTextCtrl_MarkerAddSet(*args, **kwargs)
1821
10044bf1
RD
1822 def MarkerSetAlpha(*args, **kwargs):
1823 """
1824 MarkerSetAlpha(self, int markerNumber, int alpha)
1825
1826 Set the alpha used for a marker that is drawn in the text area, not the margin.
1827 """
1828 return _stc.StyledTextCtrl_MarkerSetAlpha(*args, **kwargs)
1829
e811c8ce 1830 def SetMarginType(*args, **kwargs):
9ad7392b
RD
1831 """
1832 SetMarginType(self, int margin, int marginType)
1833
1834 Set a margin to be either numeric or symbolic.
1835 """
e811c8ce
RD
1836 return _stc.StyledTextCtrl_SetMarginType(*args, **kwargs)
1837
1838 def GetMarginType(*args, **kwargs):
9ad7392b
RD
1839 """
1840 GetMarginType(self, int margin) -> int
1841
1842 Retrieve the type of a margin.
1843 """
e811c8ce
RD
1844 return _stc.StyledTextCtrl_GetMarginType(*args, **kwargs)
1845
1846 def SetMarginWidth(*args, **kwargs):
9ad7392b
RD
1847 """
1848 SetMarginWidth(self, int margin, int pixelWidth)
1849
1850 Set the width of a margin to a width expressed in pixels.
1851 """
e811c8ce
RD
1852 return _stc.StyledTextCtrl_SetMarginWidth(*args, **kwargs)
1853
1854 def GetMarginWidth(*args, **kwargs):
9ad7392b
RD
1855 """
1856 GetMarginWidth(self, int margin) -> int
1857
1858 Retrieve the width of a margin in pixels.
1859 """
e811c8ce
RD
1860 return _stc.StyledTextCtrl_GetMarginWidth(*args, **kwargs)
1861
1862 def SetMarginMask(*args, **kwargs):
9ad7392b
RD
1863 """
1864 SetMarginMask(self, int margin, int mask)
1865
1866 Set a mask that determines which markers are displayed in a margin.
1867 """
e811c8ce
RD
1868 return _stc.StyledTextCtrl_SetMarginMask(*args, **kwargs)
1869
1870 def GetMarginMask(*args, **kwargs):
9ad7392b
RD
1871 """
1872 GetMarginMask(self, int margin) -> int
1873
1874 Retrieve the marker mask of a margin.
1875 """
e811c8ce
RD
1876 return _stc.StyledTextCtrl_GetMarginMask(*args, **kwargs)
1877
1878 def SetMarginSensitive(*args, **kwargs):
9ad7392b
RD
1879 """
1880 SetMarginSensitive(self, int margin, bool sensitive)
1881
1882 Make a margin sensitive or insensitive to mouse clicks.
1883 """
e811c8ce
RD
1884 return _stc.StyledTextCtrl_SetMarginSensitive(*args, **kwargs)
1885
1886 def GetMarginSensitive(*args, **kwargs):
9ad7392b
RD
1887 """
1888 GetMarginSensitive(self, int margin) -> bool
1889
1890 Retrieve the mouse click sensitivity of a margin.
1891 """
e811c8ce
RD
1892 return _stc.StyledTextCtrl_GetMarginSensitive(*args, **kwargs)
1893
1894 def StyleClearAll(*args, **kwargs):
9ad7392b
RD
1895 """
1896 StyleClearAll(self)
1897
1898 Clear all the styles and make equivalent to the global default style.
1899 """
e811c8ce
RD
1900 return _stc.StyledTextCtrl_StyleClearAll(*args, **kwargs)
1901
1902 def StyleSetForeground(*args, **kwargs):
9ad7392b
RD
1903 """
1904 StyleSetForeground(self, int style, Colour fore)
1905
1906 Set the foreground colour of a style.
1907 """
e811c8ce
RD
1908 return _stc.StyledTextCtrl_StyleSetForeground(*args, **kwargs)
1909
1910 def StyleSetBackground(*args, **kwargs):
9ad7392b
RD
1911 """
1912 StyleSetBackground(self, int style, Colour back)
1913
1914 Set the background colour of a style.
1915 """
e811c8ce
RD
1916 return _stc.StyledTextCtrl_StyleSetBackground(*args, **kwargs)
1917
1918 def StyleSetBold(*args, **kwargs):
9ad7392b
RD
1919 """
1920 StyleSetBold(self, int style, bool bold)
1921
1922 Set a style to be bold or not.
1923 """
e811c8ce
RD
1924 return _stc.StyledTextCtrl_StyleSetBold(*args, **kwargs)
1925
1926 def StyleSetItalic(*args, **kwargs):
9ad7392b
RD
1927 """
1928 StyleSetItalic(self, int style, bool italic)
1929
1930 Set a style to be italic or not.
1931 """
e811c8ce
RD
1932 return _stc.StyledTextCtrl_StyleSetItalic(*args, **kwargs)
1933
1934 def StyleSetSize(*args, **kwargs):
9ad7392b
RD
1935 """
1936 StyleSetSize(self, int style, int sizePoints)
1937
1938 Set the size of characters of a style.
1939 """
e811c8ce
RD
1940 return _stc.StyledTextCtrl_StyleSetSize(*args, **kwargs)
1941
1942 def StyleSetFaceName(*args, **kwargs):
9ad7392b
RD
1943 """
1944 StyleSetFaceName(self, int style, String fontName)
1945
1946 Set the font of a style.
1947 """
e811c8ce
RD
1948 return _stc.StyledTextCtrl_StyleSetFaceName(*args, **kwargs)
1949
1950 def StyleSetEOLFilled(*args, **kwargs):
9ad7392b
RD
1951 """
1952 StyleSetEOLFilled(self, int style, bool filled)
1953
1954 Set a style to have its end of line filled or not.
1955 """
e811c8ce
RD
1956 return _stc.StyledTextCtrl_StyleSetEOLFilled(*args, **kwargs)
1957
1958 def StyleResetDefault(*args, **kwargs):
9ad7392b
RD
1959 """
1960 StyleResetDefault(self)
1961
1962 Reset the default style to its state at startup
1963 """
e811c8ce
RD
1964 return _stc.StyledTextCtrl_StyleResetDefault(*args, **kwargs)
1965
1966 def StyleSetUnderline(*args, **kwargs):
9ad7392b
RD
1967 """
1968 StyleSetUnderline(self, int style, bool underline)
1969
1970 Set a style to be underlined or not.
1971 """
e811c8ce
RD
1972 return _stc.StyledTextCtrl_StyleSetUnderline(*args, **kwargs)
1973
1974 def StyleSetCase(*args, **kwargs):
9ad7392b
RD
1975 """
1976 StyleSetCase(self, int style, int caseForce)
1977
1978 Set a style to be mixed case, or to force upper or lower case.
1979 """
e811c8ce
RD
1980 return _stc.StyledTextCtrl_StyleSetCase(*args, **kwargs)
1981
e811c8ce 1982 def StyleSetHotSpot(*args, **kwargs):
9ad7392b
RD
1983 """
1984 StyleSetHotSpot(self, int style, bool hotspot)
1985
1986 Set a style to be a hotspot or not.
1987 """
e811c8ce
RD
1988 return _stc.StyledTextCtrl_StyleSetHotSpot(*args, **kwargs)
1989
1990 def SetSelForeground(*args, **kwargs):
9ad7392b
RD
1991 """
1992 SetSelForeground(self, bool useSetting, Colour fore)
1993
1994 Set the foreground colour of the selection and whether to use this setting.
1995 """
e811c8ce
RD
1996 return _stc.StyledTextCtrl_SetSelForeground(*args, **kwargs)
1997
1998 def SetSelBackground(*args, **kwargs):
9ad7392b
RD
1999 """
2000 SetSelBackground(self, bool useSetting, Colour back)
2001
2002 Set the background colour of the selection and whether to use this setting.
2003 """
e811c8ce
RD
2004 return _stc.StyledTextCtrl_SetSelBackground(*args, **kwargs)
2005
10044bf1
RD
2006 def GetSelAlpha(*args, **kwargs):
2007 """
2008 GetSelAlpha(self) -> int
2009
2010 Get the alpha of the selection.
2011 """
2012 return _stc.StyledTextCtrl_GetSelAlpha(*args, **kwargs)
2013
2014 def SetSelAlpha(*args, **kwargs):
2015 """
2016 SetSelAlpha(self, int alpha)
2017
2018 Set the alpha of the selection.
2019 """
2020 return _stc.StyledTextCtrl_SetSelAlpha(*args, **kwargs)
2021
e811c8ce 2022 def SetCaretForeground(*args, **kwargs):
9ad7392b
RD
2023 """
2024 SetCaretForeground(self, Colour fore)
2025
2026 Set the foreground colour of the caret.
2027 """
e811c8ce
RD
2028 return _stc.StyledTextCtrl_SetCaretForeground(*args, **kwargs)
2029
2030 def CmdKeyAssign(*args, **kwargs):
9ad7392b
RD
2031 """
2032 CmdKeyAssign(self, int key, int modifiers, int cmd)
2033
2034 When key+modifier combination km is pressed perform msg.
2035 """
e811c8ce
RD
2036 return _stc.StyledTextCtrl_CmdKeyAssign(*args, **kwargs)
2037
2038 def CmdKeyClear(*args, **kwargs):
9ad7392b
RD
2039 """
2040 CmdKeyClear(self, int key, int modifiers)
2041
2042 When key+modifier combination km is pressed do nothing.
2043 """
e811c8ce
RD
2044 return _stc.StyledTextCtrl_CmdKeyClear(*args, **kwargs)
2045
2046 def CmdKeyClearAll(*args, **kwargs):
9ad7392b
RD
2047 """
2048 CmdKeyClearAll(self)
2049
2050 Drop all key mappings.
2051 """
e811c8ce
RD
2052 return _stc.StyledTextCtrl_CmdKeyClearAll(*args, **kwargs)
2053
2054 def SetStyleBytes(*args, **kwargs):
9ad7392b
RD
2055 """
2056 SetStyleBytes(self, int length, char styleBytes)
2057
2058 Set the styles for a segment of the document.
2059 """
e811c8ce
RD
2060 return _stc.StyledTextCtrl_SetStyleBytes(*args, **kwargs)
2061
2062 def StyleSetVisible(*args, **kwargs):
9ad7392b
RD
2063 """
2064 StyleSetVisible(self, int style, bool visible)
2065
2066 Set a style to be visible or not.
2067 """
e811c8ce
RD
2068 return _stc.StyledTextCtrl_StyleSetVisible(*args, **kwargs)
2069
2070 def GetCaretPeriod(*args, **kwargs):
9ad7392b
RD
2071 """
2072 GetCaretPeriod(self) -> int
2073
2074 Get the time in milliseconds that the caret is on and off.
2075 """
e811c8ce
RD
2076 return _stc.StyledTextCtrl_GetCaretPeriod(*args, **kwargs)
2077
2078 def SetCaretPeriod(*args, **kwargs):
9ad7392b
RD
2079 """
2080 SetCaretPeriod(self, int periodMilliseconds)
2081
2082 Get the time in milliseconds that the caret is on and off. 0 = steady on.
2083 """
e811c8ce
RD
2084 return _stc.StyledTextCtrl_SetCaretPeriod(*args, **kwargs)
2085
2086 def SetWordChars(*args, **kwargs):
9ad7392b
RD
2087 """
2088 SetWordChars(self, String characters)
2089
2090 Set the set of characters making up words for when moving or selecting by word.
2091 First sets deaults like SetCharsDefault.
2092 """
e811c8ce
RD
2093 return _stc.StyledTextCtrl_SetWordChars(*args, **kwargs)
2094
2095 def BeginUndoAction(*args, **kwargs):
9ad7392b
RD
2096 """
2097 BeginUndoAction(self)
2098
2099 Start a sequence of actions that is undone and redone as a unit.
2100 May be nested.
2101 """
e811c8ce
RD
2102 return _stc.StyledTextCtrl_BeginUndoAction(*args, **kwargs)
2103
2104 def EndUndoAction(*args, **kwargs):
9ad7392b
RD
2105 """
2106 EndUndoAction(self)
2107
2108 End a sequence of actions that is undone and redone as a unit.
2109 """
e811c8ce
RD
2110 return _stc.StyledTextCtrl_EndUndoAction(*args, **kwargs)
2111
2112 def IndicatorSetStyle(*args, **kwargs):
9ad7392b
RD
2113 """
2114 IndicatorSetStyle(self, int indic, int style)
2115
2116 Set an indicator to plain, squiggle or TT.
2117 """
e811c8ce
RD
2118 return _stc.StyledTextCtrl_IndicatorSetStyle(*args, **kwargs)
2119
2120 def IndicatorGetStyle(*args, **kwargs):
9ad7392b
RD
2121 """
2122 IndicatorGetStyle(self, int indic) -> int
2123
2124 Retrieve the style of an indicator.
2125 """
e811c8ce
RD
2126 return _stc.StyledTextCtrl_IndicatorGetStyle(*args, **kwargs)
2127
2128 def IndicatorSetForeground(*args, **kwargs):
9ad7392b
RD
2129 """
2130 IndicatorSetForeground(self, int indic, Colour fore)
2131
2132 Set the foreground colour of an indicator.
2133 """
e811c8ce
RD
2134 return _stc.StyledTextCtrl_IndicatorSetForeground(*args, **kwargs)
2135
2136 def IndicatorGetForeground(*args, **kwargs):
9ad7392b
RD
2137 """
2138 IndicatorGetForeground(self, int indic) -> Colour
2139
2140 Retrieve the foreground colour of an indicator.
2141 """
e811c8ce
RD
2142 return _stc.StyledTextCtrl_IndicatorGetForeground(*args, **kwargs)
2143
2144 def SetWhitespaceForeground(*args, **kwargs):
9ad7392b
RD
2145 """
2146 SetWhitespaceForeground(self, bool useSetting, Colour fore)
2147
2148 Set the foreground colour of all whitespace and whether to use this setting.
2149 """
e811c8ce
RD
2150 return _stc.StyledTextCtrl_SetWhitespaceForeground(*args, **kwargs)
2151
2152 def SetWhitespaceBackground(*args, **kwargs):
9ad7392b
RD
2153 """
2154 SetWhitespaceBackground(self, bool useSetting, Colour back)
2155
2156 Set the background colour of all whitespace and whether to use this setting.
2157 """
e811c8ce
RD
2158 return _stc.StyledTextCtrl_SetWhitespaceBackground(*args, **kwargs)
2159
2160 def SetStyleBits(*args, **kwargs):
9ad7392b
RD
2161 """
2162 SetStyleBits(self, int bits)
2163
2164 Divide each styling byte into lexical class bits (default: 5) and indicator
2165 bits (default: 3). If a lexer requires more than 32 lexical states, then this
2166 is used to expand the possible states.
2167 """
e811c8ce
RD
2168 return _stc.StyledTextCtrl_SetStyleBits(*args, **kwargs)
2169
2170 def GetStyleBits(*args, **kwargs):
9ad7392b
RD
2171 """
2172 GetStyleBits(self) -> int
2173
2174 Retrieve number of bits in style bytes used to hold the lexical state.
2175 """
e811c8ce
RD
2176 return _stc.StyledTextCtrl_GetStyleBits(*args, **kwargs)
2177
2178 def SetLineState(*args, **kwargs):
9ad7392b
RD
2179 """
2180 SetLineState(self, int line, int state)
2181
2182 Used to hold extra styling information for each line.
2183 """
e811c8ce
RD
2184 return _stc.StyledTextCtrl_SetLineState(*args, **kwargs)
2185
2186 def GetLineState(*args, **kwargs):
9ad7392b
RD
2187 """
2188 GetLineState(self, int line) -> int
2189
2190 Retrieve the extra styling information for a line.
2191 """
e811c8ce
RD
2192 return _stc.StyledTextCtrl_GetLineState(*args, **kwargs)
2193
2194 def GetMaxLineState(*args, **kwargs):
9ad7392b
RD
2195 """
2196 GetMaxLineState(self) -> int
2197
2198 Retrieve the last line number that has line state.
2199 """
e811c8ce
RD
2200 return _stc.StyledTextCtrl_GetMaxLineState(*args, **kwargs)
2201
2202 def GetCaretLineVisible(*args, **kwargs):
9ad7392b
RD
2203 """
2204 GetCaretLineVisible(self) -> bool
2205
2206 Is the background of the line containing the caret in a different colour?
2207 """
e811c8ce
RD
2208 return _stc.StyledTextCtrl_GetCaretLineVisible(*args, **kwargs)
2209
2210 def SetCaretLineVisible(*args, **kwargs):
9ad7392b
RD
2211 """
2212 SetCaretLineVisible(self, bool show)
2213
2214 Display the background of the line containing the caret in a different colour.
2215 """
e811c8ce
RD
2216 return _stc.StyledTextCtrl_SetCaretLineVisible(*args, **kwargs)
2217
2bf58437 2218 def GetCaretLineBackground(*args, **kwargs):
9ad7392b 2219 """
2bf58437 2220 GetCaretLineBackground(self) -> Colour
9ad7392b
RD
2221
2222 Get the colour of the background of the line containing the caret.
2223 """
2bf58437 2224 return _stc.StyledTextCtrl_GetCaretLineBackground(*args, **kwargs)
e811c8ce 2225
2bf58437 2226 def SetCaretLineBackground(*args, **kwargs):
9ad7392b 2227 """
2bf58437 2228 SetCaretLineBackground(self, Colour back)
9ad7392b
RD
2229
2230 Set the colour of the background of the line containing the caret.
2231 """
2bf58437 2232 return _stc.StyledTextCtrl_SetCaretLineBackground(*args, **kwargs)
e811c8ce
RD
2233
2234 def StyleSetChangeable(*args, **kwargs):
9ad7392b
RD
2235 """
2236 StyleSetChangeable(self, int style, bool changeable)
2237
2238 Set a style to be changeable or not (read only).
2239 Experimental feature, currently buggy.
2240 """
e811c8ce
RD
2241 return _stc.StyledTextCtrl_StyleSetChangeable(*args, **kwargs)
2242
2243 def AutoCompShow(*args, **kwargs):
9ad7392b
RD
2244 """
2245 AutoCompShow(self, int lenEntered, String itemList)
2246
2247 Display a auto-completion list.
2248 The lenEntered parameter indicates how many characters before
2249 the caret should be used to provide context.
2250 """
e811c8ce
RD
2251 return _stc.StyledTextCtrl_AutoCompShow(*args, **kwargs)
2252
2253 def AutoCompCancel(*args, **kwargs):
9ad7392b
RD
2254 """
2255 AutoCompCancel(self)
2256
2257 Remove the auto-completion list from the screen.
2258 """
e811c8ce
RD
2259 return _stc.StyledTextCtrl_AutoCompCancel(*args, **kwargs)
2260
2261 def AutoCompActive(*args, **kwargs):
9ad7392b
RD
2262 """
2263 AutoCompActive(self) -> bool
2264
2265 Is there an auto-completion list visible?
2266 """
e811c8ce
RD
2267 return _stc.StyledTextCtrl_AutoCompActive(*args, **kwargs)
2268
2269 def AutoCompPosStart(*args, **kwargs):
9ad7392b
RD
2270 """
2271 AutoCompPosStart(self) -> int
2272
2273 Retrieve the position of the caret when the auto-completion list was displayed.
2274 """
e811c8ce
RD
2275 return _stc.StyledTextCtrl_AutoCompPosStart(*args, **kwargs)
2276
2277 def AutoCompComplete(*args, **kwargs):
9ad7392b
RD
2278 """
2279 AutoCompComplete(self)
2280
2281 User has selected an item so remove the list and insert the selection.
2282 """
e811c8ce
RD
2283 return _stc.StyledTextCtrl_AutoCompComplete(*args, **kwargs)
2284
2285 def AutoCompStops(*args, **kwargs):
9ad7392b
RD
2286 """
2287 AutoCompStops(self, String characterSet)
2288
2289 Define a set of character that when typed cancel the auto-completion list.
2290 """
e811c8ce
RD
2291 return _stc.StyledTextCtrl_AutoCompStops(*args, **kwargs)
2292
2293 def AutoCompSetSeparator(*args, **kwargs):
9ad7392b
RD
2294 """
2295 AutoCompSetSeparator(self, int separatorCharacter)
2296
2297 Change the separator character in the string setting up an auto-completion list.
2298 Default is space but can be changed if items contain space.
2299 """
e811c8ce
RD
2300 return _stc.StyledTextCtrl_AutoCompSetSeparator(*args, **kwargs)
2301
2302 def AutoCompGetSeparator(*args, **kwargs):
9ad7392b
RD
2303 """
2304 AutoCompGetSeparator(self) -> int
2305
2306 Retrieve the auto-completion list separator character.
2307 """
e811c8ce
RD
2308 return _stc.StyledTextCtrl_AutoCompGetSeparator(*args, **kwargs)
2309
2310 def AutoCompSelect(*args, **kwargs):
9ad7392b
RD
2311 """
2312 AutoCompSelect(self, String text)
2313
2314 Select the item in the auto-completion list that starts with a string.
2315 """
e811c8ce
RD
2316 return _stc.StyledTextCtrl_AutoCompSelect(*args, **kwargs)
2317
2318 def AutoCompSetCancelAtStart(*args, **kwargs):
9ad7392b
RD
2319 """
2320 AutoCompSetCancelAtStart(self, bool cancel)
2321
2322 Should the auto-completion list be cancelled if the user backspaces to a
2323 position before where the box was created.
2324 """
e811c8ce
RD
2325 return _stc.StyledTextCtrl_AutoCompSetCancelAtStart(*args, **kwargs)
2326
2327 def AutoCompGetCancelAtStart(*args, **kwargs):
9ad7392b
RD
2328 """
2329 AutoCompGetCancelAtStart(self) -> bool
2330
2331 Retrieve whether auto-completion cancelled by backspacing before start.
2332 """
e811c8ce
RD
2333 return _stc.StyledTextCtrl_AutoCompGetCancelAtStart(*args, **kwargs)
2334
2335 def AutoCompSetFillUps(*args, **kwargs):
9ad7392b
RD
2336 """
2337 AutoCompSetFillUps(self, String characterSet)
2338
2339 Define a set of characters that when typed will cause the autocompletion to
2340 choose the selected item.
2341 """
e811c8ce
RD
2342 return _stc.StyledTextCtrl_AutoCompSetFillUps(*args, **kwargs)
2343
2344 def AutoCompSetChooseSingle(*args, **kwargs):
9ad7392b
RD
2345 """
2346 AutoCompSetChooseSingle(self, bool chooseSingle)
2347
2348 Should a single item auto-completion list automatically choose the item.
2349 """
e811c8ce
RD
2350 return _stc.StyledTextCtrl_AutoCompSetChooseSingle(*args, **kwargs)
2351
2352 def AutoCompGetChooseSingle(*args, **kwargs):
9ad7392b
RD
2353 """
2354 AutoCompGetChooseSingle(self) -> bool
2355
2356 Retrieve whether a single item auto-completion list automatically choose the item.
2357 """
e811c8ce
RD
2358 return _stc.StyledTextCtrl_AutoCompGetChooseSingle(*args, **kwargs)
2359
2360 def AutoCompSetIgnoreCase(*args, **kwargs):
9ad7392b
RD
2361 """
2362 AutoCompSetIgnoreCase(self, bool ignoreCase)
2363
2364 Set whether case is significant when performing auto-completion searches.
2365 """
e811c8ce
RD
2366 return _stc.StyledTextCtrl_AutoCompSetIgnoreCase(*args, **kwargs)
2367
2368 def AutoCompGetIgnoreCase(*args, **kwargs):
9ad7392b
RD
2369 """
2370 AutoCompGetIgnoreCase(self) -> bool
2371
2372 Retrieve state of ignore case flag.
2373 """
e811c8ce
RD
2374 return _stc.StyledTextCtrl_AutoCompGetIgnoreCase(*args, **kwargs)
2375
2376 def UserListShow(*args, **kwargs):
9ad7392b
RD
2377 """
2378 UserListShow(self, int listType, String itemList)
2379
2380 Display a list of strings and send notification when user chooses one.
2381 """
e811c8ce
RD
2382 return _stc.StyledTextCtrl_UserListShow(*args, **kwargs)
2383
2384 def AutoCompSetAutoHide(*args, **kwargs):
9ad7392b
RD
2385 """
2386 AutoCompSetAutoHide(self, bool autoHide)
2387
2388 Set whether or not autocompletion is hidden automatically when nothing matches.
2389 """
e811c8ce
RD
2390 return _stc.StyledTextCtrl_AutoCompSetAutoHide(*args, **kwargs)
2391
2392 def AutoCompGetAutoHide(*args, **kwargs):
9ad7392b
RD
2393 """
2394 AutoCompGetAutoHide(self) -> bool
2395
2396 Retrieve whether or not autocompletion is hidden automatically when nothing matches.
2397 """
e811c8ce
RD
2398 return _stc.StyledTextCtrl_AutoCompGetAutoHide(*args, **kwargs)
2399
2400 def AutoCompSetDropRestOfWord(*args, **kwargs):
9ad7392b
RD
2401 """
2402 AutoCompSetDropRestOfWord(self, bool dropRestOfWord)
2403
2404 Set whether or not autocompletion deletes any word characters
2405 after the inserted text upon completion.
2406 """
e811c8ce
RD
2407 return _stc.StyledTextCtrl_AutoCompSetDropRestOfWord(*args, **kwargs)
2408
2409 def AutoCompGetDropRestOfWord(*args, **kwargs):
9ad7392b
RD
2410 """
2411 AutoCompGetDropRestOfWord(self) -> bool
2412
2413 Retrieve whether or not autocompletion deletes any word characters
2414 after the inserted text upon completion.
2415 """
e811c8ce
RD
2416 return _stc.StyledTextCtrl_AutoCompGetDropRestOfWord(*args, **kwargs)
2417
2418 def RegisterImage(*args, **kwargs):
9ad7392b
RD
2419 """
2420 RegisterImage(self, int type, Bitmap bmp)
2421
2422 Register an image for use in autocompletion lists.
2423 """
e811c8ce
RD
2424 return _stc.StyledTextCtrl_RegisterImage(*args, **kwargs)
2425
2426 def ClearRegisteredImages(*args, **kwargs):
9ad7392b
RD
2427 """
2428 ClearRegisteredImages(self)
2429
2430 Clear all the registered images.
2431 """
e811c8ce
RD
2432 return _stc.StyledTextCtrl_ClearRegisteredImages(*args, **kwargs)
2433
2434 def AutoCompGetTypeSeparator(*args, **kwargs):
9ad7392b
RD
2435 """
2436 AutoCompGetTypeSeparator(self) -> int
2437
2438 Retrieve the auto-completion list type-separator character.
2439 """
e811c8ce
RD
2440 return _stc.StyledTextCtrl_AutoCompGetTypeSeparator(*args, **kwargs)
2441
2442 def AutoCompSetTypeSeparator(*args, **kwargs):
9ad7392b
RD
2443 """
2444 AutoCompSetTypeSeparator(self, int separatorCharacter)
2445
2446 Change the type-separator character in the string setting up an auto-completion list.
2447 Default is '?' but can be changed if items contain '?'.
2448 """
e811c8ce
RD
2449 return _stc.StyledTextCtrl_AutoCompSetTypeSeparator(*args, **kwargs)
2450
1bd55598
RD
2451 def AutoCompSetMaxWidth(*args, **kwargs):
2452 """
2453 AutoCompSetMaxWidth(self, int characterCount)
2454
2455 Set the maximum width, in characters, of auto-completion and user lists.
2456 Set to 0 to autosize to fit longest item, which is the default.
2457 """
2458 return _stc.StyledTextCtrl_AutoCompSetMaxWidth(*args, **kwargs)
2459
2460 def AutoCompGetMaxWidth(*args, **kwargs):
2461 """
2462 AutoCompGetMaxWidth(self) -> int
2463
2464 Get the maximum width, in characters, of auto-completion and user lists.
2465 """
2466 return _stc.StyledTextCtrl_AutoCompGetMaxWidth(*args, **kwargs)
2467
2468 def AutoCompSetMaxHeight(*args, **kwargs):
2469 """
2470 AutoCompSetMaxHeight(self, int rowCount)
2471
2472 Set the maximum height, in rows, of auto-completion and user lists.
2473 The default is 5 rows.
2474 """
2475 return _stc.StyledTextCtrl_AutoCompSetMaxHeight(*args, **kwargs)
2476
2477 def AutoCompGetMaxHeight(*args, **kwargs):
2478 """
2479 AutoCompGetMaxHeight(self) -> int
2480
2481 Set the maximum height, in rows, of auto-completion and user lists.
2482 """
2483 return _stc.StyledTextCtrl_AutoCompGetMaxHeight(*args, **kwargs)
2484
e811c8ce 2485 def SetIndent(*args, **kwargs):
9ad7392b
RD
2486 """
2487 SetIndent(self, int indentSize)
2488
2489 Set the number of spaces used for one level of indentation.
2490 """
e811c8ce
RD
2491 return _stc.StyledTextCtrl_SetIndent(*args, **kwargs)
2492
2493 def GetIndent(*args, **kwargs):
9ad7392b
RD
2494 """
2495 GetIndent(self) -> int
2496
2497 Retrieve indentation size.
2498 """
e811c8ce
RD
2499 return _stc.StyledTextCtrl_GetIndent(*args, **kwargs)
2500
2501 def SetUseTabs(*args, **kwargs):
9ad7392b
RD
2502 """
2503 SetUseTabs(self, bool useTabs)
2504
2505 Indentation will only use space characters if useTabs is false, otherwise
2506 it will use a combination of tabs and spaces.
2507 """
e811c8ce
RD
2508 return _stc.StyledTextCtrl_SetUseTabs(*args, **kwargs)
2509
2510 def GetUseTabs(*args, **kwargs):
9ad7392b
RD
2511 """
2512 GetUseTabs(self) -> bool
2513
2514 Retrieve whether tabs will be used in indentation.
2515 """
e811c8ce
RD
2516 return _stc.StyledTextCtrl_GetUseTabs(*args, **kwargs)
2517
2518 def SetLineIndentation(*args, **kwargs):
9ad7392b
RD
2519 """
2520 SetLineIndentation(self, int line, int indentSize)
2521
2522 Change the indentation of a line to a number of columns.
2523 """
e811c8ce
RD
2524 return _stc.StyledTextCtrl_SetLineIndentation(*args, **kwargs)
2525
2526 def GetLineIndentation(*args, **kwargs):
9ad7392b
RD
2527 """
2528 GetLineIndentation(self, int line) -> int
2529
2530 Retrieve the number of columns that a line is indented.
2531 """
e811c8ce
RD
2532 return _stc.StyledTextCtrl_GetLineIndentation(*args, **kwargs)
2533
2534 def GetLineIndentPosition(*args, **kwargs):
9ad7392b
RD
2535 """
2536 GetLineIndentPosition(self, int line) -> int
2537
2538 Retrieve the position before the first non indentation character on a line.
2539 """
e811c8ce
RD
2540 return _stc.StyledTextCtrl_GetLineIndentPosition(*args, **kwargs)
2541
2542 def GetColumn(*args, **kwargs):
9ad7392b
RD
2543 """
2544 GetColumn(self, int pos) -> int
2545
2546 Retrieve the column number of a position, taking tab width into account.
2547 """
e811c8ce
RD
2548 return _stc.StyledTextCtrl_GetColumn(*args, **kwargs)
2549
2550 def SetUseHorizontalScrollBar(*args, **kwargs):
9ad7392b
RD
2551 """
2552 SetUseHorizontalScrollBar(self, bool show)
2553
2554 Show or hide the horizontal scroll bar.
2555 """
e811c8ce
RD
2556 return _stc.StyledTextCtrl_SetUseHorizontalScrollBar(*args, **kwargs)
2557
2558 def GetUseHorizontalScrollBar(*args, **kwargs):
9ad7392b
RD
2559 """
2560 GetUseHorizontalScrollBar(self) -> bool
2561
2562 Is the horizontal scroll bar visible?
2563 """
e811c8ce
RD
2564 return _stc.StyledTextCtrl_GetUseHorizontalScrollBar(*args, **kwargs)
2565
2566 def SetIndentationGuides(*args, **kwargs):
9ad7392b
RD
2567 """
2568 SetIndentationGuides(self, bool show)
2569
2570 Show or hide indentation guides.
2571 """
e811c8ce
RD
2572 return _stc.StyledTextCtrl_SetIndentationGuides(*args, **kwargs)
2573
2574 def GetIndentationGuides(*args, **kwargs):
9ad7392b
RD
2575 """
2576 GetIndentationGuides(self) -> bool
2577
2578 Are the indentation guides visible?
2579 """
e811c8ce
RD
2580 return _stc.StyledTextCtrl_GetIndentationGuides(*args, **kwargs)
2581
2582 def SetHighlightGuide(*args, **kwargs):
9ad7392b
RD
2583 """
2584 SetHighlightGuide(self, int column)
2585
2586 Set the highlighted indentation guide column.
2587 0 = no highlighted guide.
2588 """
e811c8ce
RD
2589 return _stc.StyledTextCtrl_SetHighlightGuide(*args, **kwargs)
2590
2591 def GetHighlightGuide(*args, **kwargs):
9ad7392b
RD
2592 """
2593 GetHighlightGuide(self) -> int
2594
2595 Get the highlighted indentation guide column.
2596 """
e811c8ce
RD
2597 return _stc.StyledTextCtrl_GetHighlightGuide(*args, **kwargs)
2598
2599 def GetLineEndPosition(*args, **kwargs):
9ad7392b
RD
2600 """
2601 GetLineEndPosition(self, int line) -> int
2602
2603 Get the position after the last visible characters on a line.
2604 """
e811c8ce
RD
2605 return _stc.StyledTextCtrl_GetLineEndPosition(*args, **kwargs)
2606
2607 def GetCodePage(*args, **kwargs):
9ad7392b
RD
2608 """
2609 GetCodePage(self) -> int
2610
2611 Get the code page used to interpret the bytes of the document as characters.
2612 """
e811c8ce
RD
2613 return _stc.StyledTextCtrl_GetCodePage(*args, **kwargs)
2614
2615 def GetCaretForeground(*args, **kwargs):
9ad7392b
RD
2616 """
2617 GetCaretForeground(self) -> Colour
2618
2619 Get the foreground colour of the caret.
2620 """
e811c8ce
RD
2621 return _stc.StyledTextCtrl_GetCaretForeground(*args, **kwargs)
2622
2623 def GetReadOnly(*args, **kwargs):
9ad7392b
RD
2624 """
2625 GetReadOnly(self) -> bool
2626
2627 In read-only mode?
2628 """
e811c8ce
RD
2629 return _stc.StyledTextCtrl_GetReadOnly(*args, **kwargs)
2630
2631 def SetCurrentPos(*args, **kwargs):
9ad7392b
RD
2632 """
2633 SetCurrentPos(self, int pos)
2634
2635 Sets the position of the caret.
2636 """
e811c8ce
RD
2637 return _stc.StyledTextCtrl_SetCurrentPos(*args, **kwargs)
2638
2639 def SetSelectionStart(*args, **kwargs):
9ad7392b
RD
2640 """
2641 SetSelectionStart(self, int pos)
2642
2643 Sets the position that starts the selection - this becomes the anchor.
2644 """
e811c8ce
RD
2645 return _stc.StyledTextCtrl_SetSelectionStart(*args, **kwargs)
2646
2647 def GetSelectionStart(*args, **kwargs):
9ad7392b
RD
2648 """
2649 GetSelectionStart(self) -> int
2650
2651 Returns the position at the start of the selection.
2652 """
e811c8ce
RD
2653 return _stc.StyledTextCtrl_GetSelectionStart(*args, **kwargs)
2654
2655 def SetSelectionEnd(*args, **kwargs):
9ad7392b
RD
2656 """
2657 SetSelectionEnd(self, int pos)
2658
2659 Sets the position that ends the selection - this becomes the currentPosition.
2660 """
e811c8ce
RD
2661 return _stc.StyledTextCtrl_SetSelectionEnd(*args, **kwargs)
2662
2663 def GetSelectionEnd(*args, **kwargs):
9ad7392b
RD
2664 """
2665 GetSelectionEnd(self) -> int
2666
2667 Returns the position at the end of the selection.
2668 """
e811c8ce
RD
2669 return _stc.StyledTextCtrl_GetSelectionEnd(*args, **kwargs)
2670
2671 def SetPrintMagnification(*args, **kwargs):
9ad7392b
RD
2672 """
2673 SetPrintMagnification(self, int magnification)
2674
2675 Sets the print magnification added to the point size of each style for printing.
2676 """
e811c8ce
RD
2677 return _stc.StyledTextCtrl_SetPrintMagnification(*args, **kwargs)
2678
2679 def GetPrintMagnification(*args, **kwargs):
9ad7392b
RD
2680 """
2681 GetPrintMagnification(self) -> int
2682
2683 Returns the print magnification.
2684 """
e811c8ce
RD
2685 return _stc.StyledTextCtrl_GetPrintMagnification(*args, **kwargs)
2686
2687 def SetPrintColourMode(*args, **kwargs):
9ad7392b
RD
2688 """
2689 SetPrintColourMode(self, int mode)
2690
2691 Modify colours when printing for clearer printed text.
2692 """
e811c8ce
RD
2693 return _stc.StyledTextCtrl_SetPrintColourMode(*args, **kwargs)
2694
2695 def GetPrintColourMode(*args, **kwargs):
9ad7392b
RD
2696 """
2697 GetPrintColourMode(self) -> int
2698
2699 Returns the print colour mode.
2700 """
e811c8ce
RD
2701 return _stc.StyledTextCtrl_GetPrintColourMode(*args, **kwargs)
2702
2703 def FindText(*args, **kwargs):
9ad7392b
RD
2704 """
2705 FindText(self, int minPos, int maxPos, String text, int flags=0) -> int
2706
2707 Find some text in the document.
2708 """
e811c8ce
RD
2709 return _stc.StyledTextCtrl_FindText(*args, **kwargs)
2710
2711 def FormatRange(*args, **kwargs):
0df68c9f 2712 """
a95a7133 2713 FormatRange(self, bool doDraw, int startPos, int endPos, DC draw, DC target,
0df68c9f 2714 Rect renderRect, Rect pageRect) -> int
9ad7392b
RD
2715
2716 On Windows, will draw the document into a display context such as a printer.
0df68c9f 2717 """
e811c8ce
RD
2718 return _stc.StyledTextCtrl_FormatRange(*args, **kwargs)
2719
2720 def GetFirstVisibleLine(*args, **kwargs):
9ad7392b
RD
2721 """
2722 GetFirstVisibleLine(self) -> int
2723
2724 Retrieve the display line at the top of the display.
2725 """
e811c8ce
RD
2726 return _stc.StyledTextCtrl_GetFirstVisibleLine(*args, **kwargs)
2727
2728 def GetLine(*args, **kwargs):
9ad7392b
RD
2729 """
2730 GetLine(self, int line) -> String
2731
2732 Retrieve the contents of a line.
2733 """
e811c8ce
RD
2734 return _stc.StyledTextCtrl_GetLine(*args, **kwargs)
2735
2736 def GetLineCount(*args, **kwargs):
9ad7392b
RD
2737 """
2738 GetLineCount(self) -> int
2739
2740 Returns the number of lines in the document. There is always at least one.
2741 """
e811c8ce
RD
2742 return _stc.StyledTextCtrl_GetLineCount(*args, **kwargs)
2743
2744 def SetMarginLeft(*args, **kwargs):
9ad7392b
RD
2745 """
2746 SetMarginLeft(self, int pixelWidth)
2747
2748 Sets the size in pixels of the left margin.
2749 """
e811c8ce
RD
2750 return _stc.StyledTextCtrl_SetMarginLeft(*args, **kwargs)
2751
2752 def GetMarginLeft(*args, **kwargs):
9ad7392b
RD
2753 """
2754 GetMarginLeft(self) -> int
2755
2756 Returns the size in pixels of the left margin.
2757 """
e811c8ce
RD
2758 return _stc.StyledTextCtrl_GetMarginLeft(*args, **kwargs)
2759
2760 def SetMarginRight(*args, **kwargs):
9ad7392b
RD
2761 """
2762 SetMarginRight(self, int pixelWidth)
2763
2764 Sets the size in pixels of the right margin.
2765 """
e811c8ce
RD
2766 return _stc.StyledTextCtrl_SetMarginRight(*args, **kwargs)
2767
2768 def GetMarginRight(*args, **kwargs):
9ad7392b
RD
2769 """
2770 GetMarginRight(self) -> int
2771
2772 Returns the size in pixels of the right margin.
2773 """
e811c8ce
RD
2774 return _stc.StyledTextCtrl_GetMarginRight(*args, **kwargs)
2775
2776 def GetModify(*args, **kwargs):
9ad7392b
RD
2777 """
2778 GetModify(self) -> bool
2779
2780 Is the document different from when it was last saved?
2781 """
e811c8ce
RD
2782 return _stc.StyledTextCtrl_GetModify(*args, **kwargs)
2783
2784 def SetSelection(*args, **kwargs):
9ad7392b
RD
2785 """
2786 SetSelection(self, int start, int end)
2787
2788 Select a range of text.
2789 """
e811c8ce
RD
2790 return _stc.StyledTextCtrl_SetSelection(*args, **kwargs)
2791
2792 def GetSelectedText(*args, **kwargs):
9ad7392b
RD
2793 """
2794 GetSelectedText(self) -> String
2795
2796 Retrieve the selected text.
2797 """
e811c8ce
RD
2798 return _stc.StyledTextCtrl_GetSelectedText(*args, **kwargs)
2799
2800 def GetTextRange(*args, **kwargs):
9ad7392b
RD
2801 """
2802 GetTextRange(self, int startPos, int endPos) -> String
2803
2804 Retrieve a range of text.
2805 """
e811c8ce
RD
2806 return _stc.StyledTextCtrl_GetTextRange(*args, **kwargs)
2807
2808 def HideSelection(*args, **kwargs):
9ad7392b
RD
2809 """
2810 HideSelection(self, bool normal)
2811
2812 Draw the selection in normal style or with selection highlighted.
2813 """
e811c8ce
RD
2814 return _stc.StyledTextCtrl_HideSelection(*args, **kwargs)
2815
2816 def LineFromPosition(*args, **kwargs):
9ad7392b
RD
2817 """
2818 LineFromPosition(self, int pos) -> int
2819
2820 Retrieve the line containing a position.
2821 """
e811c8ce
RD
2822 return _stc.StyledTextCtrl_LineFromPosition(*args, **kwargs)
2823
2824 def PositionFromLine(*args, **kwargs):
9ad7392b
RD
2825 """
2826 PositionFromLine(self, int line) -> int
2827
2828 Retrieve the position at the start of a line.
2829 """
e811c8ce
RD
2830 return _stc.StyledTextCtrl_PositionFromLine(*args, **kwargs)
2831
2832 def LineScroll(*args, **kwargs):
9ad7392b
RD
2833 """
2834 LineScroll(self, int columns, int lines)
2835
2836 Scroll horizontally and vertically.
2837 """
e811c8ce
RD
2838 return _stc.StyledTextCtrl_LineScroll(*args, **kwargs)
2839
2840 def EnsureCaretVisible(*args, **kwargs):
9ad7392b
RD
2841 """
2842 EnsureCaretVisible(self)
2843
2844 Ensure the caret is visible.
2845 """
e811c8ce
RD
2846 return _stc.StyledTextCtrl_EnsureCaretVisible(*args, **kwargs)
2847
2848 def ReplaceSelection(*args, **kwargs):
9ad7392b
RD
2849 """
2850 ReplaceSelection(self, String text)
2851
2852 Replace the selected text with the argument text.
2853 """
e811c8ce
RD
2854 return _stc.StyledTextCtrl_ReplaceSelection(*args, **kwargs)
2855
2856 def SetReadOnly(*args, **kwargs):
9ad7392b
RD
2857 """
2858 SetReadOnly(self, bool readOnly)
2859
2860 Set to read only or read write.
2861 """
e811c8ce
RD
2862 return _stc.StyledTextCtrl_SetReadOnly(*args, **kwargs)
2863
2864 def CanPaste(*args, **kwargs):
9ad7392b
RD
2865 """
2866 CanPaste(self) -> bool
2867
2868 Will a paste succeed?
2869 """
e811c8ce
RD
2870 return _stc.StyledTextCtrl_CanPaste(*args, **kwargs)
2871
2872 def CanUndo(*args, **kwargs):
9ad7392b
RD
2873 """
2874 CanUndo(self) -> bool
2875
2876 Are there any undoable actions in the undo history?
2877 """
e811c8ce
RD
2878 return _stc.StyledTextCtrl_CanUndo(*args, **kwargs)
2879
2880 def EmptyUndoBuffer(*args, **kwargs):
9ad7392b
RD
2881 """
2882 EmptyUndoBuffer(self)
2883
2884 Delete the undo history.
2885 """
e811c8ce
RD
2886 return _stc.StyledTextCtrl_EmptyUndoBuffer(*args, **kwargs)
2887
2888 def Undo(*args, **kwargs):
9ad7392b
RD
2889 """
2890 Undo(self)
2891
2892 Undo one action in the undo history.
2893 """
e811c8ce
RD
2894 return _stc.StyledTextCtrl_Undo(*args, **kwargs)
2895
2896 def Cut(*args, **kwargs):
9ad7392b
RD
2897 """
2898 Cut(self)
2899
2900 Cut the selection to the clipboard.
2901 """
e811c8ce
RD
2902 return _stc.StyledTextCtrl_Cut(*args, **kwargs)
2903
2904 def Copy(*args, **kwargs):
9ad7392b
RD
2905 """
2906 Copy(self)
2907
2908 Copy the selection to the clipboard.
2909 """
e811c8ce
RD
2910 return _stc.StyledTextCtrl_Copy(*args, **kwargs)
2911
2912 def Paste(*args, **kwargs):
9ad7392b
RD
2913 """
2914 Paste(self)
2915
2916 Paste the contents of the clipboard into the document replacing the selection.
2917 """
e811c8ce
RD
2918 return _stc.StyledTextCtrl_Paste(*args, **kwargs)
2919
2920 def Clear(*args, **kwargs):
9ad7392b
RD
2921 """
2922 Clear(self)
2923
2924 Clear the selection.
2925 """
e811c8ce
RD
2926 return _stc.StyledTextCtrl_Clear(*args, **kwargs)
2927
2928 def SetText(*args, **kwargs):
9ad7392b
RD
2929 """
2930 SetText(self, String text)
2931
2932 Replace the contents of the document with the argument text.
2933 """
e811c8ce
RD
2934 return _stc.StyledTextCtrl_SetText(*args, **kwargs)
2935
2936 def GetText(*args, **kwargs):
9ad7392b
RD
2937 """
2938 GetText(self) -> String
2939
2940 Retrieve all the text in the document.
2941 """
e811c8ce
RD
2942 return _stc.StyledTextCtrl_GetText(*args, **kwargs)
2943
2944 def GetTextLength(*args, **kwargs):
9ad7392b
RD
2945 """
2946 GetTextLength(self) -> int
2947
2948 Retrieve the number of characters in the document.
2949 """
e811c8ce
RD
2950 return _stc.StyledTextCtrl_GetTextLength(*args, **kwargs)
2951
2952 def SetOvertype(*args, **kwargs):
9ad7392b
RD
2953 """
2954 SetOvertype(self, bool overtype)
2955
2956 Set to overtype (true) or insert mode.
2957 """
e811c8ce
RD
2958 return _stc.StyledTextCtrl_SetOvertype(*args, **kwargs)
2959
2960 def GetOvertype(*args, **kwargs):
9ad7392b
RD
2961 """
2962 GetOvertype(self) -> bool
2963
2964 Returns true if overtype mode is active otherwise false is returned.
2965 """
e811c8ce
RD
2966 return _stc.StyledTextCtrl_GetOvertype(*args, **kwargs)
2967
2968 def SetCaretWidth(*args, **kwargs):
9ad7392b
RD
2969 """
2970 SetCaretWidth(self, int pixelWidth)
2971
2972 Set the width of the insert mode caret.
2973 """
e811c8ce
RD
2974 return _stc.StyledTextCtrl_SetCaretWidth(*args, **kwargs)
2975
2976 def GetCaretWidth(*args, **kwargs):
9ad7392b
RD
2977 """
2978 GetCaretWidth(self) -> int
2979
2980 Returns the width of the insert mode caret.
2981 """
e811c8ce
RD
2982 return _stc.StyledTextCtrl_GetCaretWidth(*args, **kwargs)
2983
2984 def SetTargetStart(*args, **kwargs):
9ad7392b
RD
2985 """
2986 SetTargetStart(self, int pos)
2987
2988 Sets the position that starts the target which is used for updating the
2989 document without affecting the scroll position.
2990 """
e811c8ce
RD
2991 return _stc.StyledTextCtrl_SetTargetStart(*args, **kwargs)
2992
2993 def GetTargetStart(*args, **kwargs):
9ad7392b
RD
2994 """
2995 GetTargetStart(self) -> int
2996
2997 Get the position that starts the target.
2998 """
e811c8ce
RD
2999 return _stc.StyledTextCtrl_GetTargetStart(*args, **kwargs)
3000
3001 def SetTargetEnd(*args, **kwargs):
9ad7392b
RD
3002 """
3003 SetTargetEnd(self, int pos)
3004
3005 Sets the position that ends the target which is used for updating the
3006 document without affecting the scroll position.
3007 """
e811c8ce
RD
3008 return _stc.StyledTextCtrl_SetTargetEnd(*args, **kwargs)
3009
3010 def GetTargetEnd(*args, **kwargs):
9ad7392b
RD
3011 """
3012 GetTargetEnd(self) -> int
3013
3014 Get the position that ends the target.
3015 """
e811c8ce
RD
3016 return _stc.StyledTextCtrl_GetTargetEnd(*args, **kwargs)
3017
3018 def ReplaceTarget(*args, **kwargs):
9ad7392b
RD
3019 """
3020 ReplaceTarget(self, String text) -> int
3021
3022 Replace the target text with the argument text.
3023 Text is counted so it can contain NULs.
3024 Returns the length of the replacement text.
3025 """
e811c8ce
RD
3026 return _stc.StyledTextCtrl_ReplaceTarget(*args, **kwargs)
3027
3028 def ReplaceTargetRE(*args, **kwargs):
9ad7392b
RD
3029 """
3030 ReplaceTargetRE(self, String text) -> int
3031
3032 Replace the target text with the argument text after \d processing.
3033 Text is counted so it can contain NULs.
3034 Looks for \d where d is between 1 and 9 and replaces these with the strings
3035 matched in the last search operation which were surrounded by \( and \).
3036 Returns the length of the replacement text including any change
3037 caused by processing the \d patterns.
3038 """
e811c8ce
RD
3039 return _stc.StyledTextCtrl_ReplaceTargetRE(*args, **kwargs)
3040
3041 def SearchInTarget(*args, **kwargs):
9ad7392b
RD
3042 """
3043 SearchInTarget(self, String text) -> int
3044
3045 Search for a counted string in the target and set the target to the found
3046 range. Text is counted so it can contain NULs.
3047 Returns length of range or -1 for failure in which case target is not moved.
3048 """
e811c8ce
RD
3049 return _stc.StyledTextCtrl_SearchInTarget(*args, **kwargs)
3050
3051 def SetSearchFlags(*args, **kwargs):
9ad7392b
RD
3052 """
3053 SetSearchFlags(self, int flags)
3054
3055 Set the search flags used by SearchInTarget.
3056 """
e811c8ce
RD
3057 return _stc.StyledTextCtrl_SetSearchFlags(*args, **kwargs)
3058
3059 def GetSearchFlags(*args, **kwargs):
9ad7392b
RD
3060 """
3061 GetSearchFlags(self) -> int
3062
3063 Get the search flags used by SearchInTarget.
3064 """
e811c8ce
RD
3065 return _stc.StyledTextCtrl_GetSearchFlags(*args, **kwargs)
3066
3067 def CallTipShow(*args, **kwargs):
9ad7392b
RD
3068 """
3069 CallTipShow(self, int pos, String definition)
3070
3071 Show a call tip containing a definition near position pos.
3072 """
e811c8ce
RD
3073 return _stc.StyledTextCtrl_CallTipShow(*args, **kwargs)
3074
3075 def CallTipCancel(*args, **kwargs):
9ad7392b
RD
3076 """
3077 CallTipCancel(self)
3078
3079 Remove the call tip from the screen.
3080 """
e811c8ce
RD
3081 return _stc.StyledTextCtrl_CallTipCancel(*args, **kwargs)
3082
3083 def CallTipActive(*args, **kwargs):
9ad7392b
RD
3084 """
3085 CallTipActive(self) -> bool
3086
3087 Is there an active call tip?
3088 """
e811c8ce
RD
3089 return _stc.StyledTextCtrl_CallTipActive(*args, **kwargs)
3090
3091 def CallTipPosAtStart(*args, **kwargs):
9ad7392b
RD
3092 """
3093 CallTipPosAtStart(self) -> int
3094
3095 Retrieve the position where the caret was before displaying the call tip.
3096 """
e811c8ce
RD
3097 return _stc.StyledTextCtrl_CallTipPosAtStart(*args, **kwargs)
3098
3099 def CallTipSetHighlight(*args, **kwargs):
9ad7392b
RD
3100 """
3101 CallTipSetHighlight(self, int start, int end)
3102
3103 Highlight a segment of the definition.
3104 """
e811c8ce
RD
3105 return _stc.StyledTextCtrl_CallTipSetHighlight(*args, **kwargs)
3106
3107 def CallTipSetBackground(*args, **kwargs):
9ad7392b
RD
3108 """
3109 CallTipSetBackground(self, Colour back)
3110
3111 Set the background colour for the call tip.
3112 """
e811c8ce
RD
3113 return _stc.StyledTextCtrl_CallTipSetBackground(*args, **kwargs)
3114
3115 def CallTipSetForeground(*args, **kwargs):
9ad7392b
RD
3116 """
3117 CallTipSetForeground(self, Colour fore)
3118
3119 Set the foreground colour for the call tip.
3120 """
e811c8ce
RD
3121 return _stc.StyledTextCtrl_CallTipSetForeground(*args, **kwargs)
3122
3123 def CallTipSetForegroundHighlight(*args, **kwargs):
9ad7392b
RD
3124 """
3125 CallTipSetForegroundHighlight(self, Colour fore)
3126
3127 Set the foreground colour for the highlighted part of the call tip.
3128 """
e811c8ce
RD
3129 return _stc.StyledTextCtrl_CallTipSetForegroundHighlight(*args, **kwargs)
3130
10044bf1
RD
3131 def CallTipUseStyle(*args, **kwargs):
3132 """
3133 CallTipUseStyle(self, int tabSize)
3134
3135 Enable use of STYLE_CALLTIP and set call tip tab size in pixels.
3136 """
3137 return _stc.StyledTextCtrl_CallTipUseStyle(*args, **kwargs)
3138
e811c8ce 3139 def VisibleFromDocLine(*args, **kwargs):
9ad7392b
RD
3140 """
3141 VisibleFromDocLine(self, int line) -> int
3142
3143 Find the display line of a document line taking hidden lines into account.
3144 """
e811c8ce
RD
3145 return _stc.StyledTextCtrl_VisibleFromDocLine(*args, **kwargs)
3146
3147 def DocLineFromVisible(*args, **kwargs):
9ad7392b
RD
3148 """
3149 DocLineFromVisible(self, int lineDisplay) -> int
3150
3151 Find the document line of a display line taking hidden lines into account.
3152 """
e811c8ce
RD
3153 return _stc.StyledTextCtrl_DocLineFromVisible(*args, **kwargs)
3154
1bd55598
RD
3155 def WrapCount(*args, **kwargs):
3156 """
3157 WrapCount(self, int line) -> int
3158
3159 The number of display lines needed to wrap a document line
3160 """
3161 return _stc.StyledTextCtrl_WrapCount(*args, **kwargs)
3162
e811c8ce 3163 def SetFoldLevel(*args, **kwargs):
9ad7392b
RD
3164 """
3165 SetFoldLevel(self, int line, int level)
3166
3167 Set the fold level of a line.
3168 This encodes an integer level along with flags indicating whether the
3169 line is a header and whether it is effectively white space.
3170 """
e811c8ce
RD
3171 return _stc.StyledTextCtrl_SetFoldLevel(*args, **kwargs)
3172
3173 def GetFoldLevel(*args, **kwargs):
9ad7392b
RD
3174 """
3175 GetFoldLevel(self, int line) -> int
3176
3177 Retrieve the fold level of a line.
3178 """
e811c8ce
RD
3179 return _stc.StyledTextCtrl_GetFoldLevel(*args, **kwargs)
3180
3181 def GetLastChild(*args, **kwargs):
9ad7392b
RD
3182 """
3183 GetLastChild(self, int line, int level) -> int
3184
3185 Find the last child line of a header line.
3186 """
e811c8ce
RD
3187 return _stc.StyledTextCtrl_GetLastChild(*args, **kwargs)
3188
3189 def GetFoldParent(*args, **kwargs):
9ad7392b
RD
3190 """
3191 GetFoldParent(self, int line) -> int
3192
3193 Find the parent line of a child line.
3194 """
e811c8ce
RD
3195 return _stc.StyledTextCtrl_GetFoldParent(*args, **kwargs)
3196
3197 def ShowLines(*args, **kwargs):
9ad7392b
RD
3198 """
3199 ShowLines(self, int lineStart, int lineEnd)
3200
3201 Make a range of lines visible.
3202 """
e811c8ce
RD
3203 return _stc.StyledTextCtrl_ShowLines(*args, **kwargs)
3204
3205 def HideLines(*args, **kwargs):
9ad7392b
RD
3206 """
3207 HideLines(self, int lineStart, int lineEnd)
3208
3209 Make a range of lines invisible.
3210 """
e811c8ce
RD
3211 return _stc.StyledTextCtrl_HideLines(*args, **kwargs)
3212
3213 def GetLineVisible(*args, **kwargs):
9ad7392b
RD
3214 """
3215 GetLineVisible(self, int line) -> bool
3216
3217 Is a line visible?
3218 """
e811c8ce
RD
3219 return _stc.StyledTextCtrl_GetLineVisible(*args, **kwargs)
3220
3221 def SetFoldExpanded(*args, **kwargs):
9ad7392b
RD
3222 """
3223 SetFoldExpanded(self, int line, bool expanded)
3224
3225 Show the children of a header line.
3226 """
e811c8ce
RD
3227 return _stc.StyledTextCtrl_SetFoldExpanded(*args, **kwargs)
3228
3229 def GetFoldExpanded(*args, **kwargs):
9ad7392b
RD
3230 """
3231 GetFoldExpanded(self, int line) -> bool
3232
3233 Is a header line expanded?
3234 """
e811c8ce
RD
3235 return _stc.StyledTextCtrl_GetFoldExpanded(*args, **kwargs)
3236
3237 def ToggleFold(*args, **kwargs):
9ad7392b
RD
3238 """
3239 ToggleFold(self, int line)
3240
3241 Switch a header line between expanded and contracted.
3242 """
e811c8ce
RD
3243 return _stc.StyledTextCtrl_ToggleFold(*args, **kwargs)
3244
3245 def EnsureVisible(*args, **kwargs):
9ad7392b
RD
3246 """
3247 EnsureVisible(self, int line)
3248
3249 Ensure a particular line is visible by expanding any header line hiding it.
3250 """
e811c8ce
RD
3251 return _stc.StyledTextCtrl_EnsureVisible(*args, **kwargs)
3252
3253 def SetFoldFlags(*args, **kwargs):
9ad7392b
RD
3254 """
3255 SetFoldFlags(self, int flags)
3256
3257 Set some style options for folding.
3258 """
e811c8ce
RD
3259 return _stc.StyledTextCtrl_SetFoldFlags(*args, **kwargs)
3260
3261 def EnsureVisibleEnforcePolicy(*args, **kwargs):
9ad7392b
RD
3262 """
3263 EnsureVisibleEnforcePolicy(self, int line)
3264
3265 Ensure a particular line is visible by expanding any header line hiding it.
3266 Use the currently set visibility policy to determine which range to display.
3267 """
e811c8ce
RD
3268 return _stc.StyledTextCtrl_EnsureVisibleEnforcePolicy(*args, **kwargs)
3269
3270 def SetTabIndents(*args, **kwargs):
9ad7392b
RD
3271 """
3272 SetTabIndents(self, bool tabIndents)
3273
3274 Sets whether a tab pressed when caret is within indentation indents.
3275 """
e811c8ce
RD
3276 return _stc.StyledTextCtrl_SetTabIndents(*args, **kwargs)
3277
3278 def GetTabIndents(*args, **kwargs):
9ad7392b
RD
3279 """
3280 GetTabIndents(self) -> bool
3281
3282 Does a tab pressed when caret is within indentation indent?
3283 """
e811c8ce
RD
3284 return _stc.StyledTextCtrl_GetTabIndents(*args, **kwargs)
3285
3286 def SetBackSpaceUnIndents(*args, **kwargs):
9ad7392b
RD
3287 """
3288 SetBackSpaceUnIndents(self, bool bsUnIndents)
3289
3290 Sets whether a backspace pressed when caret is within indentation unindents.
3291 """
e811c8ce
RD
3292 return _stc.StyledTextCtrl_SetBackSpaceUnIndents(*args, **kwargs)
3293
3294 def GetBackSpaceUnIndents(*args, **kwargs):
9ad7392b
RD
3295 """
3296 GetBackSpaceUnIndents(self) -> bool
3297
3298 Does a backspace pressed when caret is within indentation unindent?
3299 """
e811c8ce
RD
3300 return _stc.StyledTextCtrl_GetBackSpaceUnIndents(*args, **kwargs)
3301
3302 def SetMouseDwellTime(*args, **kwargs):
9ad7392b
RD
3303 """
3304 SetMouseDwellTime(self, int periodMilliseconds)
3305
3306 Sets the time the mouse must sit still to generate a mouse dwell event.
3307 """
e811c8ce
RD
3308 return _stc.StyledTextCtrl_SetMouseDwellTime(*args, **kwargs)
3309
3310 def GetMouseDwellTime(*args, **kwargs):
9ad7392b
RD
3311 """
3312 GetMouseDwellTime(self) -> int
3313
3314 Retrieve the time the mouse must sit still to generate a mouse dwell event.
3315 """
e811c8ce
RD
3316 return _stc.StyledTextCtrl_GetMouseDwellTime(*args, **kwargs)
3317
3318 def WordStartPosition(*args, **kwargs):
9ad7392b
RD
3319 """
3320 WordStartPosition(self, int pos, bool onlyWordCharacters) -> int
3321
3322 Get position of start of word.
3323 """
e811c8ce
RD
3324 return _stc.StyledTextCtrl_WordStartPosition(*args, **kwargs)
3325
3326 def WordEndPosition(*args, **kwargs):
9ad7392b
RD
3327 """
3328 WordEndPosition(self, int pos, bool onlyWordCharacters) -> int
3329
3330 Get position of end of word.
3331 """
e811c8ce
RD
3332 return _stc.StyledTextCtrl_WordEndPosition(*args, **kwargs)
3333
3334 def SetWrapMode(*args, **kwargs):
9ad7392b
RD
3335 """
3336 SetWrapMode(self, int mode)
3337
3338 Sets whether text is word wrapped.
3339 """
e811c8ce
RD
3340 return _stc.StyledTextCtrl_SetWrapMode(*args, **kwargs)
3341
3342 def GetWrapMode(*args, **kwargs):
9ad7392b
RD
3343 """
3344 GetWrapMode(self) -> int
3345
3346 Retrieve whether text is word wrapped.
3347 """
e811c8ce
RD
3348 return _stc.StyledTextCtrl_GetWrapMode(*args, **kwargs)
3349
5e483524 3350 def SetWrapVisualFlags(*args, **kwargs):
9ad7392b
RD
3351 """
3352 SetWrapVisualFlags(self, int wrapVisualFlags)
3353
3354 Set the display mode of visual flags for wrapped lines.
3355 """
5e483524
RD
3356 return _stc.StyledTextCtrl_SetWrapVisualFlags(*args, **kwargs)
3357
3358 def GetWrapVisualFlags(*args, **kwargs):
9ad7392b
RD
3359 """
3360 GetWrapVisualFlags(self) -> int
3361
3362 Retrive the display mode of visual flags for wrapped lines.
3363 """
5e483524
RD
3364 return _stc.StyledTextCtrl_GetWrapVisualFlags(*args, **kwargs)
3365
3366 def SetWrapVisualFlagsLocation(*args, **kwargs):
9ad7392b
RD
3367 """
3368 SetWrapVisualFlagsLocation(self, int wrapVisualFlagsLocation)
3369
3370 Set the location of visual flags for wrapped lines.
3371 """
5e483524
RD
3372 return _stc.StyledTextCtrl_SetWrapVisualFlagsLocation(*args, **kwargs)
3373
3374 def GetWrapVisualFlagsLocation(*args, **kwargs):
9ad7392b
RD
3375 """
3376 GetWrapVisualFlagsLocation(self) -> int
3377
3378 Retrive the location of visual flags for wrapped lines.
3379 """
5e483524
RD
3380 return _stc.StyledTextCtrl_GetWrapVisualFlagsLocation(*args, **kwargs)
3381
3382 def SetWrapStartIndent(*args, **kwargs):
9ad7392b
RD
3383 """
3384 SetWrapStartIndent(self, int indent)
3385
3386 Set the start indent for wrapped lines.
3387 """
5e483524
RD
3388 return _stc.StyledTextCtrl_SetWrapStartIndent(*args, **kwargs)
3389
3390 def GetWrapStartIndent(*args, **kwargs):
9ad7392b
RD
3391 """
3392 GetWrapStartIndent(self) -> int
3393
3394 Retrive the start indent for wrapped lines.
3395 """
5e483524
RD
3396 return _stc.StyledTextCtrl_GetWrapStartIndent(*args, **kwargs)
3397
e811c8ce 3398 def SetLayoutCache(*args, **kwargs):
9ad7392b
RD
3399 """
3400 SetLayoutCache(self, int mode)
3401
3402 Sets the degree of caching of layout information.
3403 """
e811c8ce
RD
3404 return _stc.StyledTextCtrl_SetLayoutCache(*args, **kwargs)
3405
3406 def GetLayoutCache(*args, **kwargs):
9ad7392b
RD
3407 """
3408 GetLayoutCache(self) -> int
3409
3410 Retrieve the degree of caching of layout information.
3411 """
e811c8ce
RD
3412 return _stc.StyledTextCtrl_GetLayoutCache(*args, **kwargs)
3413
3414 def SetScrollWidth(*args, **kwargs):
9ad7392b
RD
3415 """
3416 SetScrollWidth(self, int pixelWidth)
3417
3418 Sets the document width assumed for scrolling.
3419 """
e811c8ce
RD
3420 return _stc.StyledTextCtrl_SetScrollWidth(*args, **kwargs)
3421
3422 def GetScrollWidth(*args, **kwargs):
9ad7392b
RD
3423 """
3424 GetScrollWidth(self) -> int
3425
3426 Retrieve the document width assumed for scrolling.
3427 """
e811c8ce
RD
3428 return _stc.StyledTextCtrl_GetScrollWidth(*args, **kwargs)
3429
3430 def TextWidth(*args, **kwargs):
9ad7392b
RD
3431 """
3432 TextWidth(self, int style, String text) -> int
3433
3434 Measure the pixel width of some text in a particular style.
3435 NUL terminated text argument.
3436 Does not handle tab or control characters.
3437 """
e811c8ce
RD
3438 return _stc.StyledTextCtrl_TextWidth(*args, **kwargs)
3439
3440 def SetEndAtLastLine(*args, **kwargs):
9ad7392b
RD
3441 """
3442 SetEndAtLastLine(self, bool endAtLastLine)
3443
3444 Sets the scroll range so that maximum scroll position has
3445 the last line at the bottom of the view (default).
3446 Setting this to false allows scrolling one page below the last line.
3447 """
e811c8ce
RD
3448 return _stc.StyledTextCtrl_SetEndAtLastLine(*args, **kwargs)
3449
3450 def GetEndAtLastLine(*args, **kwargs):
9ad7392b 3451 """
1bd55598 3452 GetEndAtLastLine(self) -> bool
9ad7392b
RD
3453
3454 Retrieve whether the maximum scroll position has the last
3455 line at the bottom of the view.
3456 """
e811c8ce
RD
3457 return _stc.StyledTextCtrl_GetEndAtLastLine(*args, **kwargs)
3458
3459 def TextHeight(*args, **kwargs):
9ad7392b
RD
3460 """
3461 TextHeight(self, int line) -> int
3462
3463 Retrieve the height of a particular line of text in pixels.
3464 """
e811c8ce
RD
3465 return _stc.StyledTextCtrl_TextHeight(*args, **kwargs)
3466
3467 def SetUseVerticalScrollBar(*args, **kwargs):
9ad7392b
RD
3468 """
3469 SetUseVerticalScrollBar(self, bool show)
3470
3471 Show or hide the vertical scroll bar.
3472 """
e811c8ce
RD
3473 return _stc.StyledTextCtrl_SetUseVerticalScrollBar(*args, **kwargs)
3474
3475 def GetUseVerticalScrollBar(*args, **kwargs):
9ad7392b
RD
3476 """
3477 GetUseVerticalScrollBar(self) -> bool
3478
3479 Is the vertical scroll bar visible?
3480 """
e811c8ce
RD
3481 return _stc.StyledTextCtrl_GetUseVerticalScrollBar(*args, **kwargs)
3482
3483 def AppendText(*args, **kwargs):
9ad7392b
RD
3484 """
3485 AppendText(self, String text)
3486
3487 Append a string to the end of the document without changing the selection.
3488 """
e811c8ce
RD
3489 return _stc.StyledTextCtrl_AppendText(*args, **kwargs)
3490
3491 def GetTwoPhaseDraw(*args, **kwargs):
9ad7392b
RD
3492 """
3493 GetTwoPhaseDraw(self) -> bool
3494
3495 Is drawing done in two phases with backgrounds drawn before foregrounds?
3496 """
e811c8ce
RD
3497 return _stc.StyledTextCtrl_GetTwoPhaseDraw(*args, **kwargs)
3498
3499 def SetTwoPhaseDraw(*args, **kwargs):
9ad7392b
RD
3500 """
3501 SetTwoPhaseDraw(self, bool twoPhase)
3502
3503 In twoPhaseDraw mode, drawing is performed in two phases, first the background
3504 and then the foreground. This avoids chopping off characters that overlap the next run.
3505 """
e811c8ce
RD
3506 return _stc.StyledTextCtrl_SetTwoPhaseDraw(*args, **kwargs)
3507
3508 def TargetFromSelection(*args, **kwargs):
9ad7392b
RD
3509 """
3510 TargetFromSelection(self)
3511
3512 Make the target range start and end be the same as the selection range start and end.
3513 """
e811c8ce
RD
3514 return _stc.StyledTextCtrl_TargetFromSelection(*args, **kwargs)
3515
3516 def LinesJoin(*args, **kwargs):
9ad7392b
RD
3517 """
3518 LinesJoin(self)
3519
3520 Join the lines in the target.
3521 """
e811c8ce
RD
3522 return _stc.StyledTextCtrl_LinesJoin(*args, **kwargs)
3523
3524 def LinesSplit(*args, **kwargs):
9ad7392b
RD
3525 """
3526 LinesSplit(self, int pixelWidth)
3527
3528 Split the lines in the target into lines that are less wide than pixelWidth
3529 where possible.
3530 """
e811c8ce
RD
3531 return _stc.StyledTextCtrl_LinesSplit(*args, **kwargs)
3532
3533 def SetFoldMarginColour(*args, **kwargs):
9ad7392b
RD
3534 """
3535 SetFoldMarginColour(self, bool useSetting, Colour back)
3536
3537 Set the colours used as a chequerboard pattern in the fold margin
3538 """
e811c8ce
RD
3539 return _stc.StyledTextCtrl_SetFoldMarginColour(*args, **kwargs)
3540
3541 def SetFoldMarginHiColour(*args, **kwargs):
a95a7133 3542 """SetFoldMarginHiColour(self, bool useSetting, Colour fore)"""
e811c8ce
RD
3543 return _stc.StyledTextCtrl_SetFoldMarginHiColour(*args, **kwargs)
3544
4276dc52
RD
3545 def LineDown(*args, **kwargs):
3546 """
a95a7133 3547 LineDown(self)
4276dc52 3548
5ba5649b 3549 Move caret down one line.
4276dc52
RD
3550 """
3551 return _stc.StyledTextCtrl_LineDown(*args, **kwargs)
3552
5ba5649b 3553
4276dc52 3554 def LineDownExtend(*args, **kwargs):
9ad7392b
RD
3555 """
3556 LineDownExtend(self)
3557
3558 Move caret down one line extending selection to new caret position.
3559 """
4276dc52
RD
3560 return _stc.StyledTextCtrl_LineDownExtend(*args, **kwargs)
3561
3562 def LineUp(*args, **kwargs):
3563 """
a95a7133 3564 LineUp(self)
4276dc52 3565
5ba5649b 3566 Move caret up one line.
4276dc52
RD
3567 """
3568 return _stc.StyledTextCtrl_LineUp(*args, **kwargs)
3569
5ba5649b 3570
4276dc52 3571 def LineUpExtend(*args, **kwargs):
9ad7392b
RD
3572 """
3573 LineUpExtend(self)
3574
3575 Move caret up one line extending selection to new caret position.
3576 """
4276dc52
RD
3577 return _stc.StyledTextCtrl_LineUpExtend(*args, **kwargs)
3578
3579 def CharLeft(*args, **kwargs):
9ad7392b
RD
3580 """
3581 CharLeft(self)
3582
3583 Move caret left one character.
3584 """
4276dc52
RD
3585 return _stc.StyledTextCtrl_CharLeft(*args, **kwargs)
3586
3587 def CharLeftExtend(*args, **kwargs):
9ad7392b
RD
3588 """
3589 CharLeftExtend(self)
3590
3591 Move caret left one character extending selection to new caret position.
3592 """
4276dc52
RD
3593 return _stc.StyledTextCtrl_CharLeftExtend(*args, **kwargs)
3594
3595 def CharRight(*args, **kwargs):
9ad7392b
RD
3596 """
3597 CharRight(self)
3598
3599 Move caret right one character.
3600 """
4276dc52
RD
3601 return _stc.StyledTextCtrl_CharRight(*args, **kwargs)
3602
3603 def CharRightExtend(*args, **kwargs):
9ad7392b
RD
3604 """
3605 CharRightExtend(self)
3606
3607 Move caret right one character extending selection to new caret position.
3608 """
4276dc52
RD
3609 return _stc.StyledTextCtrl_CharRightExtend(*args, **kwargs)
3610
3611 def WordLeft(*args, **kwargs):
9ad7392b
RD
3612 """
3613 WordLeft(self)
3614
3615 Move caret left one word.
3616 """
4276dc52
RD
3617 return _stc.StyledTextCtrl_WordLeft(*args, **kwargs)
3618
3619 def WordLeftExtend(*args, **kwargs):
9ad7392b
RD
3620 """
3621 WordLeftExtend(self)
3622
3623 Move caret left one word extending selection to new caret position.
3624 """
3625 return _stc.StyledTextCtrl_WordLeftExtend(*args, **kwargs)
4276dc52
RD
3626
3627 def WordRight(*args, **kwargs):
9ad7392b
RD
3628 """
3629 WordRight(self)
3630
3631 Move caret right one word.
3632 """
4276dc52
RD
3633 return _stc.StyledTextCtrl_WordRight(*args, **kwargs)
3634
3635 def WordRightExtend(*args, **kwargs):
9ad7392b
RD
3636 """
3637 WordRightExtend(self)
3638
3639 Move caret right one word extending selection to new caret position.
3640 """
4276dc52
RD
3641 return _stc.StyledTextCtrl_WordRightExtend(*args, **kwargs)
3642
3643 def Home(*args, **kwargs):
9ad7392b
RD
3644 """
3645 Home(self)
3646
3647 Move caret to first position on line.
3648 """
4276dc52
RD
3649 return _stc.StyledTextCtrl_Home(*args, **kwargs)
3650
3651 def HomeExtend(*args, **kwargs):
9ad7392b
RD
3652 """
3653 HomeExtend(self)
3654
3655 Move caret to first position on line extending selection to new caret position.
3656 """
4276dc52
RD
3657 return _stc.StyledTextCtrl_HomeExtend(*args, **kwargs)
3658
3659 def LineEnd(*args, **kwargs):
9ad7392b
RD
3660 """
3661 LineEnd(self)
3662
3663 Move caret to last position on line.
3664 """
4276dc52
RD
3665 return _stc.StyledTextCtrl_LineEnd(*args, **kwargs)
3666
3667 def LineEndExtend(*args, **kwargs):
9ad7392b
RD
3668 """
3669 LineEndExtend(self)
3670
3671 Move caret to last position on line extending selection to new caret position.
3672 """
4276dc52
RD
3673 return _stc.StyledTextCtrl_LineEndExtend(*args, **kwargs)
3674
3675 def DocumentStart(*args, **kwargs):
9ad7392b
RD
3676 """
3677 DocumentStart(self)
3678
3679 Move caret to first position in document.
3680 """
4276dc52
RD
3681 return _stc.StyledTextCtrl_DocumentStart(*args, **kwargs)
3682
3683 def DocumentStartExtend(*args, **kwargs):
9ad7392b
RD
3684 """
3685 DocumentStartExtend(self)
3686
3687 Move caret to first position in document extending selection to new caret position.
3688 """
4276dc52
RD
3689 return _stc.StyledTextCtrl_DocumentStartExtend(*args, **kwargs)
3690
3691 def DocumentEnd(*args, **kwargs):
9ad7392b
RD
3692 """
3693 DocumentEnd(self)
3694
3695 Move caret to last position in document.
3696 """
4276dc52
RD
3697 return _stc.StyledTextCtrl_DocumentEnd(*args, **kwargs)
3698
3699 def DocumentEndExtend(*args, **kwargs):
9ad7392b
RD
3700 """
3701 DocumentEndExtend(self)
3702
3703 Move caret to last position in document extending selection to new caret position.
3704 """
4276dc52
RD
3705 return _stc.StyledTextCtrl_DocumentEndExtend(*args, **kwargs)
3706
3707 def PageUp(*args, **kwargs):
0346c964
RD
3708 """
3709 PageUp(self)
3710
5ba5649b 3711 Move caret one page up.
0346c964 3712 """
4276dc52
RD
3713 return _stc.StyledTextCtrl_PageUp(*args, **kwargs)
3714
5ba5649b 3715
4276dc52 3716 def PageUpExtend(*args, **kwargs):
9ad7392b
RD
3717 """
3718 PageUpExtend(self)
3719
3720 Move caret one page up extending selection to new caret position.
3721 """
4276dc52
RD
3722 return _stc.StyledTextCtrl_PageUpExtend(*args, **kwargs)
3723
3724 def PageDown(*args, **kwargs):
3725 """
a95a7133 3726 PageDown(self)
4276dc52 3727
5ba5649b 3728 Move caret one page down.
4276dc52
RD
3729 """
3730 return _stc.StyledTextCtrl_PageDown(*args, **kwargs)
3731
5ba5649b 3732
4276dc52 3733 def PageDownExtend(*args, **kwargs):
9ad7392b
RD
3734 """
3735 PageDownExtend(self)
3736
3737 Move caret one page down extending selection to new caret position.
3738 """
4276dc52
RD
3739 return _stc.StyledTextCtrl_PageDownExtend(*args, **kwargs)
3740
3741 def EditToggleOvertype(*args, **kwargs):
9ad7392b
RD
3742 """
3743 EditToggleOvertype(self)
3744
3745 Switch from insert to overtype mode or the reverse.
3746 """
4276dc52
RD
3747 return _stc.StyledTextCtrl_EditToggleOvertype(*args, **kwargs)
3748
3749 def Cancel(*args, **kwargs):
9ad7392b
RD
3750 """
3751 Cancel(self)
3752
3753 Cancel any modes such as call tip or auto-completion list display.
3754 """
4276dc52
RD
3755 return _stc.StyledTextCtrl_Cancel(*args, **kwargs)
3756
3757 def DeleteBack(*args, **kwargs):
9ad7392b
RD
3758 """
3759 DeleteBack(self)
3760
3761 Delete the selection or if no selection, the character before the caret.
3762 """
4276dc52
RD
3763 return _stc.StyledTextCtrl_DeleteBack(*args, **kwargs)
3764
3765 def Tab(*args, **kwargs):
9ad7392b
RD
3766 """
3767 Tab(self)
3768
3769 If selection is empty or all on one line replace the selection with a tab character.
3770 If more than one line selected, indent the lines.
3771 """
4276dc52
RD
3772 return _stc.StyledTextCtrl_Tab(*args, **kwargs)
3773
3774 def BackTab(*args, **kwargs):
9ad7392b
RD
3775 """
3776 BackTab(self)
3777
3778 Dedent the selected lines.
3779 """
4276dc52
RD
3780 return _stc.StyledTextCtrl_BackTab(*args, **kwargs)
3781
3782 def NewLine(*args, **kwargs):
9ad7392b
RD
3783 """
3784 NewLine(self)
3785
3786 Insert a new line, may use a CRLF, CR or LF depending on EOL mode.
3787 """
4276dc52
RD
3788 return _stc.StyledTextCtrl_NewLine(*args, **kwargs)
3789
3790 def FormFeed(*args, **kwargs):
9ad7392b
RD
3791 """
3792 FormFeed(self)
3793
3794 Insert a Form Feed character.
3795 """
4276dc52
RD
3796 return _stc.StyledTextCtrl_FormFeed(*args, **kwargs)
3797
3798 def VCHome(*args, **kwargs):
9ad7392b
RD
3799 """
3800 VCHome(self)
3801
3802 Move caret to before first visible character on line.
3803 If already there move to first character on line.
3804 """
4276dc52
RD
3805 return _stc.StyledTextCtrl_VCHome(*args, **kwargs)
3806
3807 def VCHomeExtend(*args, **kwargs):
9ad7392b
RD
3808 """
3809 VCHomeExtend(self)
3810
3811 Like VCHome but extending selection to new caret position.
3812 """
4276dc52
RD
3813 return _stc.StyledTextCtrl_VCHomeExtend(*args, **kwargs)
3814
3815 def ZoomIn(*args, **kwargs):
9ad7392b
RD
3816 """
3817 ZoomIn(self)
3818
3819 Magnify the displayed text by increasing the sizes by 1 point.
3820 """
4276dc52
RD
3821 return _stc.StyledTextCtrl_ZoomIn(*args, **kwargs)
3822
3823 def ZoomOut(*args, **kwargs):
9ad7392b
RD
3824 """
3825 ZoomOut(self)
3826
3827 Make the displayed text smaller by decreasing the sizes by 1 point.
3828 """
4276dc52
RD
3829 return _stc.StyledTextCtrl_ZoomOut(*args, **kwargs)
3830
3831 def DelWordLeft(*args, **kwargs):
9ad7392b
RD
3832 """
3833 DelWordLeft(self)
3834
3835 Delete the word to the left of the caret.
3836 """
4276dc52
RD
3837 return _stc.StyledTextCtrl_DelWordLeft(*args, **kwargs)
3838
3839 def DelWordRight(*args, **kwargs):
9ad7392b
RD
3840 """
3841 DelWordRight(self)
3842
3843 Delete the word to the right of the caret.
3844 """
4276dc52
RD
3845 return _stc.StyledTextCtrl_DelWordRight(*args, **kwargs)
3846
3847 def LineCut(*args, **kwargs):
9ad7392b
RD
3848 """
3849 LineCut(self)
3850
3851 Cut the line containing the caret.
3852 """
4276dc52
RD
3853 return _stc.StyledTextCtrl_LineCut(*args, **kwargs)
3854
3855 def LineDelete(*args, **kwargs):
9ad7392b
RD
3856 """
3857 LineDelete(self)
3858
3859 Delete the line containing the caret.
3860 """
4276dc52
RD
3861 return _stc.StyledTextCtrl_LineDelete(*args, **kwargs)
3862
3863 def LineTranspose(*args, **kwargs):
9ad7392b
RD
3864 """
3865 LineTranspose(self)
3866
3867 Switch the current line with the previous.
3868 """
4276dc52
RD
3869 return _stc.StyledTextCtrl_LineTranspose(*args, **kwargs)
3870
e811c8ce 3871 def LineDuplicate(*args, **kwargs):
9ad7392b
RD
3872 """
3873 LineDuplicate(self)
3874
3875 Duplicate the current line.
3876 """
e811c8ce
RD
3877 return _stc.StyledTextCtrl_LineDuplicate(*args, **kwargs)
3878
4276dc52 3879 def LowerCase(*args, **kwargs):
9ad7392b
RD
3880 """
3881 LowerCase(self)
3882
3883 Transform the selection to lower case.
3884 """
4276dc52
RD
3885 return _stc.StyledTextCtrl_LowerCase(*args, **kwargs)
3886
3887 def UpperCase(*args, **kwargs):
9ad7392b
RD
3888 """
3889 UpperCase(self)
3890
3891 Transform the selection to upper case.
3892 """
4276dc52
RD
3893 return _stc.StyledTextCtrl_UpperCase(*args, **kwargs)
3894
3895 def LineScrollDown(*args, **kwargs):
9ad7392b
RD
3896 """
3897 LineScrollDown(self)
3898
3899 Scroll the document down, keeping the caret visible.
3900 """
4276dc52
RD
3901 return _stc.StyledTextCtrl_LineScrollDown(*args, **kwargs)
3902
3903 def LineScrollUp(*args, **kwargs):
9ad7392b
RD
3904 """
3905 LineScrollUp(self)
3906
3907 Scroll the document up, keeping the caret visible.
3908 """
4276dc52
RD
3909 return _stc.StyledTextCtrl_LineScrollUp(*args, **kwargs)
3910
3911 def DeleteBackNotLine(*args, **kwargs):
9ad7392b
RD
3912 """
3913 DeleteBackNotLine(self)
3914
3915 Delete the selection or if no selection, the character before the caret.
3916 Will not delete the character before at the start of a line.
3917 """
4276dc52
RD
3918 return _stc.StyledTextCtrl_DeleteBackNotLine(*args, **kwargs)
3919
e811c8ce 3920 def HomeDisplay(*args, **kwargs):
9ad7392b
RD
3921 """
3922 HomeDisplay(self)
3923
3924 Move caret to first position on display line.
3925 """
e811c8ce
RD
3926 return _stc.StyledTextCtrl_HomeDisplay(*args, **kwargs)
3927
3928 def HomeDisplayExtend(*args, **kwargs):
9ad7392b
RD
3929 """
3930 HomeDisplayExtend(self)
3931
3932 Move caret to first position on display line extending selection to
3933 new caret position.
3934 """
e811c8ce
RD
3935 return _stc.StyledTextCtrl_HomeDisplayExtend(*args, **kwargs)
3936
3937 def LineEndDisplay(*args, **kwargs):
9ad7392b
RD
3938 """
3939 LineEndDisplay(self)
3940
3941 Move caret to last position on display line.
3942 """
e811c8ce
RD
3943 return _stc.StyledTextCtrl_LineEndDisplay(*args, **kwargs)
3944
3945 def LineEndDisplayExtend(*args, **kwargs):
9ad7392b
RD
3946 """
3947 LineEndDisplayExtend(self)
3948
3949 Move caret to last position on display line extending selection to new
3950 caret position.
3951 """
e811c8ce
RD
3952 return _stc.StyledTextCtrl_LineEndDisplayExtend(*args, **kwargs)
3953
4276dc52 3954 def HomeWrap(*args, **kwargs):
9ad7392b
RD
3955 """
3956 HomeWrap(self)
3957
3958 These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
3959 except they behave differently when word-wrap is enabled:
3960 They go first to the start / end of the display line, like (Home|LineEnd)Display
3961 The difference is that, the cursor is already at the point, it goes on to the start
3962 or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?.
3963 """
4276dc52
RD
3964 return _stc.StyledTextCtrl_HomeWrap(*args, **kwargs)
3965
3966 def HomeWrapExtend(*args, **kwargs):
a95a7133 3967 """HomeWrapExtend(self)"""
4276dc52
RD
3968 return _stc.StyledTextCtrl_HomeWrapExtend(*args, **kwargs)
3969
3970 def LineEndWrap(*args, **kwargs):
a95a7133 3971 """LineEndWrap(self)"""
4276dc52
RD
3972 return _stc.StyledTextCtrl_LineEndWrap(*args, **kwargs)
3973
3974 def LineEndWrapExtend(*args, **kwargs):
a95a7133 3975 """LineEndWrapExtend(self)"""
4276dc52
RD
3976 return _stc.StyledTextCtrl_LineEndWrapExtend(*args, **kwargs)
3977
3978 def VCHomeWrap(*args, **kwargs):
a95a7133 3979 """VCHomeWrap(self)"""
4276dc52
RD
3980 return _stc.StyledTextCtrl_VCHomeWrap(*args, **kwargs)
3981
3982 def VCHomeWrapExtend(*args, **kwargs):
a95a7133 3983 """VCHomeWrapExtend(self)"""
4276dc52
RD
3984 return _stc.StyledTextCtrl_VCHomeWrapExtend(*args, **kwargs)
3985
e811c8ce 3986 def LineCopy(*args, **kwargs):
9ad7392b
RD
3987 """
3988 LineCopy(self)
3989
3990 Copy the line containing the caret.
3991 """
e811c8ce
RD
3992 return _stc.StyledTextCtrl_LineCopy(*args, **kwargs)
3993
3994 def MoveCaretInsideView(*args, **kwargs):
9ad7392b
RD
3995 """
3996 MoveCaretInsideView(self)
3997
3998 Move the caret inside current view if it's not there already.
3999 """
e811c8ce
RD
4000 return _stc.StyledTextCtrl_MoveCaretInsideView(*args, **kwargs)
4001
4002 def LineLength(*args, **kwargs):
9ad7392b
RD
4003 """
4004 LineLength(self, int line) -> int
4005
4006 How many characters are on a line, not including end of line characters?
4007 """
e811c8ce
RD
4008 return _stc.StyledTextCtrl_LineLength(*args, **kwargs)
4009
4010 def BraceHighlight(*args, **kwargs):
9ad7392b
RD
4011 """
4012 BraceHighlight(self, int pos1, int pos2)
4013
4014 Highlight the characters at two positions.
4015 """
e811c8ce
RD
4016 return _stc.StyledTextCtrl_BraceHighlight(*args, **kwargs)
4017
4018 def BraceBadLight(*args, **kwargs):
9ad7392b
RD
4019 """
4020 BraceBadLight(self, int pos)
4021
4022 Highlight the character at a position indicating there is no matching brace.
4023 """
e811c8ce
RD
4024 return _stc.StyledTextCtrl_BraceBadLight(*args, **kwargs)
4025
4026 def BraceMatch(*args, **kwargs):
9ad7392b
RD
4027 """
4028 BraceMatch(self, int pos) -> int
4029
4030 Find the position of a matching brace or INVALID_POSITION if no match.
4031 """
e811c8ce
RD
4032 return _stc.StyledTextCtrl_BraceMatch(*args, **kwargs)
4033
4034 def GetViewEOL(*args, **kwargs):
9ad7392b
RD
4035 """
4036 GetViewEOL(self) -> bool
4037
4038 Are the end of line characters visible?
4039 """
e811c8ce
RD
4040 return _stc.StyledTextCtrl_GetViewEOL(*args, **kwargs)
4041
4042 def SetViewEOL(*args, **kwargs):
9ad7392b
RD
4043 """
4044 SetViewEOL(self, bool visible)
4045
4046 Make the end of line characters visible or invisible.
4047 """
e811c8ce
RD
4048 return _stc.StyledTextCtrl_SetViewEOL(*args, **kwargs)
4049
4050 def GetDocPointer(*args, **kwargs):
9ad7392b
RD
4051 """
4052 GetDocPointer(self) -> void
4053
4054 Retrieve a pointer to the document object.
4055 """
e811c8ce
RD
4056 return _stc.StyledTextCtrl_GetDocPointer(*args, **kwargs)
4057
4058 def SetDocPointer(*args, **kwargs):
9ad7392b
RD
4059 """
4060 SetDocPointer(self, void docPointer)
4061
4062 Change the document object used.
4063 """
e811c8ce
RD
4064 return _stc.StyledTextCtrl_SetDocPointer(*args, **kwargs)
4065
4066 def SetModEventMask(*args, **kwargs):
9ad7392b
RD
4067 """
4068 SetModEventMask(self, int mask)
4069
4070 Set which document modification events are sent to the container.
4071 """
e811c8ce
RD
4072 return _stc.StyledTextCtrl_SetModEventMask(*args, **kwargs)
4073
4074 def GetEdgeColumn(*args, **kwargs):
9ad7392b
RD
4075 """
4076 GetEdgeColumn(self) -> int
4077
4078 Retrieve the column number which text should be kept within.
4079 """
e811c8ce
RD
4080 return _stc.StyledTextCtrl_GetEdgeColumn(*args, **kwargs)
4081
4082 def SetEdgeColumn(*args, **kwargs):
9ad7392b
RD
4083 """
4084 SetEdgeColumn(self, int column)
4085
4086 Set the column number of the edge.
4087 If text goes past the edge then it is highlighted.
4088 """
e811c8ce
RD
4089 return _stc.StyledTextCtrl_SetEdgeColumn(*args, **kwargs)
4090
4091 def GetEdgeMode(*args, **kwargs):
9ad7392b
RD
4092 """
4093 GetEdgeMode(self) -> int
4094
4095 Retrieve the edge highlight mode.
4096 """
e811c8ce
RD
4097 return _stc.StyledTextCtrl_GetEdgeMode(*args, **kwargs)
4098
4099 def SetEdgeMode(*args, **kwargs):
9ad7392b
RD
4100 """
4101 SetEdgeMode(self, int mode)
4102
4103 The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
4104 goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
4105 """
e811c8ce
RD
4106 return _stc.StyledTextCtrl_SetEdgeMode(*args, **kwargs)
4107
4108 def GetEdgeColour(*args, **kwargs):
9ad7392b
RD
4109 """
4110 GetEdgeColour(self) -> Colour
4111
4112 Retrieve the colour used in edge indication.
4113 """
e811c8ce
RD
4114 return _stc.StyledTextCtrl_GetEdgeColour(*args, **kwargs)
4115
4116 def SetEdgeColour(*args, **kwargs):
9ad7392b
RD
4117 """
4118 SetEdgeColour(self, Colour edgeColour)
4119
4120 Change the colour used in edge indication.
4121 """
e811c8ce
RD
4122 return _stc.StyledTextCtrl_SetEdgeColour(*args, **kwargs)
4123
4124 def SearchAnchor(*args, **kwargs):
9ad7392b
RD
4125 """
4126 SearchAnchor(self)
4127
4128 Sets the current caret position to be the search anchor.
4129 """
e811c8ce
RD
4130 return _stc.StyledTextCtrl_SearchAnchor(*args, **kwargs)
4131
4132 def SearchNext(*args, **kwargs):
9ad7392b
RD
4133 """
4134 SearchNext(self, int flags, String text) -> int
4135
4136 Find some text starting at the search anchor.
4137 Does not ensure the selection is visible.
4138 """
e811c8ce
RD
4139 return _stc.StyledTextCtrl_SearchNext(*args, **kwargs)
4140
4141 def SearchPrev(*args, **kwargs):
9ad7392b
RD
4142 """
4143 SearchPrev(self, int flags, String text) -> int
4144
4145 Find some text starting at the search anchor and moving backwards.
4146 Does not ensure the selection is visible.
4147 """
e811c8ce
RD
4148 return _stc.StyledTextCtrl_SearchPrev(*args, **kwargs)
4149
4150 def LinesOnScreen(*args, **kwargs):
9ad7392b
RD
4151 """
4152 LinesOnScreen(self) -> int
4153
4154 Retrieves the number of lines completely visible.
4155 """
e811c8ce
RD
4156 return _stc.StyledTextCtrl_LinesOnScreen(*args, **kwargs)
4157
4158 def UsePopUp(*args, **kwargs):
9ad7392b
RD
4159 """
4160 UsePopUp(self, bool allowPopUp)
4161
4162 Set whether a pop up menu is displayed automatically when the user presses
4163 the wrong mouse button.
4164 """
e811c8ce
RD
4165 return _stc.StyledTextCtrl_UsePopUp(*args, **kwargs)
4166
4167 def SelectionIsRectangle(*args, **kwargs):
9ad7392b
RD
4168 """
4169 SelectionIsRectangle(self) -> bool
4170
4171 Is the selection rectangular? The alternative is the more common stream selection.
4172 """
e811c8ce
RD
4173 return _stc.StyledTextCtrl_SelectionIsRectangle(*args, **kwargs)
4174
4175 def SetZoom(*args, **kwargs):
9ad7392b
RD
4176 """
4177 SetZoom(self, int zoom)
4178
4179 Set the zoom level. This number of points is added to the size of all fonts.
4180 It may be positive to magnify or negative to reduce.
4181 """
e811c8ce
RD
4182 return _stc.StyledTextCtrl_SetZoom(*args, **kwargs)
4183
4184 def GetZoom(*args, **kwargs):
9ad7392b
RD
4185 """
4186 GetZoom(self) -> int
4187
4188 Retrieve the zoom level.
4189 """
e811c8ce
RD
4190 return _stc.StyledTextCtrl_GetZoom(*args, **kwargs)
4191
4192 def CreateDocument(*args, **kwargs):
9ad7392b
RD
4193 """
4194 CreateDocument(self) -> void
4195
4196 Create a new document object.
4197 Starts with reference count of 1 and not selected into editor.
4198 """
e811c8ce
RD
4199 return _stc.StyledTextCtrl_CreateDocument(*args, **kwargs)
4200
4201 def AddRefDocument(*args, **kwargs):
9ad7392b
RD
4202 """
4203 AddRefDocument(self, void docPointer)
4204
4205 Extend life of document.
4206 """
e811c8ce
RD
4207 return _stc.StyledTextCtrl_AddRefDocument(*args, **kwargs)
4208
4209 def ReleaseDocument(*args, **kwargs):
9ad7392b
RD
4210 """
4211 ReleaseDocument(self, void docPointer)
4212
4213 Release a reference to the document, deleting document if it fades to black.
4214 """
e811c8ce
RD
4215 return _stc.StyledTextCtrl_ReleaseDocument(*args, **kwargs)
4216
4217 def GetModEventMask(*args, **kwargs):
9ad7392b
RD
4218 """
4219 GetModEventMask(self) -> int
4220
4221 Get which document modification events are sent to the container.
4222 """
e811c8ce
RD
4223 return _stc.StyledTextCtrl_GetModEventMask(*args, **kwargs)
4224
4225 def SetSTCFocus(*args, **kwargs):
9ad7392b
RD
4226 """
4227 SetSTCFocus(self, bool focus)
4228
4229 Change internal focus flag.
4230 """
e811c8ce
RD
4231 return _stc.StyledTextCtrl_SetSTCFocus(*args, **kwargs)
4232
4233 def GetSTCFocus(*args, **kwargs):
9ad7392b
RD
4234 """
4235 GetSTCFocus(self) -> bool
4236
4237 Get internal focus flag.
4238 """
e811c8ce
RD
4239 return _stc.StyledTextCtrl_GetSTCFocus(*args, **kwargs)
4240
4241 def SetStatus(*args, **kwargs):
9ad7392b
RD
4242 """
4243 SetStatus(self, int statusCode)
4244
4245 Change error status - 0 = OK.
4246 """
e811c8ce
RD
4247 return _stc.StyledTextCtrl_SetStatus(*args, **kwargs)
4248
4249 def GetStatus(*args, **kwargs):
9ad7392b
RD
4250 """
4251 GetStatus(self) -> int
4252
4253 Get error status.
4254 """
e811c8ce
RD
4255 return _stc.StyledTextCtrl_GetStatus(*args, **kwargs)
4256
4257 def SetMouseDownCaptures(*args, **kwargs):
9ad7392b
RD
4258 """
4259 SetMouseDownCaptures(self, bool captures)
4260
4261 Set whether the mouse is captured when its button is pressed.
4262 """
e811c8ce
RD
4263 return _stc.StyledTextCtrl_SetMouseDownCaptures(*args, **kwargs)
4264
4265 def GetMouseDownCaptures(*args, **kwargs):
9ad7392b
RD
4266 """
4267 GetMouseDownCaptures(self) -> bool
4268
4269 Get whether mouse gets captured.
4270 """
e811c8ce
RD
4271 return _stc.StyledTextCtrl_GetMouseDownCaptures(*args, **kwargs)
4272
4273 def SetSTCCursor(*args, **kwargs):
9ad7392b
RD
4274 """
4275 SetSTCCursor(self, int cursorType)
4276
4277 Sets the cursor to one of the SC_CURSOR* values.
4278 """
e811c8ce
RD
4279 return _stc.StyledTextCtrl_SetSTCCursor(*args, **kwargs)
4280
4281 def GetSTCCursor(*args, **kwargs):
9ad7392b
RD
4282 """
4283 GetSTCCursor(self) -> int
4284
4285 Get cursor type.
4286 """
e811c8ce
RD
4287 return _stc.StyledTextCtrl_GetSTCCursor(*args, **kwargs)
4288
4289 def SetControlCharSymbol(*args, **kwargs):
9ad7392b
RD
4290 """
4291 SetControlCharSymbol(self, int symbol)
4292
4293 Change the way control characters are displayed:
4294 If symbol is < 32, keep the drawn way, else, use the given character.
4295 """
e811c8ce
RD
4296 return _stc.StyledTextCtrl_SetControlCharSymbol(*args, **kwargs)
4297
4298 def GetControlCharSymbol(*args, **kwargs):
9ad7392b
RD
4299 """
4300 GetControlCharSymbol(self) -> int
4301
4302 Get the way control characters are displayed.
4303 """
e811c8ce
RD
4304 return _stc.StyledTextCtrl_GetControlCharSymbol(*args, **kwargs)
4305
4306 def WordPartLeft(*args, **kwargs):
9ad7392b
RD
4307 """
4308 WordPartLeft(self)
4309
4310 Move to the previous change in capitalisation.
4311 """
e811c8ce
RD
4312 return _stc.StyledTextCtrl_WordPartLeft(*args, **kwargs)
4313
4314 def WordPartLeftExtend(*args, **kwargs):
9ad7392b
RD
4315 """
4316 WordPartLeftExtend(self)
4317
4318 Move to the previous change in capitalisation extending selection
4319 to new caret position.
4320 """
e811c8ce
RD
4321 return _stc.StyledTextCtrl_WordPartLeftExtend(*args, **kwargs)
4322
4323 def WordPartRight(*args, **kwargs):
9ad7392b
RD
4324 """
4325 WordPartRight(self)
4326
4327 Move to the change next in capitalisation.
4328 """
e811c8ce
RD
4329 return _stc.StyledTextCtrl_WordPartRight(*args, **kwargs)
4330
4331 def WordPartRightExtend(*args, **kwargs):
9ad7392b
RD
4332 """
4333 WordPartRightExtend(self)
4334
4335 Move to the next change in capitalisation extending selection
4336 to new caret position.
4337 """
e811c8ce
RD
4338 return _stc.StyledTextCtrl_WordPartRightExtend(*args, **kwargs)
4339
4340 def SetVisiblePolicy(*args, **kwargs):
9ad7392b
RD
4341 """
4342 SetVisiblePolicy(self, int visiblePolicy, int visibleSlop)
4343
4344 Set the way the display area is determined when a particular line
4345 is to be moved to by Find, FindNext, GotoLine, etc.
4346 """
e811c8ce
RD
4347 return _stc.StyledTextCtrl_SetVisiblePolicy(*args, **kwargs)
4348
4349 def DelLineLeft(*args, **kwargs):
9ad7392b
RD
4350 """
4351 DelLineLeft(self)
4352
4353 Delete back from the current position to the start of the line.
4354 """
e811c8ce
RD
4355 return _stc.StyledTextCtrl_DelLineLeft(*args, **kwargs)
4356
4357 def DelLineRight(*args, **kwargs):
9ad7392b
RD
4358 """
4359 DelLineRight(self)
4360
4361 Delete forwards from the current position to the end of the line.
4362 """
4363 return _stc.StyledTextCtrl_DelLineRight(*args, **kwargs)
e811c8ce
RD
4364
4365 def SetXOffset(*args, **kwargs):
9ad7392b
RD
4366 """
4367 SetXOffset(self, int newOffset)
4368
4369 Get and Set the xOffset (ie, horizonal scroll position).
4370 """
e811c8ce
RD
4371 return _stc.StyledTextCtrl_SetXOffset(*args, **kwargs)
4372
4373 def GetXOffset(*args, **kwargs):
a95a7133 4374 """GetXOffset(self) -> int"""
e811c8ce
RD
4375 return _stc.StyledTextCtrl_GetXOffset(*args, **kwargs)
4376
4377 def ChooseCaretX(*args, **kwargs):
9ad7392b
RD
4378 """
4379 ChooseCaretX(self)
4380
4381 Set the last x chosen value to be the caret x position.
4382 """
e811c8ce
RD
4383 return _stc.StyledTextCtrl_ChooseCaretX(*args, **kwargs)
4384
4385 def SetXCaretPolicy(*args, **kwargs):
9ad7392b
RD
4386 """
4387 SetXCaretPolicy(self, int caretPolicy, int caretSlop)
4388
4389 Set the way the caret is kept visible when going sideway.
4390 The exclusion zone is given in pixels.
4391 """
e811c8ce
RD
4392 return _stc.StyledTextCtrl_SetXCaretPolicy(*args, **kwargs)
4393
4394 def SetYCaretPolicy(*args, **kwargs):
9ad7392b
RD
4395 """
4396 SetYCaretPolicy(self, int caretPolicy, int caretSlop)
4397
4398 Set the way the line the caret is on is kept visible.
4399 The exclusion zone is given in lines.
4400 """
e811c8ce
RD
4401 return _stc.StyledTextCtrl_SetYCaretPolicy(*args, **kwargs)
4402
4403 def SetPrintWrapMode(*args, **kwargs):
9ad7392b
RD
4404 """
4405 SetPrintWrapMode(self, int mode)
4406
4407 Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
4408 """
e811c8ce
RD
4409 return _stc.StyledTextCtrl_SetPrintWrapMode(*args, **kwargs)
4410
4411 def GetPrintWrapMode(*args, **kwargs):
9ad7392b
RD
4412 """
4413 GetPrintWrapMode(self) -> int
4414
4415 Is printing line wrapped?
4416 """
e811c8ce
RD
4417 return _stc.StyledTextCtrl_GetPrintWrapMode(*args, **kwargs)
4418
4419 def SetHotspotActiveForeground(*args, **kwargs):
9ad7392b
RD
4420 """
4421 SetHotspotActiveForeground(self, bool useSetting, Colour fore)
4422
4423 Set a fore colour for active hotspots.
4424 """
e811c8ce
RD
4425 return _stc.StyledTextCtrl_SetHotspotActiveForeground(*args, **kwargs)
4426
4427 def SetHotspotActiveBackground(*args, **kwargs):
9ad7392b
RD
4428 """
4429 SetHotspotActiveBackground(self, bool useSetting, Colour back)
4430
4431 Set a back colour for active hotspots.
4432 """
e811c8ce
RD
4433 return _stc.StyledTextCtrl_SetHotspotActiveBackground(*args, **kwargs)
4434
4435 def SetHotspotActiveUnderline(*args, **kwargs):
9ad7392b
RD
4436 """
4437 SetHotspotActiveUnderline(self, bool underline)
4438
4439 Enable / Disable underlining active hotspots.
4440 """
e811c8ce
RD
4441 return _stc.StyledTextCtrl_SetHotspotActiveUnderline(*args, **kwargs)
4442
96b3fa7c 4443 def SetHotspotSingleLine(*args, **kwargs):
9ad7392b
RD
4444 """
4445 SetHotspotSingleLine(self, bool singleLine)
4446
4447 Limit hotspots to single line so hotspots on two lines don't merge.
4448 """
96b3fa7c
RD
4449 return _stc.StyledTextCtrl_SetHotspotSingleLine(*args, **kwargs)
4450
4276dc52 4451 def ParaDown(*args, **kwargs):
9ad7392b
RD
4452 """
4453 ParaDown(self)
4454
4455 Move caret between paragraphs (delimited by empty lines).
4456 """
4276dc52
RD
4457 return _stc.StyledTextCtrl_ParaDown(*args, **kwargs)
4458
4459 def ParaDownExtend(*args, **kwargs):
a95a7133 4460 """ParaDownExtend(self)"""
4276dc52
RD
4461 return _stc.StyledTextCtrl_ParaDownExtend(*args, **kwargs)
4462
4463 def ParaUp(*args, **kwargs):
a95a7133 4464 """ParaUp(self)"""
4276dc52
RD
4465 return _stc.StyledTextCtrl_ParaUp(*args, **kwargs)
4466
4467 def ParaUpExtend(*args, **kwargs):
a95a7133 4468 """ParaUpExtend(self)"""
4276dc52
RD
4469 return _stc.StyledTextCtrl_ParaUpExtend(*args, **kwargs)
4470
e811c8ce 4471 def PositionBefore(*args, **kwargs):
9ad7392b
RD
4472 """
4473 PositionBefore(self, int pos) -> int
4474
4475 Given a valid document position, return the previous position taking code
4476 page into account. Returns 0 if passed 0.
4477 """
e811c8ce
RD
4478 return _stc.StyledTextCtrl_PositionBefore(*args, **kwargs)
4479
4480 def PositionAfter(*args, **kwargs):
9ad7392b
RD
4481 """
4482 PositionAfter(self, int pos) -> int
4483
4484 Given a valid document position, return the next position taking code
4485 page into account. Maximum value returned is the last position in the document.
4486 """
e811c8ce
RD
4487 return _stc.StyledTextCtrl_PositionAfter(*args, **kwargs)
4488
4489 def CopyRange(*args, **kwargs):
9ad7392b
RD
4490 """
4491 CopyRange(self, int start, int end)
4492
4493 Copy a range of text to the clipboard. Positions are clipped into the document.
4494 """
e811c8ce
RD
4495 return _stc.StyledTextCtrl_CopyRange(*args, **kwargs)
4496
4497 def CopyText(*args, **kwargs):
9ad7392b
RD
4498 """
4499 CopyText(self, int length, String text)
4500
4501 Copy argument text to the clipboard.
4502 """
e811c8ce
RD
4503 return _stc.StyledTextCtrl_CopyText(*args, **kwargs)
4504
96b3fa7c 4505 def SetSelectionMode(*args, **kwargs):
9ad7392b
RD
4506 """
4507 SetSelectionMode(self, int mode)
4508
4509 Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE) or
4510 by lines (SC_SEL_LINES).
4511 """
96b3fa7c
RD
4512 return _stc.StyledTextCtrl_SetSelectionMode(*args, **kwargs)
4513
4514 def GetSelectionMode(*args, **kwargs):
9ad7392b
RD
4515 """
4516 GetSelectionMode(self) -> int
4517
4518 Get the mode of the current selection.
4519 """
96b3fa7c
RD
4520 return _stc.StyledTextCtrl_GetSelectionMode(*args, **kwargs)
4521
4522 def GetLineSelStartPosition(*args, **kwargs):
9ad7392b
RD
4523 """
4524 GetLineSelStartPosition(self, int line) -> int
4525
4526 Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line).
4527 """
96b3fa7c
RD
4528 return _stc.StyledTextCtrl_GetLineSelStartPosition(*args, **kwargs)
4529
4530 def GetLineSelEndPosition(*args, **kwargs):
9ad7392b
RD
4531 """
4532 GetLineSelEndPosition(self, int line) -> int
4533
4534 Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line).
4535 """
96b3fa7c
RD
4536 return _stc.StyledTextCtrl_GetLineSelEndPosition(*args, **kwargs)
4537
4276dc52 4538 def LineDownRectExtend(*args, **kwargs):
9ad7392b
RD
4539 """
4540 LineDownRectExtend(self)
4541
4542 Move caret down one line, extending rectangular selection to new caret position.
4543 """
4276dc52
RD
4544 return _stc.StyledTextCtrl_LineDownRectExtend(*args, **kwargs)
4545
4546 def LineUpRectExtend(*args, **kwargs):
9ad7392b
RD
4547 """
4548 LineUpRectExtend(self)
4549
4550 Move caret up one line, extending rectangular selection to new caret position.
4551 """
4276dc52
RD
4552 return _stc.StyledTextCtrl_LineUpRectExtend(*args, **kwargs)
4553
4554 def CharLeftRectExtend(*args, **kwargs):
9ad7392b
RD
4555 """
4556 CharLeftRectExtend(self)
4557
4558 Move caret left one character, extending rectangular selection to new caret position.
4559 """
4276dc52
RD
4560 return _stc.StyledTextCtrl_CharLeftRectExtend(*args, **kwargs)
4561
4562 def CharRightRectExtend(*args, **kwargs):
9ad7392b
RD
4563 """
4564 CharRightRectExtend(self)
4565
4566 Move caret right one character, extending rectangular selection to new caret position.
4567 """
4276dc52
RD
4568 return _stc.StyledTextCtrl_CharRightRectExtend(*args, **kwargs)
4569
4570 def HomeRectExtend(*args, **kwargs):
9ad7392b
RD
4571 """
4572 HomeRectExtend(self)
4573
4574 Move caret to first position on line, extending rectangular selection to new caret position.
4575 """
4276dc52
RD
4576 return _stc.StyledTextCtrl_HomeRectExtend(*args, **kwargs)
4577
4578 def VCHomeRectExtend(*args, **kwargs):
9ad7392b
RD
4579 """
4580 VCHomeRectExtend(self)
4581
4582 Move caret to before first visible character on line.
4583 If already there move to first character on line.
4584 In either case, extend rectangular selection to new caret position.
4585 """
4276dc52
RD
4586 return _stc.StyledTextCtrl_VCHomeRectExtend(*args, **kwargs)
4587
4588 def LineEndRectExtend(*args, **kwargs):
9ad7392b
RD
4589 """
4590 LineEndRectExtend(self)
4591
4592 Move caret to last position on line, extending rectangular selection to new caret position.
4593 """
4276dc52
RD
4594 return _stc.StyledTextCtrl_LineEndRectExtend(*args, **kwargs)
4595
4596 def PageUpRectExtend(*args, **kwargs):
9ad7392b
RD
4597 """
4598 PageUpRectExtend(self)
4599
4600 Move caret one page up, extending rectangular selection to new caret position.
4601 """
4276dc52
RD
4602 return _stc.StyledTextCtrl_PageUpRectExtend(*args, **kwargs)
4603
4604 def PageDownRectExtend(*args, **kwargs):
9ad7392b
RD
4605 """
4606 PageDownRectExtend(self)
4607
4608 Move caret one page down, extending rectangular selection to new caret position.
4609 """
4276dc52
RD
4610 return _stc.StyledTextCtrl_PageDownRectExtend(*args, **kwargs)
4611
4612 def StutteredPageUp(*args, **kwargs):
9ad7392b
RD
4613 """
4614 StutteredPageUp(self)
4615
4616 Move caret to top of page, or one page up if already at top of page.
4617 """
4276dc52
RD
4618 return _stc.StyledTextCtrl_StutteredPageUp(*args, **kwargs)
4619
4620 def StutteredPageUpExtend(*args, **kwargs):
9ad7392b
RD
4621 """
4622 StutteredPageUpExtend(self)
4623
4624 Move caret to top of page, or one page up if already at top of page, extending selection to new caret position.
4625 """
4276dc52
RD
4626 return _stc.StyledTextCtrl_StutteredPageUpExtend(*args, **kwargs)
4627
4628 def StutteredPageDown(*args, **kwargs):
9ad7392b
RD
4629 """
4630 StutteredPageDown(self)
4631
4632 Move caret to bottom of page, or one page down if already at bottom of page.
4633 """
4276dc52
RD
4634 return _stc.StyledTextCtrl_StutteredPageDown(*args, **kwargs)
4635
4636 def StutteredPageDownExtend(*args, **kwargs):
9ad7392b
RD
4637 """
4638 StutteredPageDownExtend(self)
4639
4640 Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position.
4641 """
4276dc52
RD
4642 return _stc.StyledTextCtrl_StutteredPageDownExtend(*args, **kwargs)
4643
4644 def WordLeftEnd(*args, **kwargs):
9ad7392b
RD
4645 """
4646 WordLeftEnd(self)
4647
4648 Move caret left one word, position cursor at end of word.
4649 """
4276dc52
RD
4650 return _stc.StyledTextCtrl_WordLeftEnd(*args, **kwargs)
4651
4652 def WordLeftEndExtend(*args, **kwargs):
9ad7392b
RD
4653 """
4654 WordLeftEndExtend(self)
4655
4656 Move caret left one word, position cursor at end of word, extending selection to new caret position.
4657 """
4276dc52
RD
4658 return _stc.StyledTextCtrl_WordLeftEndExtend(*args, **kwargs)
4659
4660 def WordRightEnd(*args, **kwargs):
9ad7392b
RD
4661 """
4662 WordRightEnd(self)
4663
4664 Move caret right one word, position cursor at end of word.
4665 """
4276dc52
RD
4666 return _stc.StyledTextCtrl_WordRightEnd(*args, **kwargs)
4667
4668 def WordRightEndExtend(*args, **kwargs):
9ad7392b
RD
4669 """
4670 WordRightEndExtend(self)
4671
4672 Move caret right one word, position cursor at end of word, extending selection to new caret position.
4673 """
4276dc52
RD
4674 return _stc.StyledTextCtrl_WordRightEndExtend(*args, **kwargs)
4675
96b3fa7c 4676 def SetWhitespaceChars(*args, **kwargs):
9ad7392b
RD
4677 """
4678 SetWhitespaceChars(self, String characters)
4679
4680 Set the set of characters making up whitespace for when moving or selecting by word.
4681 Should be called after SetWordChars.
4682 """
96b3fa7c
RD
4683 return _stc.StyledTextCtrl_SetWhitespaceChars(*args, **kwargs)
4684
4685 def SetCharsDefault(*args, **kwargs):
9ad7392b
RD
4686 """
4687 SetCharsDefault(self)
4688
4689 Reset the set of characters for whitespace and word characters to the defaults.
4690 """
96b3fa7c
RD
4691 return _stc.StyledTextCtrl_SetCharsDefault(*args, **kwargs)
4692
4693 def AutoCompGetCurrent(*args, **kwargs):
9ad7392b
RD
4694 """
4695 AutoCompGetCurrent(self) -> int
4696
4697 Get currently selected item position in the auto-completion list
4698 """
96b3fa7c
RD
4699 return _stc.StyledTextCtrl_AutoCompGetCurrent(*args, **kwargs)
4700
5e483524 4701 def Allocate(*args, **kwargs):
9ad7392b
RD
4702 """
4703 Allocate(self, int bytes)
4704
4705 Enlarge the document to a particular size of text bytes.
4706 """
5e483524
RD
4707 return _stc.StyledTextCtrl_Allocate(*args, **kwargs)
4708
53aa7709 4709 def FindColumn(*args, **kwargs):
9ad7392b
RD
4710 """
4711 FindColumn(self, int line, int column) -> int
4712
1bd55598 4713 Find the position of a column on a line taking into account tabs and
9ad7392b
RD
4714 multi-byte characters. If beyond end of line, return line end position.
4715 """
53aa7709
RD
4716 return _stc.StyledTextCtrl_FindColumn(*args, **kwargs)
4717
1bd55598
RD
4718 def GetCaretSticky(*args, **kwargs):
4719 """
4720 GetCaretSticky(self) -> bool
4721
4722 Can the caret preferred x position only be changed by explicit movement commands?
4723 """
4724 return _stc.StyledTextCtrl_GetCaretSticky(*args, **kwargs)
4725
4726 def SetCaretSticky(*args, **kwargs):
4727 """
4728 SetCaretSticky(self, bool useCaretStickyBehaviour)
4729
4730 Stop the caret preferred x position changing when the user types.
4731 """
4732 return _stc.StyledTextCtrl_SetCaretSticky(*args, **kwargs)
4733
4734 def ToggleCaretSticky(*args, **kwargs):
4735 """
4736 ToggleCaretSticky(self)
4737
4738 Switch between sticky and non-sticky: meant to be bound to a key.
4739 """
4740 return _stc.StyledTextCtrl_ToggleCaretSticky(*args, **kwargs)
4741
4742 def SetPasteConvertEndings(*args, **kwargs):
4743 """
4744 SetPasteConvertEndings(self, bool convert)
4745
4746 Enable/Disable convert-on-paste for line endings
4747 """
4748 return _stc.StyledTextCtrl_SetPasteConvertEndings(*args, **kwargs)
4749
4750 def GetPasteConvertEndings(*args, **kwargs):
4751 """
4752 GetPasteConvertEndings(self) -> bool
4753
4754 Get convert-on-paste setting
4755 """
4756 return _stc.StyledTextCtrl_GetPasteConvertEndings(*args, **kwargs)
4757
4758 def SelectionDuplicate(*args, **kwargs):
4759 """
4760 SelectionDuplicate(self)
4761
4762 Duplicate the selection. If selection empty duplicate the line containing the caret.
4763 """
4764 return _stc.StyledTextCtrl_SelectionDuplicate(*args, **kwargs)
4765
10044bf1
RD
4766 def SetCaretLineBackAlpha(*args, **kwargs):
4767 """
4768 SetCaretLineBackAlpha(self, int alpha)
4769
4770 Set background alpha of the caret line.
4771 """
4772 return _stc.StyledTextCtrl_SetCaretLineBackAlpha(*args, **kwargs)
4773
4774 def GetCaretLineBackAlpha(*args, **kwargs):
4775 """
4776 GetCaretLineBackAlpha(self) -> int
4777
4778 Get the background alpha of the caret line.
4779 """
4780 return _stc.StyledTextCtrl_GetCaretLineBackAlpha(*args, **kwargs)
4781
e811c8ce 4782 def StartRecord(*args, **kwargs):
9ad7392b
RD
4783 """
4784 StartRecord(self)
4785
4786 Start notifying the container of all key presses and commands.
4787 """
e811c8ce
RD
4788 return _stc.StyledTextCtrl_StartRecord(*args, **kwargs)
4789
4790 def StopRecord(*args, **kwargs):
9ad7392b
RD
4791 """
4792 StopRecord(self)
4793
4794 Stop notifying the container of all key presses and commands.
4795 """
e811c8ce
RD
4796 return _stc.StyledTextCtrl_StopRecord(*args, **kwargs)
4797
4798 def SetLexer(*args, **kwargs):
9ad7392b
RD
4799 """
4800 SetLexer(self, int lexer)
4801
4802 Set the lexing language of the document.
4803 """
e811c8ce
RD
4804 return _stc.StyledTextCtrl_SetLexer(*args, **kwargs)
4805
4806 def GetLexer(*args, **kwargs):
9ad7392b
RD
4807 """
4808 GetLexer(self) -> int
4809
4810 Retrieve the lexing language of the document.
4811 """
e811c8ce
RD
4812 return _stc.StyledTextCtrl_GetLexer(*args, **kwargs)
4813
4814 def Colourise(*args, **kwargs):
9ad7392b
RD
4815 """
4816 Colourise(self, int start, int end)
4817
4818 Colourise a segment of the document using the current lexing language.
4819 """
e811c8ce
RD
4820 return _stc.StyledTextCtrl_Colourise(*args, **kwargs)
4821
4822 def SetProperty(*args, **kwargs):
9ad7392b
RD
4823 """
4824 SetProperty(self, String key, String value)
4825
4826 Set up a value that may be used by a lexer for some optional feature.
4827 """
e811c8ce
RD
4828 return _stc.StyledTextCtrl_SetProperty(*args, **kwargs)
4829
4830 def SetKeyWords(*args, **kwargs):
9ad7392b
RD
4831 """
4832 SetKeyWords(self, int keywordSet, String keyWords)
4833
4834 Set up the key words used by the lexer.
4835 """
e811c8ce
RD
4836 return _stc.StyledTextCtrl_SetKeyWords(*args, **kwargs)
4837
4838 def SetLexerLanguage(*args, **kwargs):
9ad7392b
RD
4839 """
4840 SetLexerLanguage(self, String language)
4841
4842 Set the lexing language of the document based on string name.
4843 """
e811c8ce
RD
4844 return _stc.StyledTextCtrl_SetLexerLanguage(*args, **kwargs)
4845
1bd55598
RD
4846 def GetProperty(*args, **kwargs):
4847 """
4848 GetProperty(self, String key) -> String
4849
4850 Retrieve a 'property' value previously set with SetProperty.
4851 """
4852 return _stc.StyledTextCtrl_GetProperty(*args, **kwargs)
4853
4854 def GetPropertyExpanded(*args, **kwargs):
4855 """
4856 GetPropertyExpanded(self, String key) -> String
4857
4858 Retrieve a 'property' value previously set with SetProperty,
4859 with '$()' variable replacement on returned buffer.
4860 """
4861 return _stc.StyledTextCtrl_GetPropertyExpanded(*args, **kwargs)
4862
4863 def GetPropertyInt(*args, **kwargs):
4864 """
4865 GetPropertyInt(self, String key) -> int
4866
4867 Retrieve a 'property' value previously set with SetProperty,
4868 interpreted as an int AFTER any '$()' variable replacement.
4869 """
4870 return _stc.StyledTextCtrl_GetPropertyInt(*args, **kwargs)
4871
4872 def GetStyleBitsNeeded(*args, **kwargs):
4873 """
4874 GetStyleBitsNeeded(self) -> int
4875
4876 Retrieve the number of bits the current lexer needs for styling.
4877 """
4878 return _stc.StyledTextCtrl_GetStyleBitsNeeded(*args, **kwargs)
4879
e811c8ce 4880 def GetCurrentLine(*args, **kwargs):
9ad7392b
RD
4881 """
4882 GetCurrentLine(self) -> int
4883
4884 Returns the line number of the line with the caret.
4885 """
e811c8ce
RD
4886 return _stc.StyledTextCtrl_GetCurrentLine(*args, **kwargs)
4887
4888 def StyleSetSpec(*args, **kwargs):
9ad7392b
RD
4889 """
4890 StyleSetSpec(self, int styleNum, String spec)
4891
4892 Extract style settings from a spec-string which is composed of one or
4893 more of the following comma separated elements::
4894
4895 bold turns on bold
4896 italic turns on italics
4897 fore:[name or #RRGGBB] sets the foreground colour
4898 back:[name or #RRGGBB] sets the background colour
4899 face:[facename] sets the font face name to use
4900 size:[num] sets the font size in points
4901 eol turns on eol filling
4902 underline turns on underlining
4903
4904 """
e811c8ce
RD
4905 return _stc.StyledTextCtrl_StyleSetSpec(*args, **kwargs)
4906
4907 def StyleSetFont(*args, **kwargs):
9ad7392b
RD
4908 """
4909 StyleSetFont(self, int styleNum, Font font)
4910
4911 Set style size, face, bold, italic, and underline attributes from the
4912 attributes of a `wx.Font`.
4913 """
e811c8ce
RD
4914 return _stc.StyledTextCtrl_StyleSetFont(*args, **kwargs)
4915
4916 def StyleSetFontAttr(*args, **kwargs):
0df68c9f 4917 """
a95a7133 4918 StyleSetFontAttr(self, int styleNum, int size, String faceName, bool bold,
a1b6e73b 4919 bool italic, bool underline, int encoding=wxFONTENCODING_DEFAULT)
9ad7392b
RD
4920
4921 Set all font style attributes at once.
0df68c9f 4922 """
e811c8ce
RD
4923 return _stc.StyledTextCtrl_StyleSetFontAttr(*args, **kwargs)
4924
a1b6e73b
RD
4925 def StyleSetCharacterSet(*args, **kwargs):
4926 """
4927 StyleSetCharacterSet(self, int style, int characterSet)
4928
4929 Set the character set of the font in a style. Converts the Scintilla
4930 wx.stc.STC_CHARSET_* set values to a wxFontEncoding.
4931 """
4932 return _stc.StyledTextCtrl_StyleSetCharacterSet(*args, **kwargs)
4933
4934 def StyleSetFontEncoding(*args, **kwargs):
4935 """
4936 StyleSetFontEncoding(self, int style, int encoding)
4937
4938 Set the font encoding to be used by a style.
4939 """
4940 return _stc.StyledTextCtrl_StyleSetFontEncoding(*args, **kwargs)
4941
e811c8ce 4942 def CmdKeyExecute(*args, **kwargs):
9ad7392b
RD
4943 """
4944 CmdKeyExecute(self, int cmd)
4945
4946 Perform one of the operations defined by the wx.stc.STC_CMD_* constants.
4947 """
e811c8ce
RD
4948 return _stc.StyledTextCtrl_CmdKeyExecute(*args, **kwargs)
4949
4950 def SetMargins(*args, **kwargs):
9ad7392b
RD
4951 """
4952 SetMargins(self, int left, int right)
4953
4954 Set the left and right margin in the edit area, measured in pixels.
4955 """
e811c8ce
RD
4956 return _stc.StyledTextCtrl_SetMargins(*args, **kwargs)
4957
4958 def GetSelection(*args, **kwargs):
9ad7392b
RD
4959 """
4960 GetSelection(self) -> (startPos, endPos)
4961
4962 Retrieve the start and end positions of the current selection.
4963 """
e811c8ce
RD
4964 return _stc.StyledTextCtrl_GetSelection(*args, **kwargs)
4965
4966 def PointFromPosition(*args, **kwargs):
9ad7392b
RD
4967 """
4968 PointFromPosition(self, int pos) -> Point
4969
4970 Retrieve the point in the window where a position is displayed.
4971 """
e811c8ce
RD
4972 return _stc.StyledTextCtrl_PointFromPosition(*args, **kwargs)
4973
4974 def ScrollToLine(*args, **kwargs):
9ad7392b
RD
4975 """
4976 ScrollToLine(self, int line)
4977
4978 Scroll enough to make the given line visible.
4979 """
e811c8ce
RD
4980 return _stc.StyledTextCtrl_ScrollToLine(*args, **kwargs)
4981
4982 def ScrollToColumn(*args, **kwargs):
9ad7392b
RD
4983 """
4984 ScrollToColumn(self, int column)
4985
4986 Scroll enough to make the given column visible
4987 """
e811c8ce
RD
4988 return _stc.StyledTextCtrl_ScrollToColumn(*args, **kwargs)
4989
4990 def SendMsg(*args, **kwargs):
9ad7392b
RD
4991 """
4992 SendMsg(self, int msg, long wp=0, long lp=0) -> long
4993
4994 Send a message to Scintilla.
4995 """
e811c8ce
RD
4996 return _stc.StyledTextCtrl_SendMsg(*args, **kwargs)
4997
4998 def SetVScrollBar(*args, **kwargs):
9ad7392b
RD
4999 """
5000 SetVScrollBar(self, wxScrollBar bar)
5001
5002 Set the vertical scrollbar to use instead of the one that's built-in.
5003 """
e811c8ce
RD
5004 return _stc.StyledTextCtrl_SetVScrollBar(*args, **kwargs)
5005
5006 def SetHScrollBar(*args, **kwargs):
9ad7392b
RD
5007 """
5008 SetHScrollBar(self, wxScrollBar bar)
5009
5010 Set the horizontal scrollbar to use instead of the ont that's built-in.
5011 """
e811c8ce
RD
5012 return _stc.StyledTextCtrl_SetHScrollBar(*args, **kwargs)
5013
5014 def GetLastKeydownProcessed(*args, **kwargs):
a95a7133 5015 """GetLastKeydownProcessed(self) -> bool"""
e811c8ce
RD
5016 return _stc.StyledTextCtrl_GetLastKeydownProcessed(*args, **kwargs)
5017
5018 def SetLastKeydownProcessed(*args, **kwargs):
a95a7133 5019 """SetLastKeydownProcessed(self, bool val)"""
e811c8ce
RD
5020 return _stc.StyledTextCtrl_SetLastKeydownProcessed(*args, **kwargs)
5021
5022 def SaveFile(*args, **kwargs):
9ad7392b
RD
5023 """
5024 SaveFile(self, String filename) -> bool
5025
5026 Write the contents of the editor to filename
5027 """
e811c8ce
RD
5028 return _stc.StyledTextCtrl_SaveFile(*args, **kwargs)
5029
5030 def LoadFile(*args, **kwargs):
9ad7392b
RD
5031 """
5032 LoadFile(self, String filename) -> bool
5033
5034 Load the contents of filename into the editor
5035 """
e811c8ce
RD
5036 return _stc.StyledTextCtrl_LoadFile(*args, **kwargs)
5037
5038 def DoDragOver(*args, **kwargs):
9ad7392b
RD
5039 """
5040 DoDragOver(self, int x, int y, int def) -> int
5041
5042 Allow for simulating a DnD DragOver.
5043 """
e811c8ce
RD
5044 return _stc.StyledTextCtrl_DoDragOver(*args, **kwargs)
5045
5046 def DoDropText(*args, **kwargs):
9ad7392b
RD
5047 """
5048 DoDropText(self, long x, long y, String data) -> bool
5049
5050 Allow for simulating a DnD DropText.
5051 """
e811c8ce
RD
5052 return _stc.StyledTextCtrl_DoDropText(*args, **kwargs)
5053
db914595 5054 def SetUseAntiAliasing(*args, **kwargs):
9ad7392b
RD
5055 """
5056 SetUseAntiAliasing(self, bool useAA)
5057
5058 Specify whether anti-aliased fonts should be used. Will have no
5059 effect on some platforms, but on some (wxMac for example) can greatly
5060 improve performance.
5061 """
db914595
RD
5062 return _stc.StyledTextCtrl_SetUseAntiAliasing(*args, **kwargs)
5063
5064 def GetUseAntiAliasing(*args, **kwargs):
9ad7392b
RD
5065 """
5066 GetUseAntiAliasing(self) -> bool
5067
5068 Returns the current UseAntiAliasing setting.
5069 """
db914595
RD
5070 return _stc.StyledTextCtrl_GetUseAntiAliasing(*args, **kwargs)
5071
66af7a75 5072 def AddTextRaw(*args, **kwargs):
9ad7392b
RD
5073 """
5074 AddTextRaw(self, char text)
5075
5076 Add text to the document at current position. The text should be
5077 utf-8 encoded on unicode builds of wxPython, or can be any 8-bit text
5078 in ansi builds.
5079 """
66af7a75
RD
5080 return _stc.StyledTextCtrl_AddTextRaw(*args, **kwargs)
5081
5082 def InsertTextRaw(*args, **kwargs):
9ad7392b
RD
5083 """
5084 InsertTextRaw(self, int pos, char text)
5085
5086 Insert string at a position. The text should be utf-8 encoded on
5087 unicode builds of wxPython, or can be any 8-bit text in ansi builds.
5088 """
66af7a75
RD
5089 return _stc.StyledTextCtrl_InsertTextRaw(*args, **kwargs)
5090
5091 def GetCurLineRaw(*args, **kwargs):
9ad7392b
RD
5092 """
5093 GetCurLineRaw() -> (text, index)
5094
5095 Retrieve the text of the line containing the caret, and also the index
5096 of the caret on the line. The returned value is a utf-8 encoded
5097 string in unicode builds of wxPython, or raw 8-bit text otherwise.
5098 """
66af7a75
RD
5099 return _stc.StyledTextCtrl_GetCurLineRaw(*args, **kwargs)
5100
5101 def GetLineRaw(*args, **kwargs):
9ad7392b
RD
5102 """
5103 GetLineRaw(self, int line) -> wxCharBuffer
5104
5105 Retrieve the contents of a line. The returned value is a utf-8
5106 encoded string in unicode builds of wxPython, or raw 8-bit text
5107 otherwise.
5108 """
66af7a75
RD
5109 return _stc.StyledTextCtrl_GetLineRaw(*args, **kwargs)
5110
5111 def GetSelectedTextRaw(*args, **kwargs):
9ad7392b
RD
5112 """
5113 GetSelectedTextRaw(self) -> wxCharBuffer
5114
5115 Retrieve the selected text. The returned value is a utf-8 encoded
5116 string in unicode builds of wxPython, or raw 8-bit text otherwise.
5117 """
66af7a75
RD
5118 return _stc.StyledTextCtrl_GetSelectedTextRaw(*args, **kwargs)
5119
5120 def GetTextRangeRaw(*args, **kwargs):
9ad7392b
RD
5121 """
5122 GetTextRangeRaw(self, int startPos, int endPos) -> wxCharBuffer
5123
5124 Retrieve a range of text. The returned value is a utf-8 encoded
5125 string in unicode builds of wxPython, or raw 8-bit text otherwise.
5126 """
66af7a75
RD
5127 return _stc.StyledTextCtrl_GetTextRangeRaw(*args, **kwargs)
5128
5129 def SetTextRaw(*args, **kwargs):
9ad7392b
RD
5130 """
5131 SetTextRaw(self, char text)
5132
5133 Replace the contents of the document with the argument text. The text
5134 should be utf-8 encoded on unicode builds of wxPython, or can be any
5135 8-bit text in ansi builds.
5136 """
66af7a75
RD
5137 return _stc.StyledTextCtrl_SetTextRaw(*args, **kwargs)
5138
5139 def GetTextRaw(*args, **kwargs):
9ad7392b
RD
5140 """
5141 GetTextRaw(self) -> wxCharBuffer
5142
5143 Retrieve all the text in the document. The returned value is a utf-8
5144 encoded string in unicode builds of wxPython, or raw 8-bit text
5145 otherwise.
5146 """
66af7a75
RD
5147 return _stc.StyledTextCtrl_GetTextRaw(*args, **kwargs)
5148
5149 def AppendTextRaw(*args, **kwargs):
9ad7392b
RD
5150 """
5151 AppendTextRaw(self, char text)
5152
5153 Append a string to the end of the document without changing the
5154 selection. The text should be utf-8 encoded on unicode builds of
5155 wxPython, or can be any 8-bit text in ansi builds.
5156 """
66af7a75
RD
5157 return _stc.StyledTextCtrl_AppendTextRaw(*args, **kwargs)
5158
9ad7392b
RD
5159 def AddTextUTF8(self, text):
5160 """
5161 Add UTF8 encoded text to the document at the current position.
5162 Works 'natively' in a unicode build of wxPython, and will also work
5163 in an ansi build if the UTF8 text is compatible with the current
5164 encoding.
5165 """
5166 if not wx.USE_UNICODE:
5167 u = text.decode('utf-8')
5168 text = u.encode(wx.GetDefaultPyEncoding())
5169 self.AddTextRaw(text)
5170
5171
5172 def InsertTextUTF8(self, pos, text):
5173 """
5174 Insert UTF8 encoded text at a position. Works 'natively' in a
5175 unicode build of wxPython, and will also work in an ansi build if
5176 the UTF8 text is compatible with the current encoding.
5177 """
5178 if not wx.USE_UNICODE:
5179 u = text.decode('utf-8')
5180 text = u.encode(wx.GetDefaultPyEncoding())
5181 self.InsertTextRaw(pos, text)
5182
5183
5184 def GetCurLineUTF8(self):
5185 """
5186 Retrieve the UTF8 text of the line containing the caret, and also
5187 the index of the caret on the line. In an ansi build of wxPython
5188 the text retrieved from the document is assumed to be in the
5189 current default encoding.
5190 """
5191 text, pos = self.GetCurLineRaw()
5192 if not wx.USE_UNICODE:
5193 u = text.decode(wx.GetDefaultPyEncoding())
5194 text = u.encode('utf-8')
5195 return text, pos
5196
5197
5198 def GetLineUTF8(self, line):
5199 """
5200 Retrieve the contents of a line as UTF8. In an ansi build of wxPython
5201 the text retrieved from the document is assumed to be in the
5202 current default encoding.
5203 """
5204 text = self.GetLineRaw(line)
5205 if not wx.USE_UNICODE:
5206 u = text.decode(wx.GetDefaultPyEncoding())
5207 text = u.encode('utf-8')
5208 return text
5209
5210
5211 def GetSelectedTextUTF8(self):
5212 """
5213 Retrieve the selected text as UTF8. In an ansi build of wxPython
5214 the text retrieved from the document is assumed to be in the
5215 current default encoding.
5216 """
5217 text = self.GetSelectedTextRaw()
5218 if not wx.USE_UNICODE:
5219 u = text.decode(wx.GetDefaultPyEncoding())
5220 text = u.encode('utf-8')
5221 return text
5222
5223
5224 def GetTextRangeUTF8(self, startPos, endPos):
5225 """
5226 Retrieve a range of text as UTF8. In an ansi build of wxPython
5227 the text retrieved from the document is assumed to be in the
5228 current default encoding.
5229 """
5230 text = self.GetTextRangeRaw(startPos, endPos)
5231 if not wx.USE_UNICODE:
5232 u = text.decode(wx.GetDefaultPyEncoding())
5233 text = u.encode('utf-8')
5234 return text
5235
5236
5237 def SetTextUTF8(self, text):
5238 """
5239 Replace the contents of the document with the UTF8 text given.
5240 Works 'natively' in a unicode build of wxPython, and will also
5241 work in an ansi build if the UTF8 text is compatible with the
5242 current encoding.
5243 """
5244 if not wx.USE_UNICODE:
5245 u = text.decode('utf-8')
5246 text = u.encode(wx.GetDefaultPyEncoding())
5247 self.SetTextRaw(text)
5248
5249
5250 def GetTextUTF8(self):
5251 """
5252 Retrieve all the text in the document as UTF8. In an ansi build
5253 of wxPython the text retrieved from the document is assumed to be
5254 in the current default encoding.
5255 """
5256 text = self.GetTextRaw()
5257 if not wx.USE_UNICODE:
5258 u = text.decode(wx.GetDefaultPyEncoding())
5259 text = u.encode('utf-8')
5260 return text
5261
5262
5263 def AppendTextUTF8(self, text):
5264 """
5265 Append a UTF8 string to the end of the document without changing
5266 the selection. Works 'natively' in a unicode build of wxPython,
5267 and will also work in an ansi build if the UTF8 text is compatible
5268 with the current encoding.
5269 """
5270 if not wx.USE_UNICODE:
5271 u = text.decode('utf-8')
5272 text = u.encode(wx.GetDefaultPyEncoding())
5273 self.AppendTextRaw(text)
5274
5275
2bf58437
RD
5276 GetCaretLineBack = GetCaretLineBackground
5277 SetCaretLineBack = SetCaretLineBackground
5278
e70b4d2d
RD
5279 Anchor = property(GetAnchor,SetAnchor,doc="See `GetAnchor` and `SetAnchor`")
5280 BackSpaceUnIndents = property(GetBackSpaceUnIndents,SetBackSpaceUnIndents,doc="See `GetBackSpaceUnIndents` and `SetBackSpaceUnIndents`")
5281 BufferedDraw = property(GetBufferedDraw,SetBufferedDraw,doc="See `GetBufferedDraw` and `SetBufferedDraw`")
5282 CaretForeground = property(GetCaretForeground,SetCaretForeground,doc="See `GetCaretForeground` and `SetCaretForeground`")
5283 CaretLineBack = property(GetCaretLineBack,SetCaretLineBack,doc="See `GetCaretLineBack` and `SetCaretLineBack`")
5284 CaretLineBackAlpha = property(GetCaretLineBackAlpha,SetCaretLineBackAlpha,doc="See `GetCaretLineBackAlpha` and `SetCaretLineBackAlpha`")
5285 CaretLineBackground = property(GetCaretLineBackground,SetCaretLineBackground,doc="See `GetCaretLineBackground` and `SetCaretLineBackground`")
5286 CaretLineVisible = property(GetCaretLineVisible,SetCaretLineVisible,doc="See `GetCaretLineVisible` and `SetCaretLineVisible`")
5287 CaretPeriod = property(GetCaretPeriod,SetCaretPeriod,doc="See `GetCaretPeriod` and `SetCaretPeriod`")
5288 CaretSticky = property(GetCaretSticky,SetCaretSticky,doc="See `GetCaretSticky` and `SetCaretSticky`")
5289 CaretWidth = property(GetCaretWidth,SetCaretWidth,doc="See `GetCaretWidth` and `SetCaretWidth`")
5290 CodePage = property(GetCodePage,SetCodePage,doc="See `GetCodePage` and `SetCodePage`")
5291 ControlCharSymbol = property(GetControlCharSymbol,SetControlCharSymbol,doc="See `GetControlCharSymbol` and `SetControlCharSymbol`")
5292 CurLine = property(GetCurLine,doc="See `GetCurLine`")
5293 CurLineRaw = property(GetCurLineRaw,doc="See `GetCurLineRaw`")
5294 CurLineUTF8 = property(GetCurLineUTF8,doc="See `GetCurLineUTF8`")
5295 CurrentLine = property(GetCurrentLine,doc="See `GetCurrentLine`")
5296 CurrentPos = property(GetCurrentPos,SetCurrentPos,doc="See `GetCurrentPos` and `SetCurrentPos`")
5297 DocPointer = property(GetDocPointer,SetDocPointer,doc="See `GetDocPointer` and `SetDocPointer`")
5298 EOLMode = property(GetEOLMode,SetEOLMode,doc="See `GetEOLMode` and `SetEOLMode`")
5299 EdgeColour = property(GetEdgeColour,SetEdgeColour,doc="See `GetEdgeColour` and `SetEdgeColour`")
5300 EdgeColumn = property(GetEdgeColumn,SetEdgeColumn,doc="See `GetEdgeColumn` and `SetEdgeColumn`")
5301 EdgeMode = property(GetEdgeMode,SetEdgeMode,doc="See `GetEdgeMode` and `SetEdgeMode`")
5302 EndAtLastLine = property(GetEndAtLastLine,SetEndAtLastLine,doc="See `GetEndAtLastLine` and `SetEndAtLastLine`")
5303 EndStyled = property(GetEndStyled,doc="See `GetEndStyled`")
5304 FirstVisibleLine = property(GetFirstVisibleLine,doc="See `GetFirstVisibleLine`")
5305 HighlightGuide = property(GetHighlightGuide,SetHighlightGuide,doc="See `GetHighlightGuide` and `SetHighlightGuide`")
5306 Indent = property(GetIndent,SetIndent,doc="See `GetIndent` and `SetIndent`")
5307 IndentationGuides = property(GetIndentationGuides,SetIndentationGuides,doc="See `GetIndentationGuides` and `SetIndentationGuides`")
5308 LastKeydownProcessed = property(GetLastKeydownProcessed,SetLastKeydownProcessed,doc="See `GetLastKeydownProcessed` and `SetLastKeydownProcessed`")
5309 LayoutCache = property(GetLayoutCache,SetLayoutCache,doc="See `GetLayoutCache` and `SetLayoutCache`")
5310 Length = property(GetLength,doc="See `GetLength`")
5311 Lexer = property(GetLexer,SetLexer,doc="See `GetLexer` and `SetLexer`")
5312 LineCount = property(GetLineCount,doc="See `GetLineCount`")
5313 MarginLeft = property(GetMarginLeft,SetMarginLeft,doc="See `GetMarginLeft` and `SetMarginLeft`")
5314 MarginRight = property(GetMarginRight,SetMarginRight,doc="See `GetMarginRight` and `SetMarginRight`")
5315 MaxLineState = property(GetMaxLineState,doc="See `GetMaxLineState`")
5316 ModEventMask = property(GetModEventMask,SetModEventMask,doc="See `GetModEventMask` and `SetModEventMask`")
5317 Modify = property(GetModify,doc="See `GetModify`")
5318 MouseDownCaptures = property(GetMouseDownCaptures,SetMouseDownCaptures,doc="See `GetMouseDownCaptures` and `SetMouseDownCaptures`")
5319 MouseDwellTime = property(GetMouseDwellTime,SetMouseDwellTime,doc="See `GetMouseDwellTime` and `SetMouseDwellTime`")
5320 Overtype = property(GetOvertype,SetOvertype,doc="See `GetOvertype` and `SetOvertype`")
5321 PasteConvertEndings = property(GetPasteConvertEndings,SetPasteConvertEndings,doc="See `GetPasteConvertEndings` and `SetPasteConvertEndings`")
5322 PrintColourMode = property(GetPrintColourMode,SetPrintColourMode,doc="See `GetPrintColourMode` and `SetPrintColourMode`")
5323 PrintMagnification = property(GetPrintMagnification,SetPrintMagnification,doc="See `GetPrintMagnification` and `SetPrintMagnification`")
5324 PrintWrapMode = property(GetPrintWrapMode,SetPrintWrapMode,doc="See `GetPrintWrapMode` and `SetPrintWrapMode`")
5325 ReadOnly = property(GetReadOnly,SetReadOnly,doc="See `GetReadOnly` and `SetReadOnly`")
5326 STCCursor = property(GetSTCCursor,SetSTCCursor,doc="See `GetSTCCursor` and `SetSTCCursor`")
5327 STCFocus = property(GetSTCFocus,SetSTCFocus,doc="See `GetSTCFocus` and `SetSTCFocus`")
5328 ScrollWidth = property(GetScrollWidth,SetScrollWidth,doc="See `GetScrollWidth` and `SetScrollWidth`")
5329 SearchFlags = property(GetSearchFlags,SetSearchFlags,doc="See `GetSearchFlags` and `SetSearchFlags`")
5330 SelAlpha = property(GetSelAlpha,SetSelAlpha,doc="See `GetSelAlpha` and `SetSelAlpha`")
5331 SelectedText = property(GetSelectedText,doc="See `GetSelectedText`")
5332 SelectedTextRaw = property(GetSelectedTextRaw,doc="See `GetSelectedTextRaw`")
5333 SelectedTextUTF8 = property(GetSelectedTextUTF8,doc="See `GetSelectedTextUTF8`")
5334 Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
5335 SelectionEnd = property(GetSelectionEnd,SetSelectionEnd,doc="See `GetSelectionEnd` and `SetSelectionEnd`")
5336 SelectionMode = property(GetSelectionMode,SetSelectionMode,doc="See `GetSelectionMode` and `SetSelectionMode`")
5337 SelectionStart = property(GetSelectionStart,SetSelectionStart,doc="See `GetSelectionStart` and `SetSelectionStart`")
5338 Status = property(GetStatus,SetStatus,doc="See `GetStatus` and `SetStatus`")
5339 StyleBits = property(GetStyleBits,SetStyleBits,doc="See `GetStyleBits` and `SetStyleBits`")
5340 StyleBitsNeeded = property(GetStyleBitsNeeded,doc="See `GetStyleBitsNeeded`")
5341 TabIndents = property(GetTabIndents,SetTabIndents,doc="See `GetTabIndents` and `SetTabIndents`")
5342 TabWidth = property(GetTabWidth,SetTabWidth,doc="See `GetTabWidth` and `SetTabWidth`")
5343 TargetEnd = property(GetTargetEnd,SetTargetEnd,doc="See `GetTargetEnd` and `SetTargetEnd`")
5344 TargetStart = property(GetTargetStart,SetTargetStart,doc="See `GetTargetStart` and `SetTargetStart`")
5345 Text = property(GetText,SetText,doc="See `GetText` and `SetText`")
5346 TextLength = property(GetTextLength,doc="See `GetTextLength`")
5347 TextRaw = property(GetTextRaw,SetTextRaw,doc="See `GetTextRaw` and `SetTextRaw`")
5348 TextUTF8 = property(GetTextUTF8,SetTextUTF8,doc="See `GetTextUTF8` and `SetTextUTF8`")
5349 TwoPhaseDraw = property(GetTwoPhaseDraw,SetTwoPhaseDraw,doc="See `GetTwoPhaseDraw` and `SetTwoPhaseDraw`")
5350 UndoCollection = property(GetUndoCollection,SetUndoCollection,doc="See `GetUndoCollection` and `SetUndoCollection`")
5351 UseAntiAliasing = property(GetUseAntiAliasing,SetUseAntiAliasing,doc="See `GetUseAntiAliasing` and `SetUseAntiAliasing`")
5352 UseHorizontalScrollBar = property(GetUseHorizontalScrollBar,SetUseHorizontalScrollBar,doc="See `GetUseHorizontalScrollBar` and `SetUseHorizontalScrollBar`")
5353 UseTabs = property(GetUseTabs,SetUseTabs,doc="See `GetUseTabs` and `SetUseTabs`")
5354 UseVerticalScrollBar = property(GetUseVerticalScrollBar,SetUseVerticalScrollBar,doc="See `GetUseVerticalScrollBar` and `SetUseVerticalScrollBar`")
5355 ViewEOL = property(GetViewEOL,SetViewEOL,doc="See `GetViewEOL` and `SetViewEOL`")
5356 ViewWhiteSpace = property(GetViewWhiteSpace,SetViewWhiteSpace,doc="See `GetViewWhiteSpace` and `SetViewWhiteSpace`")
5357 WrapMode = property(GetWrapMode,SetWrapMode,doc="See `GetWrapMode` and `SetWrapMode`")
5358 WrapStartIndent = property(GetWrapStartIndent,SetWrapStartIndent,doc="See `GetWrapStartIndent` and `SetWrapStartIndent`")
5359 WrapVisualFlags = property(GetWrapVisualFlags,SetWrapVisualFlags,doc="See `GetWrapVisualFlags` and `SetWrapVisualFlags`")
5360 WrapVisualFlagsLocation = property(GetWrapVisualFlagsLocation,SetWrapVisualFlagsLocation,doc="See `GetWrapVisualFlagsLocation` and `SetWrapVisualFlagsLocation`")
5361 XOffset = property(GetXOffset,SetXOffset,doc="See `GetXOffset` and `SetXOffset`")
5362 Zoom = property(GetZoom,SetZoom,doc="See `GetZoom` and `SetZoom`")
2131d850 5363_stc.StyledTextCtrl_swigregister(StyledTextCtrl)
b2dc1044
RD
5364cvar = _stc.cvar
5365STCNameStr = cvar.STCNameStr
d14a1e28
RD
5366
5367def PreStyledTextCtrl(*args, **kwargs):
e811c8ce 5368 """PreStyledTextCtrl() -> StyledTextCtrl"""
d14a1e28 5369 val = _stc.new_PreStyledTextCtrl(*args, **kwargs)
d14a1e28
RD
5370 return val
5371
d55e5bfc 5372class StyledTextEvent(_core.CommandEvent):
36ed4f51 5373 """Proxy of C++ StyledTextEvent class"""
1bd55598
RD
5374 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5375 __repr__ = _swig_repr
5376 def __init__(self, *args, **kwargs):
2131d850 5377 """__init__(self, EventType commandType=0, int id=0) -> StyledTextEvent"""
1bd55598
RD
5378 _stc.StyledTextEvent_swiginit(self,_stc.new_StyledTextEvent(*args, **kwargs))
5379 __swig_destroy__ = _stc.delete_StyledTextEvent
5380 __del__ = lambda self : None;
e811c8ce 5381 def SetPosition(*args, **kwargs):
a95a7133 5382 """SetPosition(self, int pos)"""
e811c8ce
RD
5383 return _stc.StyledTextEvent_SetPosition(*args, **kwargs)
5384
5385 def SetKey(*args, **kwargs):
a95a7133 5386 """SetKey(self, int k)"""
e811c8ce
RD
5387 return _stc.StyledTextEvent_SetKey(*args, **kwargs)
5388
5389 def SetModifiers(*args, **kwargs):
a95a7133 5390 """SetModifiers(self, int m)"""
e811c8ce
RD
5391 return _stc.StyledTextEvent_SetModifiers(*args, **kwargs)
5392
5393 def SetModificationType(*args, **kwargs):
a95a7133 5394 """SetModificationType(self, int t)"""
e811c8ce
RD
5395 return _stc.StyledTextEvent_SetModificationType(*args, **kwargs)
5396
5397 def SetText(*args, **kwargs):
a95a7133 5398 """SetText(self, String t)"""
e811c8ce
RD
5399 return _stc.StyledTextEvent_SetText(*args, **kwargs)
5400
5401 def SetLength(*args, **kwargs):
a95a7133 5402 """SetLength(self, int len)"""
e811c8ce
RD
5403 return _stc.StyledTextEvent_SetLength(*args, **kwargs)
5404
5405 def SetLinesAdded(*args, **kwargs):
a95a7133 5406 """SetLinesAdded(self, int num)"""
e811c8ce
RD
5407 return _stc.StyledTextEvent_SetLinesAdded(*args, **kwargs)
5408
5409 def SetLine(*args, **kwargs):
a95a7133 5410 """SetLine(self, int val)"""
e811c8ce
RD
5411 return _stc.StyledTextEvent_SetLine(*args, **kwargs)
5412
5413 def SetFoldLevelNow(*args, **kwargs):
a95a7133 5414 """SetFoldLevelNow(self, int val)"""
e811c8ce
RD
5415 return _stc.StyledTextEvent_SetFoldLevelNow(*args, **kwargs)
5416
5417 def SetFoldLevelPrev(*args, **kwargs):
a95a7133 5418 """SetFoldLevelPrev(self, int val)"""
e811c8ce
RD
5419 return _stc.StyledTextEvent_SetFoldLevelPrev(*args, **kwargs)
5420
5421 def SetMargin(*args, **kwargs):
a95a7133 5422 """SetMargin(self, int val)"""
e811c8ce
RD
5423 return _stc.StyledTextEvent_SetMargin(*args, **kwargs)
5424
5425 def SetMessage(*args, **kwargs):
a95a7133 5426 """SetMessage(self, int val)"""
e811c8ce
RD
5427 return _stc.StyledTextEvent_SetMessage(*args, **kwargs)
5428
5429 def SetWParam(*args, **kwargs):
a95a7133 5430 """SetWParam(self, int val)"""
e811c8ce
RD
5431 return _stc.StyledTextEvent_SetWParam(*args, **kwargs)
5432
5433 def SetLParam(*args, **kwargs):
a95a7133 5434 """SetLParam(self, int val)"""
e811c8ce
RD
5435 return _stc.StyledTextEvent_SetLParam(*args, **kwargs)
5436
5437 def SetListType(*args, **kwargs):
a95a7133 5438 """SetListType(self, int val)"""
e811c8ce
RD
5439 return _stc.StyledTextEvent_SetListType(*args, **kwargs)
5440
5441 def SetX(*args, **kwargs):
a95a7133 5442 """SetX(self, int val)"""
e811c8ce
RD
5443 return _stc.StyledTextEvent_SetX(*args, **kwargs)
5444
5445 def SetY(*args, **kwargs):
a95a7133 5446 """SetY(self, int val)"""
e811c8ce
RD
5447 return _stc.StyledTextEvent_SetY(*args, **kwargs)
5448
5449 def SetDragText(*args, **kwargs):
a95a7133 5450 """SetDragText(self, String val)"""
e811c8ce
RD
5451 return _stc.StyledTextEvent_SetDragText(*args, **kwargs)
5452
5453 def SetDragAllowMove(*args, **kwargs):
a95a7133 5454 """SetDragAllowMove(self, bool val)"""
e811c8ce
RD
5455 return _stc.StyledTextEvent_SetDragAllowMove(*args, **kwargs)
5456
5457 def SetDragResult(*args, **kwargs):
a95a7133 5458 """SetDragResult(self, int val)"""
e811c8ce
RD
5459 return _stc.StyledTextEvent_SetDragResult(*args, **kwargs)
5460
5461 def GetPosition(*args, **kwargs):
a95a7133 5462 """GetPosition(self) -> int"""
e811c8ce
RD
5463 return _stc.StyledTextEvent_GetPosition(*args, **kwargs)
5464
5465 def GetKey(*args, **kwargs):
a95a7133 5466 """GetKey(self) -> int"""
e811c8ce
RD
5467 return _stc.StyledTextEvent_GetKey(*args, **kwargs)
5468
5469 def GetModifiers(*args, **kwargs):
a95a7133 5470 """GetModifiers(self) -> int"""
e811c8ce
RD
5471 return _stc.StyledTextEvent_GetModifiers(*args, **kwargs)
5472
5473 def GetModificationType(*args, **kwargs):
a95a7133 5474 """GetModificationType(self) -> int"""
e811c8ce
RD
5475 return _stc.StyledTextEvent_GetModificationType(*args, **kwargs)
5476
5477 def GetText(*args, **kwargs):
a95a7133 5478 """GetText(self) -> String"""
e811c8ce
RD
5479 return _stc.StyledTextEvent_GetText(*args, **kwargs)
5480
5481 def GetLength(*args, **kwargs):
a95a7133 5482 """GetLength(self) -> int"""
e811c8ce
RD
5483 return _stc.StyledTextEvent_GetLength(*args, **kwargs)
5484
5485 def GetLinesAdded(*args, **kwargs):
a95a7133 5486 """GetLinesAdded(self) -> int"""
e811c8ce
RD
5487 return _stc.StyledTextEvent_GetLinesAdded(*args, **kwargs)
5488
5489 def GetLine(*args, **kwargs):
a95a7133 5490 """GetLine(self) -> int"""
e811c8ce
RD
5491 return _stc.StyledTextEvent_GetLine(*args, **kwargs)
5492
5493 def GetFoldLevelNow(*args, **kwargs):
a95a7133 5494 """GetFoldLevelNow(self) -> int"""
e811c8ce
RD
5495 return _stc.StyledTextEvent_GetFoldLevelNow(*args, **kwargs)
5496
5497 def GetFoldLevelPrev(*args, **kwargs):
a95a7133 5498 """GetFoldLevelPrev(self) -> int"""
e811c8ce
RD
5499 return _stc.StyledTextEvent_GetFoldLevelPrev(*args, **kwargs)
5500
5501 def GetMargin(*args, **kwargs):
a95a7133 5502 """GetMargin(self) -> int"""
e811c8ce
RD
5503 return _stc.StyledTextEvent_GetMargin(*args, **kwargs)
5504
5505 def GetMessage(*args, **kwargs):
a95a7133 5506 """GetMessage(self) -> int"""
e811c8ce
RD
5507 return _stc.StyledTextEvent_GetMessage(*args, **kwargs)
5508
5509 def GetWParam(*args, **kwargs):
a95a7133 5510 """GetWParam(self) -> int"""
e811c8ce
RD
5511 return _stc.StyledTextEvent_GetWParam(*args, **kwargs)
5512
5513 def GetLParam(*args, **kwargs):
a95a7133 5514 """GetLParam(self) -> int"""
e811c8ce
RD
5515 return _stc.StyledTextEvent_GetLParam(*args, **kwargs)
5516
5517 def GetListType(*args, **kwargs):
a95a7133 5518 """GetListType(self) -> int"""
e811c8ce
RD
5519 return _stc.StyledTextEvent_GetListType(*args, **kwargs)
5520
5521 def GetX(*args, **kwargs):
a95a7133 5522 """GetX(self) -> int"""
e811c8ce
RD
5523 return _stc.StyledTextEvent_GetX(*args, **kwargs)
5524
5525 def GetY(*args, **kwargs):
a95a7133 5526 """GetY(self) -> int"""
e811c8ce
RD
5527 return _stc.StyledTextEvent_GetY(*args, **kwargs)
5528
5529 def GetDragText(*args, **kwargs):
a95a7133 5530 """GetDragText(self) -> String"""
e811c8ce
RD
5531 return _stc.StyledTextEvent_GetDragText(*args, **kwargs)
5532
5533 def GetDragAllowMove(*args, **kwargs):
a95a7133 5534 """GetDragAllowMove(self) -> bool"""
e811c8ce
RD
5535 return _stc.StyledTextEvent_GetDragAllowMove(*args, **kwargs)
5536
5537 def GetDragResult(*args, **kwargs):
a95a7133 5538 """GetDragResult(self) -> int"""
e811c8ce
RD
5539 return _stc.StyledTextEvent_GetDragResult(*args, **kwargs)
5540
5541 def GetShift(*args, **kwargs):
a95a7133 5542 """GetShift(self) -> bool"""
e811c8ce
RD
5543 return _stc.StyledTextEvent_GetShift(*args, **kwargs)
5544
5545 def GetControl(*args, **kwargs):
a95a7133 5546 """GetControl(self) -> bool"""
e811c8ce
RD
5547 return _stc.StyledTextEvent_GetControl(*args, **kwargs)
5548
5549 def GetAlt(*args, **kwargs):
a95a7133 5550 """GetAlt(self) -> bool"""
e811c8ce
RD
5551 return _stc.StyledTextEvent_GetAlt(*args, **kwargs)
5552
e70b4d2d
RD
5553 Alt = property(GetAlt,doc="See `GetAlt`")
5554 Control = property(GetControl,doc="See `GetControl`")
5555 DragAllowMove = property(GetDragAllowMove,SetDragAllowMove,doc="See `GetDragAllowMove` and `SetDragAllowMove`")
5556 DragResult = property(GetDragResult,SetDragResult,doc="See `GetDragResult` and `SetDragResult`")
5557 DragText = property(GetDragText,SetDragText,doc="See `GetDragText` and `SetDragText`")
5558 FoldLevelNow = property(GetFoldLevelNow,SetFoldLevelNow,doc="See `GetFoldLevelNow` and `SetFoldLevelNow`")
5559 FoldLevelPrev = property(GetFoldLevelPrev,SetFoldLevelPrev,doc="See `GetFoldLevelPrev` and `SetFoldLevelPrev`")
5560 Key = property(GetKey,SetKey,doc="See `GetKey` and `SetKey`")
5561 LParam = property(GetLParam,SetLParam,doc="See `GetLParam` and `SetLParam`")
5562 Length = property(GetLength,SetLength,doc="See `GetLength` and `SetLength`")
5563 Line = property(GetLine,SetLine,doc="See `GetLine` and `SetLine`")
5564 LinesAdded = property(GetLinesAdded,SetLinesAdded,doc="See `GetLinesAdded` and `SetLinesAdded`")
5565 ListType = property(GetListType,SetListType,doc="See `GetListType` and `SetListType`")
5566 Margin = property(GetMargin,SetMargin,doc="See `GetMargin` and `SetMargin`")
5567 Message = property(GetMessage,SetMessage,doc="See `GetMessage` and `SetMessage`")
5568 ModificationType = property(GetModificationType,SetModificationType,doc="See `GetModificationType` and `SetModificationType`")
5569 Modifiers = property(GetModifiers,SetModifiers,doc="See `GetModifiers` and `SetModifiers`")
5570 Position = property(GetPosition,SetPosition,doc="See `GetPosition` and `SetPosition`")
5571 Shift = property(GetShift,doc="See `GetShift`")
5572 Text = property(GetText,SetText,doc="See `GetText` and `SetText`")
5573 WParam = property(GetWParam,SetWParam,doc="See `GetWParam` and `SetWParam`")
5574 X = property(GetX,SetX,doc="See `GetX` and `SetX`")
5575 Y = property(GetY,SetY,doc="See `GetY` and `SetY`")
2131d850 5576_stc.StyledTextEvent_swigregister(StyledTextEvent)
d14a1e28
RD
5577
5578wxEVT_STC_CHANGE = _stc.wxEVT_STC_CHANGE
5579wxEVT_STC_STYLENEEDED = _stc.wxEVT_STC_STYLENEEDED
5580wxEVT_STC_CHARADDED = _stc.wxEVT_STC_CHARADDED
5581wxEVT_STC_SAVEPOINTREACHED = _stc.wxEVT_STC_SAVEPOINTREACHED
5582wxEVT_STC_SAVEPOINTLEFT = _stc.wxEVT_STC_SAVEPOINTLEFT
5583wxEVT_STC_ROMODIFYATTEMPT = _stc.wxEVT_STC_ROMODIFYATTEMPT
5584wxEVT_STC_KEY = _stc.wxEVT_STC_KEY
5585wxEVT_STC_DOUBLECLICK = _stc.wxEVT_STC_DOUBLECLICK
5586wxEVT_STC_UPDATEUI = _stc.wxEVT_STC_UPDATEUI
5587wxEVT_STC_MODIFIED = _stc.wxEVT_STC_MODIFIED
5588wxEVT_STC_MACRORECORD = _stc.wxEVT_STC_MACRORECORD
5589wxEVT_STC_MARGINCLICK = _stc.wxEVT_STC_MARGINCLICK
5590wxEVT_STC_NEEDSHOWN = _stc.wxEVT_STC_NEEDSHOWN
d14a1e28
RD
5591wxEVT_STC_PAINTED = _stc.wxEVT_STC_PAINTED
5592wxEVT_STC_USERLISTSELECTION = _stc.wxEVT_STC_USERLISTSELECTION
5593wxEVT_STC_URIDROPPED = _stc.wxEVT_STC_URIDROPPED
5594wxEVT_STC_DWELLSTART = _stc.wxEVT_STC_DWELLSTART
5595wxEVT_STC_DWELLEND = _stc.wxEVT_STC_DWELLEND
5596wxEVT_STC_START_DRAG = _stc.wxEVT_STC_START_DRAG
5597wxEVT_STC_DRAG_OVER = _stc.wxEVT_STC_DRAG_OVER
5598wxEVT_STC_DO_DROP = _stc.wxEVT_STC_DO_DROP
5599wxEVT_STC_ZOOM = _stc.wxEVT_STC_ZOOM
5600wxEVT_STC_HOTSPOT_CLICK = _stc.wxEVT_STC_HOTSPOT_CLICK
5601wxEVT_STC_HOTSPOT_DCLICK = _stc.wxEVT_STC_HOTSPOT_DCLICK
5602wxEVT_STC_CALLTIP_CLICK = _stc.wxEVT_STC_CALLTIP_CLICK
1bd55598 5603wxEVT_STC_AUTOCOMP_SELECTION = _stc.wxEVT_STC_AUTOCOMP_SELECTION
d14a1e28
RD
5604EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE, 1 )
5605EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED, 1 )
5606EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED, 1 )
5607EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED, 1 )
5608EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT, 1 )
5609EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT, 1 )
5610EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY, 1 )
5611EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK, 1 )
5612EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI, 1 )
5613EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED, 1 )
5614EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD, 1 )
5615EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK, 1 )
5616EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN, 1 )
d14a1e28
RD
5617EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED, 1 )
5618EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION, 1 )
5619EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED, 1 )
5620EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART, 1 )
5621EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND, 1 )
5622EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG, 1 )
5623EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER, 1 )
5624EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP, 1 )
5625EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM, 1 )
5626EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK, 1 )
5627EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK, 1 )
5628EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK, 1 )
1bd55598 5629EVT_STC_AUTOCOMP_SELECTION = wx.PyEventBinder( wxEVT_STC_AUTOCOMP_SELECTION, 1 )
f6bcfd97 5630
f6bcfd97 5631
32fe5131 5632