]>
Commit | Line | Data |
---|---|---|
bfabd11a RD |
1 | ## First line may be used for shbang |
2 | ||
3 | ## This file defines the interface to Scintilla | |
4 | ||
1a2fb4cd RD |
5 | ## Copyright 2000-2002 by Neil Hodgson <neilh@scintilla.org> |
6 | ## The License.txt file describes the conditions under which this software may be distributed. | |
7 | ||
bfabd11a | 8 | ## A line starting with ## is a pure comment and should be stripped by readers. |
d134f170 | 9 | ## A line starting with #! is for future shbang use |
d25f5fbb | 10 | ## A line starting with # followed by a space is a documentation comment and refers |
bfabd11a RD |
11 | ## to the next feature definition. |
12 | ||
d134f170 | 13 | ## Each feature is defined by a line starting with fun, get, set, val or evt. |
bfabd11a RD |
14 | ## cat -> start a category |
15 | ## fun -> a function | |
16 | ## get -> a property get function | |
d134f170 | 17 | ## set -> a property set function |
bfabd11a | 18 | ## val -> definition of a constant |
d134f170 | 19 | ## evt -> an event |
a834585d RD |
20 | ## enu -> associate an enumeration with a set of vals with a prefix |
21 | ## lex -> associate a lexer with the lexical classes it produces | |
22 | ## | |
bfabd11a RD |
23 | ## All other feature names should be ignored. They may be defined in the future. |
24 | ## A property may have a set function, a get function or both. Each will have | |
25 | ## "Get" or "Set" in their names and the corresponding name will have the obvious switch. | |
26 | ## A property may be subscripted, in which case the first parameter is the subscript. | |
27 | ## fun, get, and set features have a strict syntax: | |
28 | ## <featureType><ws><returnType><ws><name>[=<number](<param>,<param>) | |
29 | ## param is <paramType><ws><paramName>[=<value>] | |
30 | ## Additional white space is allowed between elements. | |
d134f170 | 31 | ## The syntax for evt is <featureType><ws><returnType><ws><name>[=<number]([<param>[,<param>]*]) |
bfabd11a RD |
32 | ## Feature names that contain an underscore are defined by Windows, so in these |
33 | ## cases, using the Windows definition is preferred where available. | |
1a2fb4cd RD |
34 | ## The feature numbers are stable so features will not be renumbered. |
35 | ## Features may be removed but they will go through a period of deprecation | |
36 | ## before removal which is signalled by moving them into the Deprecated category. | |
a834585d RD |
37 | ## |
38 | ## enu has the syntax enu<ws><enumeration>=<prefix>[<ws><prefix>]* where all the val | |
39 | ## features in this file starting with a given <prefix> are considered part of the | |
40 | ## enumeration. | |
41 | ## | |
42 | ## lex has the syntax lex<ws><name>=<lexerVal><ws><prefix>[<ws><prefix>]* | |
43 | ## where name is a reasonably capitalised (Python, XML) identifier or UI name, | |
44 | ## lexerVal is the val used to specify the lexer, and the list of prefixes is similar | |
45 | ## to enu. The name may not be the same as that used within the lexer so the lexerVal | |
46 | ## should be used to tie these entities together. | |
bfabd11a RD |
47 | |
48 | ## Types: | |
49 | ## void | |
50 | ## int | |
51 | ## bool -> integer, 1=true, 0=false | |
52 | ## position -> integer position in a document | |
53 | ## colour -> colour integer containing red, green and blue bytes. | |
54 | ## string -> pointer to const character | |
55 | ## stringresult -> pointer to character | |
56 | ## cells -> pointer to array of cells, each cell containing a style byte and character byte | |
1a2fb4cd | 57 | ## textrange -> range of a min and a max position with an output string |
bfabd11a RD |
58 | ## findtext -> searchrange, text -> foundposition |
59 | ## keymod -> integer containing key in low half and modifiers in high half | |
bfabd11a | 60 | ## formatrange |
1a2fb4cd RD |
61 | ## Types no longer used: |
62 | ## findtextex -> searchrange | |
63 | ## charrange -> range of a min and a max position | |
64 | ## charrangeresult -> like charrange, but output param | |
65 | ## countedstring | |
bfabd11a | 66 | ## point -> x,y |
d134f170 RD |
67 | ## pointresult -> like point, but output param |
68 | ## rectangle -> left,top,right,bottom | |
d25f5fbb | 69 | ## Client code should ignore definitions containing types it does not understand, except |
bfabd11a RD |
70 | ## for possibly #defining the constants |
71 | ||
1a2fb4cd RD |
72 | ## String arguments may contain NUL ('\0') characters where the calls provide a length |
73 | ## argument and retrieve NUL characters. All retrieved strings except for those retrieved | |
74 | ## by GetLine also have a NUL appended but client code should calculate the size that | |
75 | ## will be returned rather than relying upon the NUL whenever possible. Allow for the | |
76 | ## extra NUL character when allocating buffers. | |
77 | ||
d25f5fbb | 78 | cat Basics |
bfabd11a RD |
79 | |
80 | ################################################ | |
d134f170 | 81 | ## For Scintilla.h |
bfabd11a | 82 | val INVALID_POSITION=-1 |
d134f170 RD |
83 | # Define start of Scintilla messages to be greater than all edit (EM_*) messages |
84 | # as many EM_ messages can be used although that use is deprecated. | |
bfabd11a RD |
85 | val SCI_START=2000 |
86 | val SCI_OPTIONAL_START=3000 | |
87 | val SCI_LEXER_START=4000 | |
88 | ||
a834585d | 89 | # Add text to the document. |
bfabd11a RD |
90 | fun void AddText=2001(int length, string text) |
91 | ||
a834585d | 92 | # Add array of cells to document. |
bfabd11a RD |
93 | fun void AddStyledText=2002(int length, cells c) |
94 | ||
a834585d | 95 | # Insert string at a position. |
bfabd11a RD |
96 | fun void InsertText=2003(position pos, string text) |
97 | ||
a834585d | 98 | # Delete all text in the document. |
bfabd11a RD |
99 | fun void ClearAll=2004(,) |
100 | ||
a834585d | 101 | # Set all style bytes to 0, remove all folding information. |
d134f170 RD |
102 | fun void ClearDocumentStyle=2005(,) |
103 | ||
a834585d | 104 | # The number of characters in the document. |
bfabd11a RD |
105 | get int GetLength=2006(,) |
106 | ||
a834585d | 107 | # Returns the character byte at the position. |
bfabd11a RD |
108 | get int GetCharAt=2007(position pos,) |
109 | ||
a834585d | 110 | # Returns the position of the caret. |
bfabd11a RD |
111 | get position GetCurrentPos=2008(,) |
112 | ||
a834585d | 113 | # Returns the position of the opposite end of the selection to the caret. |
bfabd11a RD |
114 | get position GetAnchor=2009(,) |
115 | ||
a834585d | 116 | # Returns the style byte at the position. |
bfabd11a RD |
117 | get int GetStyleAt=2010(position pos,) |
118 | ||
a834585d | 119 | # Redoes the next action on the undo history. |
bfabd11a RD |
120 | fun void Redo=2011(,) |
121 | ||
d25f5fbb | 122 | # Choose between collecting actions into the undo |
bfabd11a | 123 | # history and discarding them. |
d134f170 | 124 | set void SetUndoCollection=2012(bool collectUndo,) |
bfabd11a RD |
125 | |
126 | # Select all the text in the document. | |
127 | fun void SelectAll=2013(,) | |
128 | ||
d25f5fbb | 129 | # Remember the current position in the undo history as the position |
bfabd11a RD |
130 | # at which the document was saved. |
131 | fun void SetSavePoint=2014(,) | |
132 | ||
133 | # Retrieve a buffer of cells. | |
134 | # Returns the number of bytes in the buffer not including terminating nulls. | |
135 | fun int GetStyledText=2015(, textrange tr) | |
136 | ||
a834585d | 137 | # Are there any redoable actions in the undo history? |
bfabd11a RD |
138 | fun bool CanRedo=2016(,) |
139 | ||
a834585d | 140 | # Retrieve the line number at which a particular marker is located. |
bfabd11a RD |
141 | fun int MarkerLineFromHandle=2017(int handle,) |
142 | ||
143 | # Delete a marker. | |
144 | fun void MarkerDeleteHandle=2018(int handle,) | |
145 | ||
d134f170 RD |
146 | # Is undo history being collected? |
147 | get bool GetUndoCollection=2019(,) | |
148 | ||
a834585d | 149 | enu WhiteSpace=SCWS_ |
d134f170 RD |
150 | val SCWS_INVISIBLE=0 |
151 | val SCWS_VISIBLEALWAYS=1 | |
152 | val SCWS_VISIBLEAFTERINDENT=2 | |
153 | ||
bfabd11a | 154 | # Are white space characters currently visible? |
d134f170 RD |
155 | # Returns one of SCWS_* constants. |
156 | get int GetViewWS=2020(,) | |
bfabd11a | 157 | |
d134f170 RD |
158 | # Make white space characters invisible, always visible or visible outside indentation. |
159 | set void SetViewWS=2021(int viewWS,) | |
160 | ||
161 | # Find the position from a point within the window. | |
162 | fun int PositionFromPoint=2022(int x, int y) | |
bfabd11a | 163 | |
65ec6247 RD |
164 | # Find the position from a point within the window but return |
165 | # INVALID_POSITION if not close to text. | |
166 | fun int PositionFromPointClose=2023(int x, int y) | |
167 | ||
bfabd11a RD |
168 | # Set caret to start of a line and ensure it is visible. |
169 | fun void GotoLine=2024(int line,) | |
170 | ||
171 | # Set caret to a position and ensure it is visible. | |
172 | fun void GotoPos=2025(position pos,) | |
173 | ||
174 | # Set the selection anchor to a position. The anchor is the opposite | |
175 | # end of the selection from the caret. | |
176 | set void SetAnchor=2026(position posAnchor,) | |
177 | ||
178 | # Retrieve the text of the line containing the caret. | |
179 | # Returns the index of the caret on the line. | |
180 | fun int GetCurLine=2027(int length, stringresult text) | |
181 | ||
182 | # Retrieve the position of the last correctly styled character. | |
183 | get position GetEndStyled=2028(,) | |
184 | ||
a834585d | 185 | enu EndOfLine=SC_EOL_ |
bfabd11a RD |
186 | val SC_EOL_CRLF=0 |
187 | val SC_EOL_CR=1 | |
188 | val SC_EOL_LF=2 | |
189 | ||
65ec6247 RD |
190 | # Convert all line endings in the document to one mode. |
191 | fun void ConvertEOLs=2029(int eolMode,) | |
192 | ||
bfabd11a RD |
193 | # Retrieve the current end of line mode - one of CRLF, CR, or LF. |
194 | get int GetEOLMode=2030(,) | |
195 | ||
196 | # Set the current end of line mode. | |
197 | set void SetEOLMode=2031(int eolMode,) | |
198 | ||
199 | # Set the current styling position to pos and the styling mask to mask. | |
a834585d | 200 | # The styling mask can be used to protect some bits in each styling byte from modification. |
bfabd11a RD |
201 | fun void StartStyling=2032(position pos, int mask) |
202 | ||
203 | # Change style from current styling position for length characters to a style | |
204 | # and move the current styling position to after this newly styled segment. | |
205 | fun void SetStyling=2033(int length, int style) | |
206 | ||
a834585d | 207 | # Is drawing done first into a buffer or direct to the screen? |
d134f170 RD |
208 | get bool GetBufferedDraw=2034(,) |
209 | ||
bfabd11a RD |
210 | # If drawing is buffered then each line of text is drawn into a bitmap buffer |
211 | # before drawing it to the screen to avoid flicker. | |
212 | set void SetBufferedDraw=2035(bool buffered,) | |
213 | ||
a834585d | 214 | # Change the visible size of a tab to be a multiple of the width of a space character. |
bfabd11a RD |
215 | set void SetTabWidth=2036(int tabWidth,) |
216 | ||
d25f5fbb | 217 | # Retrieve the visible size of a tab. |
bfabd11a RD |
218 | get int GetTabWidth=2121(,) |
219 | ||
d134f170 RD |
220 | # The SC_CP_UTF8 value can be used to enter Unicode mode. |
221 | # This is the same value as CP_UTF8 in Windows | |
bfabd11a RD |
222 | val SC_CP_UTF8=65001 |
223 | ||
224 | # Set the code page used to interpret the bytes of the document as characters. | |
225 | # The SC_CP_UTF8 value can be used to enter Unicode mode. | |
226 | set void SetCodePage=2037(int codePage,) | |
227 | ||
a834585d | 228 | # In palette mode, Scintilla uses the environment's palette calls to display |
bfabd11a RD |
229 | # more colours. This may lead to ugly displays. |
230 | set void SetUsePalette=2039(bool usePalette,) | |
231 | ||
a834585d | 232 | enu MarkerSymbol=SC_MARK_ |
bfabd11a RD |
233 | val MARKER_MAX=31 |
234 | val SC_MARK_CIRCLE=0 | |
235 | val SC_MARK_ROUNDRECT=1 | |
236 | val SC_MARK_ARROW=2 | |
237 | val SC_MARK_SMALLRECT=3 | |
238 | val SC_MARK_SHORTARROW=4 | |
239 | val SC_MARK_EMPTY=5 | |
240 | val SC_MARK_ARROWDOWN=6 | |
241 | val SC_MARK_MINUS=7 | |
242 | val SC_MARK_PLUS=8 | |
243 | ||
a834585d | 244 | # Shapes used for outlining column. |
65ec6247 RD |
245 | val SC_MARK_VLINE=9 |
246 | val SC_MARK_LCORNER=10 | |
247 | val SC_MARK_TCORNER=11 | |
248 | val SC_MARK_BOXPLUS=12 | |
249 | val SC_MARK_BOXPLUSCONNECTED=13 | |
250 | val SC_MARK_BOXMINUS=14 | |
251 | val SC_MARK_BOXMINUSCONNECTED=15 | |
252 | val SC_MARK_LCORNERCURVE=16 | |
253 | val SC_MARK_TCORNERCURVE=17 | |
254 | val SC_MARK_CIRCLEPLUS=18 | |
255 | val SC_MARK_CIRCLEPLUSCONNECTED=19 | |
256 | val SC_MARK_CIRCLEMINUS=20 | |
257 | val SC_MARK_CIRCLEMINUSCONNECTED=21 | |
258 | ||
a834585d | 259 | # Invisible mark that only sets the line background color. |
1a2fb4cd RD |
260 | val SC_MARK_BACKGROUND=22 |
261 | ||
b8b0e402 RD |
262 | val SC_MARK_CHARACTER=10000 |
263 | ||
a834585d RD |
264 | enu MarkerOutline=SC_MARKNUM_ |
265 | # Markers used for outlining column. | |
65ec6247 RD |
266 | val SC_MARKNUM_FOLDEREND=25 |
267 | val SC_MARKNUM_FOLDEROPENMID=26 | |
268 | val SC_MARKNUM_FOLDERMIDTAIL=27 | |
269 | val SC_MARKNUM_FOLDERTAIL=28 | |
270 | val SC_MARKNUM_FOLDERSUB=29 | |
bfabd11a RD |
271 | val SC_MARKNUM_FOLDER=30 |
272 | val SC_MARKNUM_FOLDEROPEN=31 | |
bfabd11a | 273 | |
1a2fb4cd RD |
274 | val SC_MASK_FOLDERS=0xFE000000 |
275 | ||
bfabd11a RD |
276 | # Set the symbol used for a particular marker number. |
277 | fun void MarkerDefine=2040(int markerNumber, int markerSymbol) | |
278 | ||
279 | # Set the foreground colour used for a particular marker number. | |
280 | fun void MarkerSetFore=2041(int markerNumber, colour fore) | |
281 | ||
282 | # Set the background colour used for a particular marker number. | |
283 | fun void MarkerSetBack=2042(int markerNumber, colour back) | |
284 | ||
1a2fb4cd RD |
285 | # Add a marker to a line, returning an ID which can be used to find or delete the marker. |
286 | fun int MarkerAdd=2043(int line, int markerNumber) | |
bfabd11a | 287 | |
a834585d | 288 | # Delete a marker from a line. |
bfabd11a RD |
289 | fun void MarkerDelete=2044(int line, int markerNumber) |
290 | ||
a834585d | 291 | # Delete all markers with a particular number from all lines. |
bfabd11a RD |
292 | fun void MarkerDeleteAll=2045(int markerNumber,) |
293 | ||
294 | # Get a bit mask of all the markers set on a line. | |
295 | fun int MarkerGet=2046(int line,) | |
296 | ||
297 | # Find the next line after lineStart that includes a marker in mask. | |
298 | fun int MarkerNext=2047(int lineStart, int markerMask) | |
299 | ||
300 | # Find the previous line before lineStart that includes a marker in mask. | |
301 | fun int MarkerPrevious=2048(int lineStart, int markerMask) | |
302 | ||
a834585d | 303 | enu MarginType=SC_MARGIN_ |
bfabd11a RD |
304 | val SC_MARGIN_SYMBOL=0 |
305 | val SC_MARGIN_NUMBER=1 | |
306 | ||
307 | # Set a margin to be either numeric or symbolic. | |
308 | set void SetMarginTypeN=2240(int margin, int marginType) | |
309 | ||
310 | # Retrieve the type of a margin. | |
311 | get int GetMarginTypeN=2241(int margin,) | |
312 | ||
313 | # Set the width of a margin to a width expressed in pixels. | |
314 | set void SetMarginWidthN=2242(int margin, int pixelWidth) | |
315 | ||
316 | # Retrieve the width of a margin in pixels. | |
317 | get int GetMarginWidthN=2243(int margin,) | |
318 | ||
319 | # Set a mask that determines which markers are displayed in a margin. | |
320 | set void SetMarginMaskN=2244(int margin, int mask) | |
321 | ||
322 | # Retrieve the marker mask of a margin. | |
323 | get int GetMarginMaskN=2245(int margin,) | |
324 | ||
325 | # Make a margin sensitive or insensitive to mouse clicks. | |
326 | set void SetMarginSensitiveN=2246(int margin, bool sensitive) | |
327 | ||
328 | # Retrieve the mouse click sensitivity of a margin. | |
329 | get bool GetMarginSensitiveN=2247(int margin,) | |
330 | ||
b8b0e402 RD |
331 | # Styles in range 32..37 are predefined for parts of the UI and are not used as normal styles. |
332 | # Styles 38 and 39 are for future use. | |
a834585d | 333 | enu StylesCommon=STYLE_ |
bfabd11a RD |
334 | val STYLE_DEFAULT=32 |
335 | val STYLE_LINENUMBER=33 | |
336 | val STYLE_BRACELIGHT=34 | |
337 | val STYLE_BRACEBAD=35 | |
338 | val STYLE_CONTROLCHAR=36 | |
d134f170 | 339 | val STYLE_INDENTGUIDE=37 |
b8b0e402 | 340 | val STYLE_LASTPREDEFINED=39 |
bfabd11a RD |
341 | val STYLE_MAX=127 |
342 | ||
d134f170 RD |
343 | # Character set identifiers are used in StyleSetCharacterSet. |
344 | # The values are the same as the Windows *_CHARSET values. | |
a834585d | 345 | enu CharacterSet=SC_CHARSET_ |
d134f170 RD |
346 | val SC_CHARSET_ANSI=0 |
347 | val SC_CHARSET_DEFAULT=1 | |
348 | val SC_CHARSET_BALTIC=186 | |
349 | val SC_CHARSET_CHINESEBIG5=136 | |
350 | val SC_CHARSET_EASTEUROPE=238 | |
351 | val SC_CHARSET_GB2312=134 | |
352 | val SC_CHARSET_GREEK=161 | |
353 | val SC_CHARSET_HANGUL=129 | |
354 | val SC_CHARSET_MAC=77 | |
355 | val SC_CHARSET_OEM=255 | |
356 | val SC_CHARSET_RUSSIAN=204 | |
357 | val SC_CHARSET_SHIFTJIS=128 | |
358 | val SC_CHARSET_SYMBOL=2 | |
359 | val SC_CHARSET_TURKISH=162 | |
360 | val SC_CHARSET_JOHAB=130 | |
361 | val SC_CHARSET_HEBREW=177 | |
362 | val SC_CHARSET_ARABIC=178 | |
363 | val SC_CHARSET_VIETNAMESE=163 | |
364 | val SC_CHARSET_THAI=222 | |
365 | ||
bfabd11a RD |
366 | # Clear all the styles and make equivalent to the global default style. |
367 | set void StyleClearAll=2050(,) | |
368 | ||
369 | # Set the foreground colour of a style. | |
370 | set void StyleSetFore=2051(int style, colour fore) | |
371 | ||
372 | # Set the background colour of a style. | |
373 | set void StyleSetBack=2052(int style, colour back) | |
374 | ||
375 | # Set a style to be bold or not. | |
376 | set void StyleSetBold=2053(int style, bool bold) | |
377 | ||
378 | # Set a style to be italic or not. | |
379 | set void StyleSetItalic=2054(int style, bool italic) | |
380 | ||
381 | # Set the size of characters of a style. | |
382 | set void StyleSetSize=2055(int style, int sizePoints) | |
383 | ||
384 | # Set the font of a style. | |
385 | set void StyleSetFont=2056(int style, string fontName) | |
386 | ||
387 | # Set a style to have its end of line filled or not. | |
388 | set void StyleSetEOLFilled=2057(int style, bool filled) | |
389 | ||
390 | # Reset the default style to its state at startup | |
391 | fun void StyleResetDefault=2058(,) | |
392 | ||
393 | # Set a style to be underlined or not. | |
394 | set void StyleSetUnderline=2059(int style, bool underline) | |
395 | ||
a834585d | 396 | enu CaseVisible=SC_CASE_ |
65ec6247 RD |
397 | val SC_CASE_MIXED=0 |
398 | val SC_CASE_UPPER=1 | |
399 | val SC_CASE_LOWER=2 | |
400 | # Set a style to be mixed case, or to force upper or lower case. | |
401 | set void StyleSetCase=2060(int style, int caseForce) | |
402 | ||
bfabd11a RD |
403 | # Set the character set of the font in a style. |
404 | set void StyleSetCharacterSet=2066(int style, int characterSet) | |
405 | ||
406 | # Set the foreground colour of the selection and whether to use this setting. | |
407 | fun void SetSelFore=2067(bool useSetting, colour fore) | |
408 | ||
409 | # Set the background colour of the selection and whether to use this setting. | |
410 | fun void SetSelBack=2068(bool useSetting, colour back) | |
411 | ||
412 | # Set the foreground colour of the caret. | |
d134f170 | 413 | set void SetCaretFore=2069(colour fore,) |
bfabd11a RD |
414 | |
415 | # When key+modifier combination km is pressed perform msg. | |
416 | fun void AssignCmdKey=2070(keymod km, int msg) | |
417 | ||
418 | # When key+modifier combination km do nothing. | |
419 | fun void ClearCmdKey=2071(keymod km,) | |
420 | ||
421 | # Drop all key mappings. | |
422 | fun void ClearAllCmdKeys=2072(,) | |
423 | ||
424 | # Set the styles for a segment of the document. | |
425 | fun void SetStylingEx=2073(int length, string styles) | |
426 | ||
d134f170 RD |
427 | # Set a style to be visible or not. |
428 | set void StyleSetVisible=2074(int style, bool visible) | |
429 | ||
d25f5fbb | 430 | # Get the time in milliseconds that the caret is on and off. |
bfabd11a RD |
431 | get int GetCaretPeriod=2075(,) |
432 | ||
433 | # Get the time in milliseconds that the caret is on and off. 0 = steady on. | |
434 | set void SetCaretPeriod=2076(int periodMilliseconds,) | |
435 | ||
a834585d | 436 | # Set the set of characters making up words for when moving or selecting by word. |
bfabd11a RD |
437 | set void SetWordChars=2077(, string characters) |
438 | ||
439 | # Start a sequence of actions that is undone and redone as a unit. | |
440 | # May be nested. | |
441 | fun void BeginUndoAction=2078(,) | |
442 | ||
443 | # End a sequence of actions that is undone and redone as a unit. | |
444 | fun void EndUndoAction=2079(,) | |
445 | ||
a834585d | 446 | enu IndicatorStyle=INDIC_ |
bfabd11a RD |
447 | val INDIC_MAX=7 |
448 | val INDIC_PLAIN=0 | |
449 | val INDIC_SQUIGGLE=1 | |
450 | val INDIC_TT=2 | |
451 | val INDIC_DIAGONAL=3 | |
452 | val INDIC_STRIKE=4 | |
1a2fb4cd RD |
453 | val INDIC0_MASK=0x20 |
454 | val INDIC1_MASK=0x40 | |
455 | val INDIC2_MASK=0x80 | |
456 | val INDICS_MASK=0xE0 | |
bfabd11a RD |
457 | |
458 | # Set an indicator to plain, squiggle or TT. | |
459 | set void IndicSetStyle=2080(int indic, int style) | |
460 | ||
461 | # Retrieve the style of an indicator. | |
462 | get int IndicGetStyle=2081(int indic,) | |
463 | ||
464 | # Set the foreground colour of an indicator. | |
465 | set void IndicSetFore=2082(int indic, colour fore) | |
466 | ||
467 | # Retrieve the foreground colour of an indicator. | |
468 | get colour IndicGetFore=2083(int indic,) | |
469 | ||
a834585d RD |
470 | # Divide each styling byte into lexical class bits (default: 5) and indicator |
471 | # bits (default: 3). If a lexer requires more than 32 lexical states, then this | |
bfabd11a RD |
472 | # is used to expand the possible states. |
473 | set void SetStyleBits=2090(int bits,) | |
474 | ||
475 | # Retrieve number of bits in style bytes used to hold the lexical state. | |
476 | get int GetStyleBits=2091(,) | |
477 | ||
478 | # Used to hold extra styling information for each line. | |
479 | set void SetLineState=2092(int line, int state) | |
480 | ||
481 | # Retrieve the extra styling information for a line. | |
482 | get int GetLineState=2093(int line,) | |
483 | ||
d25f5fbb | 484 | # Retrieve the last line number that has line state. |
bfabd11a RD |
485 | get int GetMaxLineState=2094(,) |
486 | ||
65ec6247 RD |
487 | # Is the background of the line containing the caret in a different colour? |
488 | get bool GetCaretLineVisible=2095(,) | |
489 | ||
a834585d | 490 | # Display the background of the line containing the caret in a different colour. |
65ec6247 RD |
491 | set void SetCaretLineVisible=2096(bool show,) |
492 | ||
493 | # Get the colour of the background of the line containing the caret. | |
494 | get colour GetCaretLineBack=2097(,) | |
495 | ||
496 | # Set the colour of the background of the line containing the caret. | |
497 | set void SetCaretLineBack=2098(colour back,) | |
498 | ||
1a2fb4cd RD |
499 | # Set a style to be changeable or not (read only). |
500 | # Experimental feature, currently buggy. | |
501 | set void StyleSetChangeable=2099(int style, bool changeable) | |
502 | ||
bfabd11a RD |
503 | # Display a auto-completion list. |
504 | # The lenEntered parameter indicates how many characters before | |
505 | # the caret should be used to provide context. | |
506 | fun void AutoCShow=2100(int lenEntered, string itemList) | |
507 | ||
508 | # Remove the auto-completion list from the screen. | |
509 | fun void AutoCCancel=2101(,) | |
510 | ||
511 | # Is there an auto-completion list visible? | |
512 | fun bool AutoCActive=2102(,) | |
513 | ||
a834585d | 514 | # Retrieve the position of the caret when the auto-completion list was displayed. |
bfabd11a RD |
515 | fun position AutoCPosStart=2103(,) |
516 | ||
517 | # User has selected an item so remove the list and insert the selection. | |
518 | fun void AutoCComplete=2104(,) | |
519 | ||
520 | # Define a set of character that when typed cancel the auto-completion list. | |
521 | fun void AutoCStops=2105(, string characterSet) | |
522 | ||
a834585d RD |
523 | # Change the separator character in the string setting up an auto-completion list. |
524 | # Default is space but can be changed if items contain space. | |
bfabd11a RD |
525 | set void AutoCSetSeparator=2106(int separatorCharacter,) |
526 | ||
527 | # Retrieve the auto-completion list separator character. | |
528 | get int AutoCGetSeparator=2107(,) | |
529 | ||
530 | # Select the item in the auto-completion list that starts with a string. | |
531 | fun void AutoCSelect=2108(, string text) | |
532 | ||
d25f5fbb RD |
533 | # Should the auto-completion list be cancelled if the user backspaces to a |
534 | # position before where the box was created. | |
d134f170 RD |
535 | set void AutoCSetCancelAtStart=2110(bool cancel,) |
536 | ||
537 | # Retrieve whether auto-completion cancelled by backspacing before start. | |
538 | get bool AutoCGetCancelAtStart=2111(,) | |
539 | ||
1a2fb4cd RD |
540 | # Define a set of characters that when typed will cause the autocompletion to |
541 | # choose the selected item. | |
d134f170 RD |
542 | set void AutoCSetFillUps=2112(, string characterSet) |
543 | ||
d25f5fbb | 544 | # Should a single item auto-completion list automatically choose the item. |
d134f170 RD |
545 | set void AutoCSetChooseSingle=2113(bool chooseSingle,) |
546 | ||
d25f5fbb | 547 | # Retrieve whether a single item auto-completion list automatically choose the item. |
d134f170 RD |
548 | get bool AutoCGetChooseSingle=2114(,) |
549 | ||
550 | # Set whether case is significant when performing auto-completion searches. | |
551 | set void AutoCSetIgnoreCase=2115(bool ignoreCase,) | |
552 | ||
d25f5fbb | 553 | # Retrieve state of ignore case flag. |
d134f170 RD |
554 | get bool AutoCGetIgnoreCase=2116(,) |
555 | ||
65ec6247 RD |
556 | # Display a list of strings and send notification when user chooses one. |
557 | fun void UserListShow=2117(int listType, string itemList) | |
558 | ||
a834585d | 559 | # Set whether or not autocompletion is hidden automatically when nothing matches. |
65ec6247 RD |
560 | set void AutoCSetAutoHide=2118(bool autoHide,) |
561 | ||
a834585d | 562 | # Retrieve whether or not autocompletion is hidden automatically when nothing matches. |
65ec6247 RD |
563 | get bool AutoCGetAutoHide=2119(,) |
564 | ||
a834585d RD |
565 | # Set whether or not autocompletion deletes any word characters |
566 | # after the inserted text upon completion. | |
1a2fb4cd RD |
567 | set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,) |
568 | ||
a834585d RD |
569 | # Retrieve whether or not autocompletion deletes any word characters |
570 | # after the inserted text upon completion. | |
1a2fb4cd RD |
571 | get bool AutoCGetDropRestOfWord=2271(,) |
572 | ||
bfabd11a RD |
573 | # Set the number of spaces used for one level of indentation. |
574 | set void SetIndent=2122(int indentSize,) | |
575 | ||
576 | # Retrieve indentation size. | |
577 | get int GetIndent=2123(,) | |
578 | ||
579 | # Indentation will only use space characters if useTabs is false, otherwise | |
580 | # it will use a combination of tabs and spaces. | |
581 | set void SetUseTabs=2124(bool useTabs,) | |
582 | ||
583 | # Retrieve whether tabs will be used in indentation. | |
584 | get bool GetUseTabs=2125(,) | |
585 | ||
586 | # Change the indentation of a line to a number of columns. | |
587 | set void SetLineIndentation=2126(int line, int indentSize) | |
588 | ||
589 | # Retrieve the number of columns that a line is indented. | |
590 | get int GetLineIndentation=2127(int line,) | |
591 | ||
592 | # Retrieve the position before the first non indentation character on a line. | |
593 | get position GetLineIndentPosition=2128(int line,) | |
594 | ||
d134f170 RD |
595 | # Retrieve the column number of a position, taking tab width into account. |
596 | get int GetColumn=2129(position pos,) | |
597 | ||
598 | # Show or hide the horizontal scroll bar. | |
bfabd11a RD |
599 | set void SetHScrollBar=2130(bool show,) |
600 | ||
d134f170 | 601 | # Is the horizontal scroll bar visible? |
bfabd11a RD |
602 | get bool GetHScrollBar=2131(,) |
603 | ||
d134f170 RD |
604 | # Show or hide indentation guides. |
605 | set void SetIndentationGuides=2132(bool show,) | |
606 | ||
607 | # Are the indentation guides visible? | |
608 | get bool GetIndentationGuides=2133(,) | |
609 | ||
610 | # Set the highlighted indentation guide column. | |
611 | # 0 = no highlighted guide. | |
612 | set void SetHighlightGuide=2134(int column,) | |
613 | ||
614 | # Get the highlighted indentation guide column. | |
615 | get int GetHighlightGuide=2135(,) | |
616 | ||
617 | # Get the position after the last visible characters on a line. | |
618 | get int GetLineEndPosition=2136(int line,) | |
619 | ||
620 | # Get the code page used to interpret the bytes of the document as characters. | |
621 | get int GetCodePage=2137(,) | |
622 | ||
623 | # Get the foreground colour of the caret. | |
624 | get colour GetCaretFore=2138(,) | |
625 | ||
626 | # In palette mode? | |
627 | get bool GetUsePalette=2139(,) | |
628 | ||
629 | # In read-only mode? | |
630 | get bool GetReadOnly=2140(,) | |
631 | ||
632 | # Sets the position of the caret. | |
633 | set void SetCurrentPos=2141(position pos,) | |
634 | ||
635 | # Sets the position that starts the selection - this becomes the anchor. | |
636 | set void SetSelectionStart=2142(position pos,) | |
637 | ||
638 | # Returns the position at the start of the selection. | |
639 | get position GetSelectionStart=2143(,) | |
640 | ||
641 | # Sets the position that ends the selection - this becomes the currentPosition. | |
642 | set void SetSelectionEnd=2144(position pos,) | |
643 | ||
644 | # Returns the position at the end of the selection. | |
645 | get position GetSelectionEnd=2145(,) | |
646 | ||
647 | # Sets the print magnification added to the point size of each style for printing. | |
648 | set void SetPrintMagnification=2146(int magnification,) | |
649 | ||
650 | # Returns the print magnification. | |
651 | get int GetPrintMagnification=2147(,) | |
652 | ||
a834585d | 653 | enu PrintOption=SC_PRINT_ |
d134f170 RD |
654 | # PrintColourMode - use same colours as screen. |
655 | val SC_PRINT_NORMAL=0 | |
656 | # PrintColourMode - invert the light value of each style for printing. | |
657 | val SC_PRINT_INVERTLIGHT=1 | |
658 | # PrintColourMode - force black text on white background for printing. | |
659 | val SC_PRINT_BLACKONWHITE=2 | |
65ec6247 RD |
660 | # PrintColourMode - text stays coloured, but all background is forced to be white for printing. |
661 | val SC_PRINT_COLOURONWHITE=3 | |
662 | # PrintColourMode - only the default-background is forced to be white for printing. | |
663 | val SC_PRINT_COLOURONWHITEDEFAULTBG=4 | |
d134f170 RD |
664 | |
665 | # Modify colours when printing for clearer printed text. | |
666 | set void SetPrintColourMode=2148(int mode,) | |
667 | ||
668 | # Returns the print colour mode. | |
669 | get int GetPrintColourMode=2149(,) | |
670 | ||
a834585d | 671 | enu FindOption=SCFIND_ |
d134f170 RD |
672 | val SCFIND_WHOLEWORD=2 |
673 | val SCFIND_MATCHCASE=4 | |
674 | val SCFIND_WORDSTART=0x00100000 | |
d134f170 RD |
675 | val SCFIND_REGEXP=0x00200000 |
676 | ||
677 | # Find some text in the document. | |
678 | fun position FindText=2150(int flags, findtext ft) | |
679 | ||
a834585d | 680 | # On Windows, will draw the document into a display context such as a printer. |
d134f170 RD |
681 | fun void FormatRange=2151(bool draw, formatrange fr) |
682 | ||
683 | # Retrieve the line at the top of the display. | |
684 | get int GetFirstVisibleLine=2152(,) | |
685 | ||
686 | # Retrieve the contents of a line. | |
687 | # Returns the length of the line. | |
688 | fun int GetLine=2153(int line, stringresult text) | |
689 | ||
690 | # Returns the number of lines in the document. There is always at least one. | |
691 | get int GetLineCount=2154(,) | |
692 | ||
693 | # Sets the size in pixels of the left margin. | |
65ec6247 | 694 | set void SetMarginLeft=2155(, int pixelWidth) |
d134f170 RD |
695 | |
696 | # Returns the size in pixels of the left margin. | |
697 | get int GetMarginLeft=2156(,) | |
698 | ||
699 | # Sets the size in pixels of the right margin. | |
65ec6247 | 700 | set void SetMarginRight=2157(, int pixelWidth) |
d134f170 RD |
701 | |
702 | # Returns the size in pixels of the right margin. | |
703 | get int GetMarginRight=2158(,) | |
704 | ||
705 | # Is the document different from when it was last saved? | |
706 | get bool GetModify=2159(,) | |
707 | ||
708 | # Select a range of text. | |
709 | fun void SetSel=2160(position start, position end) | |
710 | ||
711 | # Retrieve the selected text. | |
712 | # Return the length of the text. | |
713 | fun int GetSelText=2161(,stringresult text) | |
714 | ||
715 | # Retrieve a range of text. | |
716 | # Return the length of the text. | |
717 | fun int GetTextRange=2162(, textrange tr) | |
718 | ||
719 | # Draw the selection in normal style or with selection highlighted. | |
720 | fun void HideSelection=2163(bool normal,) | |
721 | ||
722 | # Retrieve the x value of the point in the window where a position is displayed. | |
723 | fun int PointXFromPosition=2164(, position pos) | |
724 | ||
725 | # Retrieve the y value of the point in the window where a position is displayed. | |
726 | fun int PointYFromPosition=2165(, position pos) | |
727 | ||
728 | # Retrieve the line containing a position. | |
729 | fun int LineFromPosition=2166(position pos,) | |
730 | ||
731 | # Retrieve the position at the start of a line. | |
732 | fun int PositionFromLine=2167(int line,) | |
733 | ||
734 | # Scroll horizontally and vertically. | |
735 | fun void LineScroll=2168(int columns, int lines) | |
736 | ||
737 | # Ensure the caret is visible. | |
738 | fun void ScrollCaret=2169(,) | |
739 | ||
740 | # Replace the selected text with the argument text. | |
741 | fun void ReplaceSel=2170(, string text) | |
742 | ||
743 | # Set to read only or read write. | |
744 | set void SetReadOnly=2171(bool readOnly,) | |
745 | ||
746 | # Null operation. | |
747 | fun void Null=2172(,) | |
748 | ||
749 | # Will a paste succeed? | |
750 | fun bool CanPaste=2173(,) | |
751 | ||
a834585d | 752 | # Are there any undoable actions in the undo history? |
d134f170 RD |
753 | fun bool CanUndo=2174(,) |
754 | ||
755 | # Delete the undo history. | |
756 | fun void EmptyUndoBuffer=2175(,) | |
757 | ||
758 | # Undo one action in the undo history. | |
759 | fun void Undo=2176(,) | |
760 | ||
761 | # Cut the selection to the clipboard. | |
762 | fun void Cut=2177(,) | |
763 | ||
764 | # Copy the selection to the clipboard. | |
765 | fun void Copy=2178(,) | |
766 | ||
767 | # Paste the contents of the clipboard into the document replacing the selection. | |
768 | fun void Paste=2179(,) | |
769 | ||
770 | # Clear the selection. | |
771 | fun void Clear=2180(,) | |
772 | ||
773 | # Replace the contents of the document with the argument text. | |
774 | fun void SetText=2181(, string text) | |
775 | ||
776 | # Retrieve all the text in the document. | |
777 | # Returns number of characters retrieved. | |
778 | fun int GetText=2182(int length, stringresult text) | |
779 | ||
780 | # Retrieve the number of characters in the document. | |
781 | get int GetTextLength=2183(,) | |
782 | ||
783 | # Retrieve a pointer to a function that processes messages for this Scintilla. | |
784 | get int GetDirectFunction=2184(,) | |
785 | ||
786 | # Retrieve a pointer value to use as the first argument when calling | |
787 | # the function returned by GetDirectFunction. | |
788 | get int GetDirectPointer=2185(,) | |
789 | ||
a834585d | 790 | # Set to overtype (true) or insert mode. |
d134f170 RD |
791 | set void SetOvertype=2186(bool overtype,) |
792 | ||
793 | # Returns true if overtype mode is active otherwise false is returned. | |
794 | get bool GetOvertype=2187(,) | |
795 | ||
a834585d | 796 | # Set the width of the insert mode caret. |
65ec6247 RD |
797 | set void SetCaretWidth=2188(int pixelWidth,) |
798 | ||
a834585d | 799 | # Returns the width of the insert mode caret. |
65ec6247 RD |
800 | get int GetCaretWidth=2189(,) |
801 | ||
802 | # Sets the position that starts the target which is used for updating the | |
803 | # document without affecting the scroll position. | |
804 | set void SetTargetStart=2190(position pos,) | |
805 | ||
806 | # Get the position that starts the target. | |
807 | get position GetTargetStart=2191(,) | |
808 | ||
809 | # Sets the position that ends the target which is used for updating the | |
810 | # document without affecting the scroll position. | |
811 | set void SetTargetEnd=2192(position pos,) | |
812 | ||
813 | # Get the position that ends the target. | |
814 | get position GetTargetEnd=2193(,) | |
815 | ||
816 | # Replace the target text with the argument text. | |
b8b0e402 | 817 | # Text is counted so it can contain nulls. |
65ec6247 RD |
818 | # Returns the length of the replacement text. |
819 | fun int ReplaceTarget=2194(int length, string text) | |
820 | ||
821 | # Replace the target text with the argument text after \d processing. | |
b8b0e402 | 822 | # Text is counted so it can contain nulls. |
65ec6247 RD |
823 | # Looks for \d where d is between 1 and 9 and replaces these with the strings |
824 | # matched in the last search operation which were surrounded by \( and \). | |
825 | # Returns the length of the replacement text including any change | |
826 | # caused by processing the \d patterns. | |
827 | fun int ReplaceTargetRE=2195(int length, string text) | |
828 | ||
829 | # Search for a counted string in the target and set the target to the found | |
b8b0e402 | 830 | # range. Text is counted so it can contain nulls. |
65ec6247 RD |
831 | # Returns length of range or -1 for failure in which case target is not moved. |
832 | fun int SearchInTarget=2197(int length, string text) | |
833 | ||
a834585d | 834 | # Set the search flags used by SearchInTarget. |
65ec6247 RD |
835 | set void SetSearchFlags=2198(int flags,) |
836 | ||
a834585d | 837 | # Get the search flags used by SearchInTarget. |
65ec6247 RD |
838 | get int GetSearchFlags=2199(,) |
839 | ||
bfabd11a RD |
840 | # Show a call tip containing a definition near position pos. |
841 | fun void CallTipShow=2200(position pos, string definition) | |
842 | ||
843 | # Remove the call tip from the screen. | |
844 | fun void CallTipCancel=2201(,) | |
845 | ||
846 | # Is there an active call tip? | |
847 | fun bool CallTipActive=2202(,) | |
848 | ||
849 | # Retrieve the position where the caret was before displaying the call tip. | |
850 | fun position CallTipPosStart=2203(,) | |
851 | ||
852 | # Highlight a segment of the definition. | |
853 | fun void CallTipSetHlt=2204(int start, int end) | |
854 | ||
855 | # Set the background colour for the call tip. | |
856 | set void CallTipSetBack=2205(colour back,) | |
857 | ||
858 | # Find the display line of a document line taking hidden lines into account. | |
859 | fun int VisibleFromDocLine=2220(int line,) | |
860 | ||
861 | # Find the document line of a display line taking hidden lines into account. | |
862 | fun int DocLineFromVisible=2221(int lineDisplay,) | |
863 | ||
a834585d | 864 | enu FoldLevel=SC_FOLDLEVEL |
bfabd11a RD |
865 | val SC_FOLDLEVELBASE=0x400 |
866 | val SC_FOLDLEVELWHITEFLAG=0x1000 | |
867 | val SC_FOLDLEVELHEADERFLAG=0x2000 | |
868 | val SC_FOLDLEVELNUMBERMASK=0x0FFF | |
869 | ||
870 | # Set the fold level of a line. | |
871 | # This encodes an integer level along with flags indicating whether the | |
872 | # line is a header and whether it is effectively white space. | |
873 | set void SetFoldLevel=2222(int line, int level) | |
874 | ||
875 | # Retrieve the fold level of a line. | |
876 | get int GetFoldLevel=2223(int line,) | |
877 | ||
878 | # Find the last child line of a header line. | |
d134f170 | 879 | get int GetLastChild=2224(int line, int level) |
bfabd11a RD |
880 | |
881 | # Find the parent line of a child line. | |
882 | get int GetFoldParent=2225(int line,) | |
883 | ||
884 | # Make a range of lines visible. | |
885 | fun void ShowLines=2226(int lineStart, int lineEnd) | |
886 | ||
887 | # Make a range of lines invisible. | |
888 | fun void HideLines=2227(int lineStart, int lineEnd) | |
889 | ||
890 | # Is a line visible? | |
891 | get bool GetLineVisible=2228(int line,) | |
892 | ||
893 | # Show the children of a header line. | |
894 | set void SetFoldExpanded=2229(int line, bool expanded) | |
895 | ||
896 | # Is a header line expanded? | |
897 | get bool GetFoldExpanded=2230(int line,) | |
898 | ||
899 | # Switch a header line between expanded and contracted. | |
900 | fun void ToggleFold=2231(int line,) | |
901 | ||
902 | # Ensure a particular line is visible by expanding any header line hiding it. | |
903 | fun void EnsureVisible=2232(int line,) | |
904 | ||
a834585d | 905 | # Set some debugging options for folding. |
bfabd11a RD |
906 | fun void SetFoldFlags=2233(int flags,) |
907 | ||
65ec6247 RD |
908 | # Ensure a particular line is visible by expanding any header line hiding it. |
909 | # Use the currently set visibility policy to determine which range to display. | |
910 | fun void EnsureVisibleEnforcePolicy=2234(int line,) | |
911 | ||
a834585d | 912 | # Sets whether a tab pressed when caret is within indentation indents. |
65ec6247 RD |
913 | set void SetTabIndents=2260(bool tabIndents,) |
914 | ||
915 | # Does a tab pressed when caret is within indentation indent? | |
916 | get bool GetTabIndents=2261(,) | |
917 | ||
a834585d | 918 | # Sets whether a backspace pressed when caret is within indentation unindents. |
65ec6247 RD |
919 | set void SetBackSpaceUnIndents=2262(bool bsUnIndents,) |
920 | ||
921 | # Does a backspace pressed when caret is within indentation unindent? | |
922 | get bool GetBackSpaceUnIndents=2263(,) | |
923 | ||
924 | val SC_TIME_FOREVER=10000000 | |
925 | ||
a834585d | 926 | # Sets the time the mouse must sit still to generate a mouse dwell event. |
65ec6247 RD |
927 | set void SetMouseDwellTime=2264(int periodMilliseconds,) |
928 | ||
a834585d | 929 | # Retrieve the time the mouse must sit still to generate a mouse dwell event. |
65ec6247 RD |
930 | get int GetMouseDwellTime=2265(,) |
931 | ||
a834585d | 932 | # Get position of start of word. |
1a2fb4cd RD |
933 | fun int WordStartPosition=2266(position pos, bool onlyWordCharacters) |
934 | ||
a834585d | 935 | # Get position of end of word. |
1a2fb4cd RD |
936 | fun int WordEndPosition=2267(position pos, bool onlyWordCharacters) |
937 | ||
a834585d | 938 | enu Wrap=SC_WRAP_ |
1a2fb4cd RD |
939 | val SC_WRAP_NONE=0 |
940 | val SC_WRAP_WORD=1 | |
941 | ||
a834585d | 942 | # Sets whether text is word wrapped. |
1a2fb4cd RD |
943 | set void SetWrapMode=2268(int mode,) |
944 | ||
a834585d | 945 | # Retrieve whether text is word wrapped. |
1a2fb4cd RD |
946 | get int GetWrapMode=2269(,) |
947 | ||
a834585d | 948 | enu LineCache=SC_CACHE_ |
1a2fb4cd RD |
949 | val SC_CACHE_NONE=0 |
950 | val SC_CACHE_CARET=1 | |
951 | val SC_CACHE_PAGE=2 | |
952 | val SC_CACHE_DOCUMENT=3 | |
953 | ||
a834585d | 954 | # Sets the degree of caching of layout information. |
1a2fb4cd RD |
955 | set void SetLayoutCache=2272(int mode,) |
956 | ||
a834585d | 957 | # Retrieve the degree of caching of layout information. |
1a2fb4cd RD |
958 | get int GetLayoutCache=2273(,) |
959 | ||
a834585d RD |
960 | # Sets the document width assumed for scrolling. |
961 | set void SetScrollWidth=2274(int pixelWidth,) | |
962 | ||
963 | # Retrieve the document width assumed for scrolling. | |
964 | get int GetScrollWidth=2275(,) | |
965 | ||
966 | # Measure the pixel width of some text in a particular style. | |
967 | # Nul terminated text argument. | |
968 | # Does not handle tab or control characters. | |
969 | fun int TextWidth=2276(int style, string text) | |
970 | ||
971 | # Sets the scroll range so that maximum scroll position has | |
972 | # the last line at the bottom of the view (default). | |
973 | # Setting this to false allows scrolling one page below the last line. | |
974 | set void SetEndAtLastLine=2277(bool endAtLastLine,) | |
975 | ||
976 | # Retrieve whether the maximum scroll position has the last | |
977 | # line at the bottom of the view. | |
978 | get int GetEndAtLastLine=2278(,) | |
979 | ||
980 | # Retrieve the height of a particular line of text in pixels. | |
981 | fun int TextHeight=2279(int line,) | |
982 | ||
d134f170 | 983 | ## Start of key messages |
bfabd11a RD |
984 | # Move caret down one line. |
985 | fun void LineDown=2300(,) | |
986 | ||
987 | # Move caret down one line extending selection to new caret position. | |
988 | fun void LineDownExtend=2301(,) | |
989 | ||
990 | # Move caret up one line. | |
991 | fun void LineUp=2302(,) | |
992 | ||
993 | # Move caret up one line extending selection to new caret position. | |
994 | fun void LineUpExtend=2303(,) | |
995 | ||
996 | # Move caret left one character. | |
997 | fun void CharLeft=2304(,) | |
998 | ||
999 | # Move caret left one character extending selection to new caret position. | |
1000 | fun void CharLeftExtend=2305(,) | |
1001 | ||
1002 | # Move caret right one character. | |
1003 | fun void CharRight=2306(,) | |
1004 | ||
1005 | # Move caret right one character extending selection to new caret position. | |
1006 | fun void CharRightExtend=2307(,) | |
1007 | ||
1008 | # Move caret left one word. | |
1009 | fun void WordLeft=2308(,) | |
1010 | ||
1011 | # Move caret left one word extending selection to new caret position. | |
1012 | fun void WordLeftExtend=2309(,) | |
1013 | ||
1014 | # Move caret right one word. | |
1015 | fun void WordRight=2310(,) | |
1016 | ||
1017 | # Move caret right one word extending selection to new caret position. | |
1018 | fun void WordRightExtend=2311(,) | |
1019 | ||
1020 | # Move caret to first position on line. | |
1021 | fun void Home=2312(,) | |
1022 | ||
1023 | # Move caret to first position on line extending selection to new caret position. | |
1024 | fun void HomeExtend=2313(,) | |
1025 | ||
1026 | # Move caret to last position on line. | |
1027 | fun void LineEnd=2314(,) | |
1028 | ||
1029 | # Move caret to last position on line extending selection to new caret position. | |
1030 | fun void LineEndExtend=2315(,) | |
1031 | ||
1032 | # Move caret to first position in document. | |
1033 | fun void DocumentStart=2316(,) | |
1034 | ||
1035 | # Move caret to first position in document extending selection to new caret position. | |
1036 | fun void DocumentStartExtend=2317(,) | |
1037 | ||
1038 | # Move caret to last position in document. | |
1039 | fun void DocumentEnd=2318(,) | |
1040 | ||
1041 | # Move caret to last position in document extending selection to new caret position. | |
1042 | fun void DocumentEndExtend=2319(,) | |
1043 | ||
1044 | # Move caret one page up. | |
1045 | fun void PageUp=2320(,) | |
1046 | ||
1047 | # Move caret one page up extending selection to new caret position. | |
1048 | fun void PageUpExtend=2321(,) | |
1049 | ||
1050 | # Move caret one page down. | |
1051 | fun void PageDown=2322(,) | |
1052 | ||
1053 | # Move caret one page down extending selection to new caret position. | |
1054 | fun void PageDownExtend=2323(,) | |
1055 | ||
1056 | # Switch from insert to overtype mode or the reverse. | |
1057 | fun void EditToggleOvertype=2324(,) | |
1058 | ||
1059 | # Cancel any modes such as call tip or auto-completion list display. | |
1060 | fun void Cancel=2325(,) | |
1061 | ||
1062 | # Delete the selection or if no selection, the character before the caret. | |
1063 | fun void DeleteBack=2326(,) | |
1064 | ||
a834585d | 1065 | # If selection is empty or all on one line replace the selection with a tab character. |
bfabd11a RD |
1066 | # If more than one line selected, indent the lines. |
1067 | fun void Tab=2327(,) | |
1068 | ||
1069 | # Dedent the selected lines. | |
1070 | fun void BackTab=2328(,) | |
1071 | ||
1072 | # Insert a new line, may use a CRLF, CR or LF depending on EOL mode. | |
1073 | fun void NewLine=2329(,) | |
1074 | ||
1075 | # Insert a Form Feed character. | |
1076 | fun void FormFeed=2330(,) | |
1077 | ||
d25f5fbb | 1078 | # Move caret to before first visible character on line. |
bfabd11a RD |
1079 | # If already there move to first character on line. |
1080 | fun void VCHome=2331(,) | |
1081 | ||
1082 | # Like VCHome but extending selection to new caret position. | |
1083 | fun void VCHomeExtend=2332(,) | |
1084 | ||
1085 | # Magnify the displayed text by increasing the sizes by 1 point. | |
1086 | fun void ZoomIn=2333(,) | |
1087 | ||
1088 | # Make the displayed text smaller by decreasing the sizes by 1 point. | |
1089 | fun void ZoomOut=2334(,) | |
1090 | ||
1091 | # Delete the word to the left of the caret. | |
1092 | fun void DelWordLeft=2335(,) | |
1093 | ||
1094 | # Delete the word to the right of the caret. | |
1095 | fun void DelWordRight=2336(,) | |
1096 | ||
1097 | # Cut the line containing the caret. | |
1098 | fun void LineCut=2337(,) | |
1099 | ||
1100 | # Delete the line containing the caret. | |
1101 | fun void LineDelete=2338(,) | |
1102 | ||
1103 | # Switch the current line with the previous. | |
1104 | fun void LineTranspose=2339(,) | |
1105 | ||
1106 | # Transform the selection to lower case. | |
1107 | fun void LowerCase=2340(,) | |
1108 | ||
1109 | # Transform the selection to upper case. | |
1110 | fun void UpperCase=2341(,) | |
1111 | ||
1112 | # Scroll the document down, keeping the caret visible. | |
1113 | fun void LineScrollDown=2342(,) | |
1114 | ||
1115 | # Scroll the document up, keeping the caret visible. | |
1116 | fun void LineScrollUp=2343(,) | |
1117 | ||
1a2fb4cd | 1118 | # Delete the selection or if no selection, the character before the caret. |
a834585d | 1119 | # Will not delete the character before at the start of a line. |
1a2fb4cd RD |
1120 | fun void DeleteBackNotLine=2344(,) |
1121 | ||
a834585d | 1122 | # Move the caret inside current view if it's not there already. |
65ec6247 RD |
1123 | fun void MoveCaretInsideView=2401(,) |
1124 | ||
a834585d | 1125 | # How many characters are on a line, not including end of line characters? |
bfabd11a RD |
1126 | fun int LineLength=2350(int line,) |
1127 | ||
1128 | # Highlight the characters at two positions. | |
a834585d | 1129 | fun void BraceHighlight=2351(position pos1, position pos2) |
bfabd11a RD |
1130 | |
1131 | # Highlight the character at a position indicating there is no matching brace. | |
1132 | fun void BraceBadLight=2352(position pos,) | |
1133 | ||
1134 | # Find the position of a matching brace or INVALID_POSITION if no match. | |
1135 | fun position BraceMatch=2353(position pos,) | |
1136 | ||
a834585d | 1137 | # Are the end of line characters visible? |
bfabd11a RD |
1138 | get bool GetViewEOL=2355(,) |
1139 | ||
a834585d | 1140 | # Make the end of line characters visible or invisible. |
bfabd11a RD |
1141 | set void SetViewEOL=2356(bool visible,) |
1142 | ||
1143 | # Retrieve a pointer to the document object. | |
1144 | get int GetDocPointer=2357(,) | |
1145 | ||
1146 | # Change the document object used. | |
65ec6247 | 1147 | set void SetDocPointer=2358(,int pointer) |
bfabd11a RD |
1148 | |
1149 | # Set which document modification events are sent to the container. | |
1150 | set void SetModEventMask=2359(int mask,) | |
1151 | ||
a834585d | 1152 | enu EdgeVisualStyle=EDGE_ |
bfabd11a RD |
1153 | val EDGE_NONE=0 |
1154 | val EDGE_LINE=1 | |
1155 | val EDGE_BACKGROUND=2 | |
1156 | ||
1157 | # Retrieve the column number which text should be kept within. | |
1158 | get int GetEdgeColumn=2360(,) | |
1159 | ||
d25f5fbb RD |
1160 | # Set the column number of the edge. |
1161 | # If text goes past the edge then it is highlighted. | |
bfabd11a RD |
1162 | set void SetEdgeColumn=2361(int column,) |
1163 | ||
1164 | # Retrieve the edge highlight mode. | |
1165 | get int GetEdgeMode=2362(,) | |
1166 | ||
1167 | # The edge may be displayed by a line (EDGE_LINE) or by highlighting text that | |
1168 | # goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE). | |
1169 | set void SetEdgeMode=2363(int mode,) | |
1170 | ||
1171 | # Retrieve the colour used in edge indication. | |
1172 | get colour GetEdgeColour=2364(,) | |
1173 | ||
1174 | # Change the colour used in edge indication. | |
1175 | set void SetEdgeColour=2365(colour edgeColour,) | |
1176 | ||
1177 | # Sets the current caret position to be the search anchor. | |
1178 | fun void SearchAnchor=2366(,) | |
1179 | ||
1180 | # Find some text starting at the search anchor. | |
65ec6247 | 1181 | # Does not ensure the selection is visible. |
bfabd11a RD |
1182 | fun int SearchNext=2367(int flags, string text) |
1183 | ||
1184 | # Find some text starting at the search anchor and moving backwards. | |
65ec6247 | 1185 | # Does not ensure the selection is visible. |
bfabd11a RD |
1186 | fun int SearchPrev=2368(int flags, string text) |
1187 | ||
bfabd11a RD |
1188 | # Retrieves the number of lines completely visible. |
1189 | get int LinesOnScreen=2370(,) | |
1190 | ||
1191 | # Set whether a pop up menu is displayed automatically when the user presses | |
1192 | # the wrong mouse button. | |
1193 | fun void UsePopUp=2371(bool allowPopUp,) | |
1194 | ||
a834585d | 1195 | # Is the selection rectangular? The alternative is the more common stream selection. |
bfabd11a RD |
1196 | get bool SelectionIsRectangle=2372(,) |
1197 | ||
d25f5fbb | 1198 | # Set the zoom level. This number of points is added to the size of all fonts. |
bfabd11a RD |
1199 | # It may be positive to magnify or negative to reduce. |
1200 | set void SetZoom=2373(int zoom,) | |
1201 | # Retrieve the zoom level. | |
1202 | get int GetZoom=2374(,) | |
1203 | ||
d25f5fbb | 1204 | # Create a new document object. |
d134f170 RD |
1205 | # Starts with reference count of 1 and not selected into editor. |
1206 | fun int CreateDocument=2375(,) | |
bfabd11a | 1207 | # Extend life of document. |
d134f170 | 1208 | fun void AddRefDocument=2376(, int doc) |
bfabd11a | 1209 | # Release a reference to the document, deleting document if it fades to black. |
d134f170 RD |
1210 | fun void ReleaseDocument=2377(, int doc) |
1211 | ||
1212 | # Get which document modification events are sent to the container. | |
1213 | get int GetModEventMask=2378(,) | |
bfabd11a | 1214 | |
a834585d | 1215 | # Change internal focus flag. |
65ec6247 | 1216 | set void SetFocus=2380(bool focus,) |
a834585d | 1217 | # Get internal focus flag. |
65ec6247 RD |
1218 | get bool GetFocus=2381(,) |
1219 | ||
a834585d | 1220 | # Change error status - 0 = OK. |
65ec6247 | 1221 | set void SetStatus=2382(int statusCode,) |
a834585d | 1222 | # Get error status. |
65ec6247 RD |
1223 | get int GetStatus=2383(,) |
1224 | ||
a834585d | 1225 | # Set whether the mouse is captured when its button is pressed. |
65ec6247 | 1226 | set void SetMouseDownCaptures=2384(bool captures,) |
a834585d | 1227 | # Get whether mouse gets captured. |
65ec6247 RD |
1228 | get bool GetMouseDownCaptures=2385(,) |
1229 | ||
a834585d | 1230 | enu CursorShape=SC_CURSOR |
65ec6247 RD |
1231 | val SC_CURSORNORMAL=-1 |
1232 | val SC_CURSORWAIT=3 | |
a834585d | 1233 | # Sets the cursor to one of the SC_CURSOR* values. |
65ec6247 | 1234 | set void SetCursor=2386(int cursorType,) |
a834585d | 1235 | # Get cursor type. |
65ec6247 RD |
1236 | get int GetCursor=2387(,) |
1237 | ||
1a2fb4cd | 1238 | # Change the way control characters are displayed: |
a834585d | 1239 | # If symbol is < 32, keep the drawn way, else, use the given character. |
1a2fb4cd | 1240 | set void SetControlCharSymbol=2388(int symbol,) |
a834585d | 1241 | # Get the way control characters are displayed. |
1a2fb4cd RD |
1242 | get int GetControlCharSymbol=2389(,) |
1243 | ||
a834585d | 1244 | # Move to the previous change in capitalisation. |
65ec6247 | 1245 | fun void WordPartLeft=2390(,) |
a834585d RD |
1246 | # Move to the previous change in capitalisation extending selection |
1247 | # to new caret position. | |
65ec6247 | 1248 | fun void WordPartLeftExtend=2391(,) |
a834585d | 1249 | # Move to the change next in capitalisation. |
65ec6247 | 1250 | fun void WordPartRight=2392(,) |
a834585d RD |
1251 | # Move to the next change in capitalisation extending selection |
1252 | # to new caret position. | |
65ec6247 RD |
1253 | fun void WordPartRightExtend=2393(,) |
1254 | ||
a834585d | 1255 | # Constants for use with SetVisiblePolicy, similar to SetCaretPolicy. |
65ec6247 RD |
1256 | val VISIBLE_SLOP=0x01 |
1257 | val VISIBLE_STRICT=0x04 | |
a834585d RD |
1258 | # Set the way the display area is determined when a particular line |
1259 | # is to be moved to by Find, FindNext, GotoLine, etc. | |
65ec6247 RD |
1260 | fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop) |
1261 | ||
a834585d | 1262 | # Delete back from the current position to the start of the line. |
65ec6247 RD |
1263 | fun void DelLineLeft=2395(,) |
1264 | ||
a834585d | 1265 | # Delete forwards from the current position to the end of the line. |
65ec6247 RD |
1266 | fun void DelLineRight=2396(,) |
1267 | ||
a834585d | 1268 | # Get and Set the xOffset (ie, horizonal scroll position). |
1a2fb4cd RD |
1269 | set void SetXOffset=2397(int newOffset,) |
1270 | get int GetXOffset=2398(,) | |
1271 | ||
bfabd11a | 1272 | # Set the focus to this Scintilla widget. |
a834585d | 1273 | # GTK+ Specific. |
bfabd11a RD |
1274 | fun void GrabFocus=2400(,) |
1275 | ||
a834585d RD |
1276 | enu CaretPolicy = CARET_ |
1277 | # Caret policy, used by SetXCaretPolicy and SetYCaretPolicy. | |
1278 | # If CARET_SLOP is set, we can define a slop value: caretSlop. | |
1279 | # This value defines an unwanted zone (UZ) where the caret is... unwanted. | |
1280 | # This zone is defined as a number of pixels near the vertical margins, | |
1281 | # and as a number of lines near the horizontal margins. | |
1282 | # By keeping the caret away from the edges, it is seen within its context, | |
1283 | # so it is likely that the identifier that the caret is on can be completely seen, | |
1284 | # and that the current line is seen with some of the lines following it which are | |
1285 | # often dependent on that line. | |
1286 | val CARET_SLOP=0x01 | |
1287 | # If CARET_STRICT is set, the policy is enforced... strictly. | |
1288 | # The caret is centred on the display if slop is not set, | |
1289 | # and cannot go in the UZ if slop is set. | |
1290 | val CARET_STRICT=0x04 | |
1291 | # If CARET_JUMPS is set, the display is moved more energetically | |
1292 | # so the caret can move in the same direction longer before the policy is applied again. | |
1293 | val CARET_JUMPS=0x10 | |
1294 | # If CARET_EVEN is not set, instead of having symmetrical UZs, | |
1295 | # the left and bottom UZs are extended up to right and top UZs respectively. | |
1296 | # This way, we favour the displaying of useful information: the begining of lines, | |
1297 | # where most code reside, and the lines after the caret, eg. the body of a function. | |
1298 | val CARET_EVEN=0x08 | |
1299 | ||
1300 | # Set the way the caret is kept visible when going sideway. | |
1301 | # The exclusion zone is given in pixels. | |
1302 | fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop) | |
1303 | ||
1304 | # Set the way the line the caret is on is kept visible. | |
1305 | # The exclusion zone is given in lines. | |
1306 | fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop) | |
1307 | ||
bfabd11a RD |
1308 | # Start notifying the container of all key presses and commands. |
1309 | fun void StartRecord=3001(,) | |
1310 | ||
1311 | # Stop notifying the container of all key presses and commands. | |
1312 | fun void StopRecord=3002(,) | |
1313 | ||
d25f5fbb | 1314 | # Set the lexing language of the document. |
bfabd11a RD |
1315 | set void SetLexer=4001(int lexer,) |
1316 | ||
d25f5fbb | 1317 | # Retrieve the lexing language of the document. |
bfabd11a RD |
1318 | get int GetLexer=4002(,) |
1319 | ||
1320 | # Colourise a segment of the document using the current lexing language. | |
1321 | fun void Colourise=4003(position start, position end) | |
1322 | ||
1323 | # Set up a value that may be used by a lexer for some optional feature. | |
1324 | set void SetProperty=4004(string key, string value) | |
1325 | ||
1326 | # Set up the key words used by the lexer. | |
1327 | set void SetKeyWords=4005(int keywordSet, string keyWords) | |
1328 | ||
65ec6247 RD |
1329 | # Set the lexing language of the document based on string name. |
1330 | set void SetLexerLanguage=4006(, string language) | |
1331 | ||
d134f170 | 1332 | # Notifications |
a834585d | 1333 | # Type of modification and the action which caused the modification. |
d134f170 RD |
1334 | # These are defined as a bit mask to make it easy to specify which notifications are wanted. |
1335 | # One bit is set from each of SC_MOD_* and SC_PERFORMED_*. | |
a834585d | 1336 | enu ModificationFlags=SC_MOD_ SC_PERFORMED_ SC_LAST |
bfabd11a RD |
1337 | val SC_MOD_INSERTTEXT=0x1 |
1338 | val SC_MOD_DELETETEXT=0x2 | |
1339 | val SC_MOD_CHANGESTYLE=0x4 | |
1340 | val SC_MOD_CHANGEFOLD=0x8 | |
1341 | val SC_PERFORMED_USER=0x10 | |
1342 | val SC_PERFORMED_UNDO=0x20 | |
1343 | val SC_PERFORMED_REDO=0x40 | |
1344 | val SC_LASTSTEPINUNDOREDO=0x100 | |
1345 | val SC_MOD_CHANGEMARKER=0x200 | |
1346 | val SC_MOD_BEFOREINSERT=0x400 | |
1347 | val SC_MOD_BEFOREDELETE=0x800 | |
1348 | val SC_MODEVENTMASKALL=0xF77 | |
d134f170 RD |
1349 | |
1350 | # For compatibility, these go through the COMMAND notification rather than NOTIFY | |
a834585d RD |
1351 | # and should have had exactly the same values as the EN_* constants. |
1352 | # Unfortunately the SETFOCUS and KILLFOCUS are flipped over from EN_* | |
1353 | # As clients depend on these constants, this will not be changed. | |
d134f170 RD |
1354 | val SCEN_CHANGE=768 |
1355 | val SCEN_SETFOCUS=512 | |
1356 | val SCEN_KILLFOCUS=256 | |
1357 | ||
a834585d RD |
1358 | # Symbolic key codes and modifier flags. |
1359 | # ASCII and other printable characters below 256. | |
1360 | # Extended keys above 300. | |
d134f170 | 1361 | |
a834585d | 1362 | enu Keys=SCK_ |
d134f170 RD |
1363 | val SCK_DOWN=300 |
1364 | val SCK_UP=301 | |
1365 | val SCK_LEFT=302 | |
1366 | val SCK_RIGHT=303 | |
1367 | val SCK_HOME=304 | |
1368 | val SCK_END=305 | |
1369 | val SCK_PRIOR=306 | |
1370 | val SCK_NEXT=307 | |
1371 | val SCK_DELETE=308 | |
1372 | val SCK_INSERT=309 | |
1373 | val SCK_ESCAPE=7 | |
1374 | val SCK_BACK=8 | |
1375 | val SCK_TAB=9 | |
1376 | val SCK_RETURN=13 | |
1377 | val SCK_ADD=310 | |
1378 | val SCK_SUBTRACT=311 | |
1379 | val SCK_DIVIDE=312 | |
1380 | ||
a834585d | 1381 | enu KeyMod=SCMOD_ |
d134f170 RD |
1382 | val SCMOD_SHIFT=1 |
1383 | val SCMOD_CTRL=2 | |
1384 | val SCMOD_ALT=4 | |
bfabd11a RD |
1385 | |
1386 | ################################################ | |
d134f170 | 1387 | # For SciLexer.h |
a834585d | 1388 | enu Lexer=SCLEX_ |
bfabd11a RD |
1389 | val SCLEX_CONTAINER=0 |
1390 | val SCLEX_NULL=1 | |
1391 | val SCLEX_PYTHON=2 | |
1392 | val SCLEX_CPP=3 | |
1393 | val SCLEX_HTML=4 | |
1394 | val SCLEX_XML=5 | |
1395 | val SCLEX_PERL=6 | |
1396 | val SCLEX_SQL=7 | |
1397 | val SCLEX_VB=8 | |
1398 | val SCLEX_PROPERTIES=9 | |
1399 | val SCLEX_ERRORLIST=10 | |
1400 | val SCLEX_MAKEFILE=11 | |
1401 | val SCLEX_BATCH=12 | |
1402 | val SCLEX_XCODE=13 | |
1403 | val SCLEX_LATEX=14 | |
d134f170 RD |
1404 | val SCLEX_LUA=15 |
1405 | val SCLEX_DIFF=16 | |
65ec6247 RD |
1406 | val SCLEX_CONF=17 |
1407 | val SCLEX_PASCAL=18 | |
1408 | val SCLEX_AVE=19 | |
1409 | val SCLEX_ADA=20 | |
1410 | val SCLEX_LISP=21 | |
1411 | val SCLEX_RUBY=22 | |
1412 | val SCLEX_EIFFEL=23 | |
1413 | val SCLEX_EIFFELKW=24 | |
1414 | val SCLEX_TCL=25 | |
b8b0e402 | 1415 | val SCLEX_NNCRONTAB=26 |
1a2fb4cd RD |
1416 | val SCLEX_BULLANT=27 |
1417 | val SCLEX_VBSCRIPT=28 | |
1418 | val SCLEX_ASP=29 | |
1419 | val SCLEX_PHP=30 | |
1420 | val SCLEX_BAAN=31 | |
1421 | val SCLEX_MATLAB=32 | |
a834585d | 1422 | val SCLEX_SCRIPTOL=33 |
1a2fb4cd | 1423 | |
65ec6247 RD |
1424 | # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a |
1425 | # value assigned in sequence from SCLEX_AUTOMATIC+1. | |
1426 | val SCLEX_AUTOMATIC=1000 | |
d134f170 | 1427 | # Lexical states for SCLEX_PYTHON |
a834585d RD |
1428 | lex Python=SCLEX_PYTHON SCE_P_ |
1429 | lex Ruby=SCLEX_RUBY SCE_P_ | |
bfabd11a RD |
1430 | val SCE_P_DEFAULT=0 |
1431 | val SCE_P_COMMENTLINE=1 | |
1432 | val SCE_P_NUMBER=2 | |
1433 | val SCE_P_STRING=3 | |
1434 | val SCE_P_CHARACTER=4 | |
1435 | val SCE_P_WORD=5 | |
1436 | val SCE_P_TRIPLE=6 | |
1437 | val SCE_P_TRIPLEDOUBLE=7 | |
1438 | val SCE_P_CLASSNAME=8 | |
1439 | val SCE_P_DEFNAME=9 | |
1440 | val SCE_P_OPERATOR=10 | |
1441 | val SCE_P_IDENTIFIER=11 | |
1442 | val SCE_P_COMMENTBLOCK=12 | |
1443 | val SCE_P_STRINGEOL=13 | |
1a2fb4cd | 1444 | # Lexical states for SCLEX_CPP |
a834585d RD |
1445 | lex Cpp=SCLEX_CPP SCE_C_ |
1446 | lex SQL=SCLEX_SQL SCE_C_ | |
1447 | lex Pascal=SCLEX_PASCAL SCE_C_ | |
1448 | lex TCL=SCLEX_TCL SCE_C_ | |
1449 | lex BullAnt=SCLEX_BULLANT SCE_C_ | |
bfabd11a RD |
1450 | val SCE_C_DEFAULT=0 |
1451 | val SCE_C_COMMENT=1 | |
1452 | val SCE_C_COMMENTLINE=2 | |
1453 | val SCE_C_COMMENTDOC=3 | |
1454 | val SCE_C_NUMBER=4 | |
1455 | val SCE_C_WORD=5 | |
1456 | val SCE_C_STRING=6 | |
1457 | val SCE_C_CHARACTER=7 | |
1458 | val SCE_C_UUID=8 | |
1459 | val SCE_C_PREPROCESSOR=9 | |
1460 | val SCE_C_OPERATOR=10 | |
1461 | val SCE_C_IDENTIFIER=11 | |
1462 | val SCE_C_STRINGEOL=12 | |
d134f170 | 1463 | val SCE_C_VERBATIM=13 |
65ec6247 RD |
1464 | val SCE_C_REGEX=14 |
1465 | val SCE_C_COMMENTLINEDOC=15 | |
1466 | val SCE_C_WORD2=16 | |
b8b0e402 RD |
1467 | val SCE_C_COMMENTDOCKEYWORD=17 |
1468 | val SCE_C_COMMENTDOCKEYWORDERROR=18 | |
d134f170 | 1469 | # Lexical states for SCLEX_HTML, SCLEX_XML |
a834585d RD |
1470 | lex HTML=SCLEX_HTML SCE_H |
1471 | lex XML=SCLEX_XML SCE_H | |
1472 | lex ASP=SCLEX_ASP SCE_H | |
1473 | lex PHP=SCLEX_PHP SCE_H | |
bfabd11a RD |
1474 | val SCE_H_DEFAULT=0 |
1475 | val SCE_H_TAG=1 | |
1476 | val SCE_H_TAGUNKNOWN=2 | |
1477 | val SCE_H_ATTRIBUTE=3 | |
1478 | val SCE_H_ATTRIBUTEUNKNOWN=4 | |
1479 | val SCE_H_NUMBER=5 | |
1480 | val SCE_H_DOUBLESTRING=6 | |
1481 | val SCE_H_SINGLESTRING=7 | |
1482 | val SCE_H_OTHER=8 | |
1483 | val SCE_H_COMMENT=9 | |
1484 | val SCE_H_ENTITY=10 | |
d134f170 | 1485 | # XML and ASP |
bfabd11a RD |
1486 | val SCE_H_TAGEND=11 |
1487 | val SCE_H_XMLSTART=12 | |
1488 | val SCE_H_XMLEND=13 | |
1489 | val SCE_H_SCRIPT=14 | |
1490 | val SCE_H_ASP=15 | |
1491 | val SCE_H_ASPAT=16 | |
d134f170 RD |
1492 | val SCE_H_CDATA=17 |
1493 | val SCE_H_QUESTION=18 | |
1494 | # More HTML | |
1495 | val SCE_H_VALUE=19 | |
65ec6247 RD |
1496 | # X-Code |
1497 | val SCE_H_XCCOMMENT=20 | |
1498 | # SGML | |
b8b0e402 RD |
1499 | val SCE_H_SGML_DEFAULT=21 |
1500 | val SCE_H_SGML_COMMAND=22 | |
1501 | val SCE_H_SGML_1ST_PARAM=23 | |
1502 | val SCE_H_SGML_DOUBLESTRING=24 | |
1503 | val SCE_H_SGML_SIMPLESTRING=25 | |
1504 | val SCE_H_SGML_ERROR=26 | |
1505 | val SCE_H_SGML_SPECIAL=27 | |
1506 | val SCE_H_SGML_ENTITY=28 | |
1507 | val SCE_H_SGML_COMMENT=29 | |
1508 | val SCE_H_SGML_1ST_PARAM_COMMENT=30 | |
1509 | val SCE_H_SGML_BLOCK_DEFAULT=31 | |
d134f170 | 1510 | # Embedded Javascript |
bfabd11a RD |
1511 | val SCE_HJ_START=40 |
1512 | val SCE_HJ_DEFAULT=41 | |
1513 | val SCE_HJ_COMMENT=42 | |
1514 | val SCE_HJ_COMMENTLINE=43 | |
1515 | val SCE_HJ_COMMENTDOC=44 | |
1516 | val SCE_HJ_NUMBER=45 | |
1517 | val SCE_HJ_WORD=46 | |
1518 | val SCE_HJ_KEYWORD=47 | |
1519 | val SCE_HJ_DOUBLESTRING=48 | |
1520 | val SCE_HJ_SINGLESTRING=49 | |
1521 | val SCE_HJ_SYMBOLS=50 | |
1522 | val SCE_HJ_STRINGEOL=51 | |
65ec6247 | 1523 | val SCE_HJ_REGEX=52 |
d134f170 | 1524 | # ASP Javascript |
bfabd11a RD |
1525 | val SCE_HJA_START=55 |
1526 | val SCE_HJA_DEFAULT=56 | |
1527 | val SCE_HJA_COMMENT=57 | |
1528 | val SCE_HJA_COMMENTLINE=58 | |
1529 | val SCE_HJA_COMMENTDOC=59 | |
1530 | val SCE_HJA_NUMBER=60 | |
1531 | val SCE_HJA_WORD=61 | |
1532 | val SCE_HJA_KEYWORD=62 | |
1533 | val SCE_HJA_DOUBLESTRING=63 | |
1534 | val SCE_HJA_SINGLESTRING=64 | |
1535 | val SCE_HJA_SYMBOLS=65 | |
1536 | val SCE_HJA_STRINGEOL=66 | |
65ec6247 | 1537 | val SCE_HJA_REGEX=67 |
d134f170 | 1538 | # Embedded VBScript |
bfabd11a RD |
1539 | val SCE_HB_START=70 |
1540 | val SCE_HB_DEFAULT=71 | |
1541 | val SCE_HB_COMMENTLINE=72 | |
1542 | val SCE_HB_NUMBER=73 | |
1543 | val SCE_HB_WORD=74 | |
1544 | val SCE_HB_STRING=75 | |
1545 | val SCE_HB_IDENTIFIER=76 | |
1546 | val SCE_HB_STRINGEOL=77 | |
d134f170 | 1547 | # ASP VBScript |
bfabd11a RD |
1548 | val SCE_HBA_START=80 |
1549 | val SCE_HBA_DEFAULT=81 | |
1550 | val SCE_HBA_COMMENTLINE=82 | |
1551 | val SCE_HBA_NUMBER=83 | |
1552 | val SCE_HBA_WORD=84 | |
1553 | val SCE_HBA_STRING=85 | |
1554 | val SCE_HBA_IDENTIFIER=86 | |
1555 | val SCE_HBA_STRINGEOL=87 | |
d134f170 | 1556 | # Embedded Python |
bfabd11a RD |
1557 | val SCE_HP_START=90 |
1558 | val SCE_HP_DEFAULT=91 | |
1559 | val SCE_HP_COMMENTLINE=92 | |
1560 | val SCE_HP_NUMBER=93 | |
1561 | val SCE_HP_STRING=94 | |
1562 | val SCE_HP_CHARACTER=95 | |
1563 | val SCE_HP_WORD=96 | |
1564 | val SCE_HP_TRIPLE=97 | |
1565 | val SCE_HP_TRIPLEDOUBLE=98 | |
1566 | val SCE_HP_CLASSNAME=99 | |
1567 | val SCE_HP_DEFNAME=100 | |
1568 | val SCE_HP_OPERATOR=101 | |
1569 | val SCE_HP_IDENTIFIER=102 | |
d134f170 | 1570 | # ASP Python |
bfabd11a RD |
1571 | val SCE_HPA_START=105 |
1572 | val SCE_HPA_DEFAULT=106 | |
1573 | val SCE_HPA_COMMENTLINE=107 | |
1574 | val SCE_HPA_NUMBER=108 | |
1575 | val SCE_HPA_STRING=109 | |
1576 | val SCE_HPA_CHARACTER=110 | |
1577 | val SCE_HPA_WORD=111 | |
1578 | val SCE_HPA_TRIPLE=112 | |
1579 | val SCE_HPA_TRIPLEDOUBLE=113 | |
1580 | val SCE_HPA_CLASSNAME=114 | |
1581 | val SCE_HPA_DEFNAME=115 | |
1582 | val SCE_HPA_OPERATOR=116 | |
1583 | val SCE_HPA_IDENTIFIER=117 | |
d134f170 RD |
1584 | # PHP |
1585 | val SCE_HPHP_DEFAULT=118 | |
1586 | val SCE_HPHP_HSTRING=119 | |
1587 | val SCE_HPHP_SIMPLESTRING=120 | |
1588 | val SCE_HPHP_WORD=121 | |
1589 | val SCE_HPHP_NUMBER=122 | |
1590 | val SCE_HPHP_VARIABLE=123 | |
1591 | val SCE_HPHP_COMMENT=124 | |
1592 | val SCE_HPHP_COMMENTLINE=125 | |
65ec6247 RD |
1593 | val SCE_HPHP_HSTRING_VARIABLE=126 |
1594 | val SCE_HPHP_OPERATOR=127 | |
d134f170 | 1595 | # Lexical states for SCLEX_PERL |
a834585d | 1596 | lex Perl=SCLEX_PERL SCE_PL_ |
bfabd11a | 1597 | val SCE_PL_DEFAULT=0 |
65ec6247 | 1598 | val SCE_PL_ERROR=1 |
bfabd11a RD |
1599 | val SCE_PL_COMMENTLINE=2 |
1600 | val SCE_PL_POD=3 | |
1601 | val SCE_PL_NUMBER=4 | |
1602 | val SCE_PL_WORD=5 | |
1603 | val SCE_PL_STRING=6 | |
1604 | val SCE_PL_CHARACTER=7 | |
1605 | val SCE_PL_PUNCTUATION=8 | |
1606 | val SCE_PL_PREPROCESSOR=9 | |
1607 | val SCE_PL_OPERATOR=10 | |
1608 | val SCE_PL_IDENTIFIER=11 | |
1609 | val SCE_PL_SCALAR=12 | |
1610 | val SCE_PL_ARRAY=13 | |
1611 | val SCE_PL_HASH=14 | |
1612 | val SCE_PL_SYMBOLTABLE=15 | |
bfabd11a RD |
1613 | val SCE_PL_REGEX=17 |
1614 | val SCE_PL_REGSUBST=18 | |
1615 | val SCE_PL_LONGQUOTE=19 | |
1616 | val SCE_PL_BACKTICKS=20 | |
1617 | val SCE_PL_DATASECTION=21 | |
65ec6247 RD |
1618 | val SCE_PL_HERE_DELIM=22 |
1619 | val SCE_PL_HERE_Q=23 | |
1620 | val SCE_PL_HERE_QQ=24 | |
1621 | val SCE_PL_HERE_QX=25 | |
1622 | val SCE_PL_STRING_Q=26 | |
1623 | val SCE_PL_STRING_QQ=27 | |
1624 | val SCE_PL_STRING_QX=28 | |
1625 | val SCE_PL_STRING_QR=29 | |
1626 | val SCE_PL_STRING_QW=30 | |
a834585d RD |
1627 | # Lexical states for SCLEX_VB, SCLEX_VBSCRIPT |
1628 | lex VB=SCLEX_VB SCE_B_ | |
1629 | lex VBScript=SCLEX_VBSCRIPT SCE_B_ | |
1630 | val SCE_B_DEFAULT=0 | |
1631 | val SCE_B_COMMENT=1 | |
1632 | val SCE_B_NUMBER=2 | |
1633 | val SCE_B_KEYWORD=3 | |
1634 | val SCE_B_STRING=4 | |
1635 | val SCE_B_PREPROCESSOR=5 | |
1636 | val SCE_B_OPERATOR=6 | |
1637 | val SCE_B_IDENTIFIER=7 | |
1638 | val SCE_B_DATE=8 | |
1639 | # Lexical states for SCLEX_PROPERTIES | |
1640 | lex Properties=SCLEX_PROPERTIES SCE_PROPS_ | |
1641 | val SCE_PROPS_DEFAULT=0 | |
1642 | val SCE_PROPS_COMMENT=1 | |
1643 | val SCE_PROPS_SECTION=2 | |
1644 | val SCE_PROPS_ASSIGNMENT=3 | |
1645 | val SCE_PROPS_DEFVAL=4 | |
d134f170 | 1646 | # Lexical states for SCLEX_LATEX |
a834585d | 1647 | lex LaTeX=SCLEX_LATEX SCE_L_ |
bfabd11a RD |
1648 | val SCE_L_DEFAULT=0 |
1649 | val SCE_L_COMMAND=1 | |
1650 | val SCE_L_TAG=2 | |
1651 | val SCE_L_MATH=3 | |
1652 | val SCE_L_COMMENT=4 | |
d134f170 | 1653 | # Lexical states for SCLEX_LUA |
a834585d | 1654 | lex Lua=SCLEX_LUA SCE_LUA_ |
d134f170 RD |
1655 | val SCE_LUA_DEFAULT=0 |
1656 | val SCE_LUA_COMMENT=1 | |
1657 | val SCE_LUA_COMMENTLINE=2 | |
1658 | val SCE_LUA_COMMENTDOC=3 | |
1659 | val SCE_LUA_NUMBER=4 | |
1660 | val SCE_LUA_WORD=5 | |
1661 | val SCE_LUA_STRING=6 | |
1662 | val SCE_LUA_CHARACTER=7 | |
1663 | val SCE_LUA_LITERALSTRING=8 | |
1664 | val SCE_LUA_PREPROCESSOR=9 | |
1665 | val SCE_LUA_OPERATOR=10 | |
1666 | val SCE_LUA_IDENTIFIER=11 | |
1667 | val SCE_LUA_STRINGEOL=12 | |
1a2fb4cd RD |
1668 | val SCE_LUA_WORD2=13 |
1669 | val SCE_LUA_WORD3=14 | |
1670 | val SCE_LUA_WORD4=15 | |
1671 | val SCE_LUA_WORD5=16 | |
1672 | val SCE_LUA_WORD6=17 | |
65ec6247 | 1673 | # Lexical states for SCLEX_ERRORLIST |
a834585d | 1674 | lex ErrorList=SCLEX_ERRORLIST SCE_ERR_ |
d134f170 RD |
1675 | val SCE_ERR_DEFAULT=0 |
1676 | val SCE_ERR_PYTHON=1 | |
1677 | val SCE_ERR_GCC=2 | |
1678 | val SCE_ERR_MS=3 | |
1679 | val SCE_ERR_CMD=4 | |
1680 | val SCE_ERR_BORLAND=5 | |
1681 | val SCE_ERR_PERL=6 | |
65ec6247 RD |
1682 | val SCE_ERR_NET=7 |
1683 | val SCE_ERR_LUA=8 | |
a834585d | 1684 | val SCE_ERR_CTAG=9 |
65ec6247 RD |
1685 | val SCE_ERR_DIFF_CHANGED=10 |
1686 | val SCE_ERR_DIFF_ADDITION=11 | |
1687 | val SCE_ERR_DIFF_DELETION=12 | |
1688 | val SCE_ERR_DIFF_MESSAGE=13 | |
1689 | # Lexical states for SCLEX_BATCH | |
a834585d | 1690 | lex Batch=SCLEX_BATCH SCE_BAT_ |
65ec6247 RD |
1691 | val SCE_BAT_DEFAULT=0 |
1692 | val SCE_BAT_COMMENT=1 | |
1693 | val SCE_BAT_WORD=2 | |
1694 | val SCE_BAT_LABEL=3 | |
1695 | val SCE_BAT_HIDE=4 | |
1696 | val SCE_BAT_COMMAND=5 | |
1697 | val SCE_BAT_IDENTIFIER=6 | |
1698 | val SCE_BAT_OPERATOR=7 | |
1699 | # Lexical states for SCLEX_MAKEFILE | |
a834585d | 1700 | lex MakeFile=SCLEX_MAKEFILE SCE_MAKE_ |
65ec6247 RD |
1701 | val SCE_MAKE_DEFAULT=0 |
1702 | val SCE_MAKE_COMMENT=1 | |
1703 | val SCE_MAKE_PREPROCESSOR=2 | |
1704 | val SCE_MAKE_IDENTIFIER=3 | |
1705 | val SCE_MAKE_OPERATOR=4 | |
1706 | val SCE_MAKE_TARGET=5 | |
1707 | val SCE_MAKE_IDEOL=9 | |
a834585d RD |
1708 | # Lexical states for SCLEX_DIFF |
1709 | lex Diff=SCLEX_DIFF SCE_DIFF_ | |
1710 | val SCE_DIFF_DEFAULT=0 | |
1711 | val SCE_DIFF_COMMENT=1 | |
1712 | val SCE_DIFF_COMMAND=2 | |
1713 | val SCE_DIFF_HEADER=3 | |
1714 | val SCE_DIFF_POSITION=4 | |
1715 | val SCE_DIFF_DELETED=5 | |
1716 | val SCE_DIFF_ADDED=6 | |
1717 | # Lexical states for SCLEX_CONF (Apache Configuration Files Lexer) | |
1718 | lex Conf=SCLEX_CONF SCE_CONF_ | |
65ec6247 RD |
1719 | val SCE_CONF_DEFAULT=0 |
1720 | val SCE_CONF_COMMENT=1 | |
1721 | val SCE_CONF_NUMBER=2 | |
1722 | val SCE_CONF_IDENTIFIER=3 | |
1723 | val SCE_CONF_EXTENSION=4 | |
1724 | val SCE_CONF_PARAMETER=5 | |
1725 | val SCE_CONF_STRING=6 | |
1726 | val SCE_CONF_OPERATOR=7 | |
1727 | val SCE_CONF_IP=8 | |
1728 | val SCE_CONF_DIRECTIVE=9 | |
a834585d RD |
1729 | # Lexical states for SCLEX_AVE, Avenue |
1730 | lex Avenue=SCLEX_AVE SCE_AVE_ | |
65ec6247 RD |
1731 | val SCE_AVE_DEFAULT=0 |
1732 | val SCE_AVE_COMMENT=1 | |
1733 | val SCE_AVE_NUMBER=2 | |
1734 | val SCE_AVE_WORD=3 | |
1735 | val SCE_AVE_KEYWORD=4 | |
1736 | val SCE_AVE_STATEMENT=5 | |
1737 | val SCE_AVE_STRING=6 | |
1738 | val SCE_AVE_ENUM=7 | |
1739 | val SCE_AVE_STRINGEOL=8 | |
1740 | val SCE_AVE_IDENTIFIER=9 | |
1741 | val SCE_AVE_OPERATOR=10 | |
1742 | # Lexical states for SCLEX_ADA | |
a834585d | 1743 | lex Ada=SCLEX_ADA SCE_ADA_ |
65ec6247 RD |
1744 | val SCE_ADA_DEFAULT=0 |
1745 | val SCE_ADA_COMMENT=1 | |
1746 | val SCE_ADA_NUMBER=2 | |
1747 | val SCE_ADA_WORD=3 | |
1748 | val SCE_ADA_STRING=4 | |
1749 | val SCE_ADA_CHARACTER=5 | |
1750 | val SCE_ADA_OPERATOR=6 | |
1751 | val SCE_ADA_IDENTIFIER=7 | |
1752 | val SCE_ADA_STRINGEOL=8 | |
1a2fb4cd | 1753 | # Lexical states for SCLEX_BAAN |
a834585d | 1754 | lex Baan=SCLEX_BAAN SCE_BAAN_ |
1a2fb4cd RD |
1755 | val SCE_BAAN_DEFAULT=0 |
1756 | val SCE_BAAN_COMMENT=1 | |
1757 | val SCE_BAAN_COMMENTDOC=2 | |
1758 | val SCE_BAAN_NUMBER=3 | |
1759 | val SCE_BAAN_WORD=4 | |
1760 | val SCE_BAAN_STRING=5 | |
1761 | val SCE_BAAN_PREPROCESSOR=6 | |
1762 | val SCE_BAAN_OPERATOR=7 | |
1763 | val SCE_BAAN_IDENTIFIER=8 | |
1764 | val SCE_BAAN_STRINGEOL=9 | |
1765 | val SCE_BAAN_WORD2=10 | |
65ec6247 | 1766 | # Lexical states for SCLEX_LISP |
a834585d | 1767 | lex Lisp=SCLEX_LISP SCE_LISP_ |
65ec6247 RD |
1768 | val SCE_LISP_DEFAULT=0 |
1769 | val SCE_LISP_COMMENT=1 | |
1770 | val SCE_LISP_NUMBER=2 | |
1771 | val SCE_LISP_KEYWORD=3 | |
1772 | val SCE_LISP_STRING=6 | |
1773 | val SCE_LISP_STRINGEOL=8 | |
1774 | val SCE_LISP_IDENTIFIER=9 | |
1775 | val SCE_LISP_OPERATOR=10 | |
1776 | # Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW | |
a834585d RD |
1777 | lex Eiffel=SCLEX_EIFFEL SCE_EIFFEL_ |
1778 | lex EiffelKW=SCLEX_EIFFELKW SCE_EIFFEL_ | |
65ec6247 RD |
1779 | val SCE_EIFFEL_DEFAULT=0 |
1780 | val SCE_EIFFEL_COMMENTLINE=1 | |
1781 | val SCE_EIFFEL_NUMBER=2 | |
1782 | val SCE_EIFFEL_WORD=3 | |
1783 | val SCE_EIFFEL_STRING=4 | |
1784 | val SCE_EIFFEL_CHARACTER=5 | |
1785 | val SCE_EIFFEL_OPERATOR=6 | |
1786 | val SCE_EIFFEL_IDENTIFIER=7 | |
1787 | val SCE_EIFFEL_STRINGEOL=8 | |
a834585d RD |
1788 | # Lexical states for SCLEX_NNCRONTAB (nnCron crontab Lexer) |
1789 | lex NNCronTab=SCLEX_NNCRONTAB SCE_NNCRONTAB_ | |
b8b0e402 RD |
1790 | val SCE_NNCRONTAB_DEFAULT=0 |
1791 | val SCE_NNCRONTAB_COMMENT=1 | |
1792 | val SCE_NNCRONTAB_TASK=2 | |
1793 | val SCE_NNCRONTAB_SECTION=3 | |
1794 | val SCE_NNCRONTAB_KEYWORD=4 | |
1795 | val SCE_NNCRONTAB_MODIFIER=5 | |
1796 | val SCE_NNCRONTAB_ASTERISK=6 | |
1797 | val SCE_NNCRONTAB_NUMBER=7 | |
1798 | val SCE_NNCRONTAB_STRING=8 | |
1799 | val SCE_NNCRONTAB_ENVIRONMENT=9 | |
1800 | val SCE_NNCRONTAB_IDENTIFIER=10 | |
1a2fb4cd | 1801 | # Lexical states for SCLEX_MATLAB |
a834585d | 1802 | lex MatLab=SCLEX_MATLAB SCE_MATLAB_ |
1a2fb4cd RD |
1803 | val SCE_MATLAB_DEFAULT=0 |
1804 | val SCE_MATLAB_COMMENT=1 | |
1805 | val SCE_MATLAB_COMMAND=2 | |
1806 | val SCE_MATLAB_NUMBER=3 | |
1807 | val SCE_MATLAB_KEYWORD=4 | |
1808 | val SCE_MATLAB_STRING=5 | |
1809 | val SCE_MATLAB_OPERATOR=6 | |
1810 | val SCE_MATLAB_IDENTIFIER=7 | |
a834585d RD |
1811 | # Lexical states for SCLEX_SCRIPTOL |
1812 | lex Sol=SCLEX_SCRIPTOL SCE_SCRIPTOL_ | |
1813 | val SCE_SCRIPTOL_DEFAULT=0 | |
1814 | val SCE_SCRIPTOL_COMMENT=1 | |
1815 | val SCE_SCRIPTOL_COMMENTLINE=2 | |
1816 | val SCE_SCRIPTOL_COMMENTDOC=3 | |
1817 | val SCE_SCRIPTOL_NUMBER=4 | |
1818 | val SCE_SCRIPTOL_WORD=5 | |
1819 | val SCE_SCRIPTOL_STRING=6 | |
1820 | val SCE_SCRIPTOL_CHARACTER=7 | |
1821 | val SCE_SCRIPTOL_UUID=8 | |
1822 | val SCE_SCRIPTOL_PREPROCESSOR=9 | |
1823 | val SCE_SCRIPTOL_OPERATOR=10 | |
1824 | val SCE_SCRIPTOL_IDENTIFIER=11 | |
1825 | val SCE_SCRIPTOL_STRINGEOL=12 | |
1826 | val SCE_SCRIPTOL_VERBATIM=13 | |
1827 | val SCE_SCRIPTOL_REGEX=14 | |
1828 | val SCE_SCRIPTOL_COMMENTLINEDOC=15 | |
1829 | val SCE_SCRIPTOL_WORD2=16 | |
1830 | val SCE_SCRIPTOL_COMMENTDOCKEYWORD=17 | |
1831 | val SCE_SCRIPTOL_COMMENTDOCKEYWORDERROR=18 | |
1832 | val SCE_SCRIPTOL_COMMENTBASIC=19 | |
d134f170 RD |
1833 | |
1834 | # Events | |
1835 | ||
1836 | evt void StyleNeeded=2000(int position) | |
1837 | evt void CharAdded=2001(int ch) | |
1838 | evt void SavePointReached=2002(void) | |
1839 | evt void SavePointLeft=2003(void) | |
1840 | evt void ModifyAttemptRO=2004(void) | |
1841 | # GTK+ Specific to work around focus and accelerator problems: | |
1842 | evt void Key=2005(int ch, int modifiers) | |
1843 | evt void DoubleClick=2006(void) | |
1844 | evt void UpdateUI=2007(void) | |
d134f170 | 1845 | evt void Modified=2008(int position, int modificationType, string text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev) |
d134f170 RD |
1846 | evt void MacroRecord=2009(int message, int wParam, int lParam) |
1847 | evt void MarginClick=2010(int modifiers, int position, int margin) | |
1848 | evt void NeedShown=2011(int position, int length) | |
65ec6247 RD |
1849 | evt void Painted=2013(void) |
1850 | evt void UserListSelection=2014(int listType, string text) | |
1851 | evt void URIDropped=2015(string text) | |
1852 | evt void DwellStart=2016(int position) | |
1853 | evt void DwellEnd=2017(int position) | |
a834585d | 1854 | evt void Zoom=2018(void) |
d134f170 | 1855 | |
d25f5fbb | 1856 | cat Deprecated |
1a2fb4cd | 1857 | |
a834585d RD |
1858 | # CARET_POLICY changed in 1.47 |
1859 | fun void SetCaretPolicy=2369(int caretPolicy, int caretSlop) | |
1860 | val CARET_CENTER=0x02 | |
1861 | val CARET_XEVEN=0x08 | |
1862 | val CARET_XJUMPS=0x10 | |
1863 | ||
1a2fb4cd RD |
1864 | # The old name for SCN_UPDATEUI |
1865 | val SCN_CHECKBRACE=2007 | |
1866 | evt void PosChanged=2012(int position) | |
a834585d | 1867 |