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