Update Scintilla to 3.5.0 pre-release
[geany-mirror.git] / scintilla / include / Scintilla.iface
blobec047f2d499b2e85c474c7bdff713380c4675d3e
1 ## First line may be used for shbang
3 ## This file defines the interface to Scintilla
5 ## Copyright 2000-2003 by Neil Hodgson <neilh@scintilla.org>
6 ## The License.txt file describes the conditions under which this software may be distributed.
8 ## A line starting with ## is a pure comment and should be stripped by readers.
9 ## A line starting with #! is for future shbang use
10 ## A line starting with # followed by a space is a documentation comment and refers
11 ## to the next feature definition.
13 ## Each feature is defined by a line starting with fun, get, set, val or evt.
14 ##     cat -> start a category
15 ##     fun -> a function
16 ##     get -> a property get function
17 ##     set -> a property set function
18 ##     val -> definition of a constant
19 ##     evt -> an event
20 ##     enu -> associate an enumeration with a set of vals with a prefix
21 ##     lex -> associate a lexer with the lexical classes it produces
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 ## where <ws> stands for white space.
30 ## param may be empty (null value) or is <paramType><ws><paramName>[=<value>]
31 ## Additional white space is allowed between elements.
32 ## The syntax for evt is <featureType><ws><returnType><ws><name>[=<number]([<param>[,<param>]*])
33 ## Feature names that contain an underscore are defined by Windows, so in these
34 ## cases, using the Windows definition is preferred where available.
35 ## The feature numbers are stable so features will not be renumbered.
36 ## Features may be removed but they will go through a period of deprecation
37 ## before removal which is signalled by moving them into the Deprecated category.
39 ## enu has the syntax enu<ws><enumeration>=<prefix>[<ws><prefix>]* where all the val
40 ## features in this file starting with a given <prefix> are considered part of the
41 ## enumeration.
43 ## lex has the syntax lex<ws><name>=<lexerVal><ws><prefix>[<ws><prefix>]*
44 ## where name is a reasonably capitalised (Python, XML) identifier or UI name,
45 ## lexerVal is the val used to specify the lexer, and the list of prefixes is similar
46 ## to enu. The name may not be the same as that used within the lexer so the lexerVal
47 ## should be used to tie these entities together.
49 ## Types:
50 ##     void
51 ##     int
52 ##     bool -> integer, 1=true, 0=false
53 ##     position -> integer position in a document
54 ##     colour -> colour integer containing red, green and blue bytes.
55 ##     string -> pointer to const character
56 ##     stringresult -> pointer to character, NULL-> return size of result
57 ##     cells -> pointer to array of cells, each cell containing a style byte and character byte
58 ##     textrange -> range of a min and a max position with an output string
59 ##     findtext -> searchrange, text -> foundposition
60 ##     keymod -> integer containing key in low half and modifiers in high half
61 ##     formatrange
62 ## Types no longer used:
63 ##     findtextex -> searchrange
64 ##     charrange -> range of a min and a max position
65 ##     charrangeresult -> like charrange, but output param
66 ##     countedstring
67 ##     point -> x,y
68 ##     pointresult  -> like point, but output param
69 ##     rectangle -> left,top,right,bottom
70 ## Client code should ignore definitions containing types it does not understand, except
71 ## for possibly #defining the constants
73 ## Line numbers and positions start at 0.
74 ## String arguments may contain NUL ('\0') characters where the calls provide a length
75 ## argument and retrieve NUL characters. All retrieved strings except for those retrieved
76 ## by GetLine also have a NUL appended but client code should calculate the size that
77 ## will be returned rather than relying upon the NUL whenever possible. Allow for the
78 ## extra NUL character when allocating buffers. The size to allocate for a stringresult
79 ## can be determined by calling with a NULL (0) pointer.
81 cat Basics
83 ################################################
84 ## For Scintilla.h
85 val INVALID_POSITION=-1
86 # Define start of Scintilla messages to be greater than all Windows edit (EM_*) messages
87 # as many EM_ messages can be used although that use is deprecated.
88 val SCI_START=2000
89 val SCI_OPTIONAL_START=3000
90 val SCI_LEXER_START=4000
92 # Add text to the document at current position.
93 fun void AddText=2001(int length, string text)
95 # Add array of cells to document.
96 fun void AddStyledText=2002(int length, cells c)
98 # Insert string at a position.
99 fun void InsertText=2003(position pos, string text)
101 # Change the text that is being inserted in response to SC_MOD_INSERTCHECK
102 fun void ChangeInsertion=2672(int length, string text)
104 # Delete all text in the document.
105 fun void ClearAll=2004(,)
107 # Delete a range of text in the document.
108 fun void DeleteRange=2645(position pos, int deleteLength)
110 # Set all style bytes to 0, remove all folding information.
111 fun void ClearDocumentStyle=2005(,)
113 # Returns the number of bytes in the document.
114 get int GetLength=2006(,)
116 # Returns the character byte at the position.
117 get int GetCharAt=2007(position pos,)
119 # Returns the position of the caret.
120 get position GetCurrentPos=2008(,)
122 # Returns the position of the opposite end of the selection to the caret.
123 get position GetAnchor=2009(,)
125 # Returns the style byte at the position.
126 get int GetStyleAt=2010(position pos,)
128 # Redoes the next action on the undo history.
129 fun void Redo=2011(,)
131 # Choose between collecting actions into the undo
132 # history and discarding them.
133 set void SetUndoCollection=2012(bool collectUndo,)
135 # Select all the text in the document.
136 fun void SelectAll=2013(,)
138 # Remember the current position in the undo history as the position
139 # at which the document was saved.
140 fun void SetSavePoint=2014(,)
142 # Retrieve a buffer of cells.
143 # Returns the number of bytes in the buffer not including terminating NULs.
144 fun int GetStyledText=2015(, textrange tr)
146 # Are there any redoable actions in the undo history?
147 fun bool CanRedo=2016(,)
149 # Retrieve the line number at which a particular marker is located.
150 fun int MarkerLineFromHandle=2017(int handle,)
152 # Delete a marker.
153 fun void MarkerDeleteHandle=2018(int handle,)
155 # Is undo history being collected?
156 get bool GetUndoCollection=2019(,)
158 enu WhiteSpace=SCWS_
159 val SCWS_INVISIBLE=0
160 val SCWS_VISIBLEALWAYS=1
161 val SCWS_VISIBLEAFTERINDENT=2
163 # Are white space characters currently visible?
164 # Returns one of SCWS_* constants.
165 get int GetViewWS=2020(,)
167 # Make white space characters invisible, always visible or visible outside indentation.
168 set void SetViewWS=2021(int viewWS,)
170 # Find the position from a point within the window.
171 fun position PositionFromPoint=2022(int x, int y)
173 # Find the position from a point within the window but return
174 # INVALID_POSITION if not close to text.
175 fun position PositionFromPointClose=2023(int x, int y)
177 # Set caret to start of a line and ensure it is visible.
178 fun void GotoLine=2024(int line,)
180 # Set caret to a position and ensure it is visible.
181 fun void GotoPos=2025(position pos,)
183 # Set the selection anchor to a position. The anchor is the opposite
184 # end of the selection from the caret.
185 set void SetAnchor=2026(position posAnchor,)
187 # Retrieve the text of the line containing the caret.
188 # Returns the index of the caret on the line.
189 fun int GetCurLine=2027(int length, stringresult text)
191 # Retrieve the position of the last correctly styled character.
192 get position GetEndStyled=2028(,)
194 enu EndOfLine=SC_EOL_
195 val SC_EOL_CRLF=0
196 val SC_EOL_CR=1
197 val SC_EOL_LF=2
199 # Convert all line endings in the document to one mode.
200 fun void ConvertEOLs=2029(int eolMode,)
202 # Retrieve the current end of line mode - one of CRLF, CR, or LF.
203 get int GetEOLMode=2030(,)
205 # Set the current end of line mode.
206 set void SetEOLMode=2031(int eolMode,)
208 # Set the current styling position to pos and the styling mask to mask.
209 # The styling mask can be used to protect some bits in each styling byte from modification.
210 fun void StartStyling=2032(position pos, int mask)
212 # Change style from current styling position for length characters to a style
213 # and move the current styling position to after this newly styled segment.
214 fun void SetStyling=2033(int length, int style)
216 # Is drawing done first into a buffer or direct to the screen?
217 get bool GetBufferedDraw=2034(,)
219 # If drawing is buffered then each line of text is drawn into a bitmap buffer
220 # before drawing it to the screen to avoid flicker.
221 set void SetBufferedDraw=2035(bool buffered,)
223 # Change the visible size of a tab to be a multiple of the width of a space character.
224 set void SetTabWidth=2036(int tabWidth,)
226 # Retrieve the visible size of a tab.
227 get int GetTabWidth=2121(,)
229 # Clear explicit tabstops on a line.
230 fun void ClearTabStops=2675(int line,)
232 # Add an explicit tab stop for a line.
233 fun void AddTabStop=2676(int line, int x)
235 # Find the next explicit tab stop position on a line after a position.
236 fun int GetNextTabStop=2677(int line, int x)
238 # The SC_CP_UTF8 value can be used to enter Unicode mode.
239 # This is the same value as CP_UTF8 in Windows
240 val SC_CP_UTF8=65001
242 # Set the code page used to interpret the bytes of the document as characters.
243 # The SC_CP_UTF8 value can be used to enter Unicode mode.
244 set void SetCodePage=2037(int codePage,)
246 enu MarkerSymbol=SC_MARK_
247 val MARKER_MAX=31
248 val SC_MARK_CIRCLE=0
249 val SC_MARK_ROUNDRECT=1
250 val SC_MARK_ARROW=2
251 val SC_MARK_SMALLRECT=3
252 val SC_MARK_SHORTARROW=4
253 val SC_MARK_EMPTY=5
254 val SC_MARK_ARROWDOWN=6
255 val SC_MARK_MINUS=7
256 val SC_MARK_PLUS=8
258 # Shapes used for outlining column.
259 val SC_MARK_VLINE=9
260 val SC_MARK_LCORNER=10
261 val SC_MARK_TCORNER=11
262 val SC_MARK_BOXPLUS=12
263 val SC_MARK_BOXPLUSCONNECTED=13
264 val SC_MARK_BOXMINUS=14
265 val SC_MARK_BOXMINUSCONNECTED=15
266 val SC_MARK_LCORNERCURVE=16
267 val SC_MARK_TCORNERCURVE=17
268 val SC_MARK_CIRCLEPLUS=18
269 val SC_MARK_CIRCLEPLUSCONNECTED=19
270 val SC_MARK_CIRCLEMINUS=20
271 val SC_MARK_CIRCLEMINUSCONNECTED=21
273 # Invisible mark that only sets the line background colour.
274 val SC_MARK_BACKGROUND=22
275 val SC_MARK_DOTDOTDOT=23
276 val SC_MARK_ARROWS=24
277 val SC_MARK_PIXMAP=25
278 val SC_MARK_FULLRECT=26
279 val SC_MARK_LEFTRECT=27
280 val SC_MARK_AVAILABLE=28
281 val SC_MARK_UNDERLINE=29
282 val SC_MARK_RGBAIMAGE=30
283 val SC_MARK_BOOKMARK=31
285 val SC_MARK_CHARACTER=10000
287 enu MarkerOutline=SC_MARKNUM_
288 # Markers used for outlining column.
289 val SC_MARKNUM_FOLDEREND=25
290 val SC_MARKNUM_FOLDEROPENMID=26
291 val SC_MARKNUM_FOLDERMIDTAIL=27
292 val SC_MARKNUM_FOLDERTAIL=28
293 val SC_MARKNUM_FOLDERSUB=29
294 val SC_MARKNUM_FOLDER=30
295 val SC_MARKNUM_FOLDEROPEN=31
297 val SC_MASK_FOLDERS=0xFE000000
299 # Set the symbol used for a particular marker number.
300 fun void MarkerDefine=2040(int markerNumber, int markerSymbol)
302 # Set the foreground colour used for a particular marker number.
303 set void MarkerSetFore=2041(int markerNumber, colour fore)
305 # Set the background colour used for a particular marker number.
306 set void MarkerSetBack=2042(int markerNumber, colour back)
308 # Set the background colour used for a particular marker number when its folding block is selected.
309 set void MarkerSetBackSelected=2292(int markerNumber, colour back)
311 # Enable/disable highlight for current folding bloc (smallest one that contains the caret)
312 fun void MarkerEnableHighlight=2293(bool enabled,)
314 # Add a marker to a line, returning an ID which can be used to find or delete the marker.
315 fun int MarkerAdd=2043(int line, int markerNumber)
317 # Delete a marker from a line.
318 fun void MarkerDelete=2044(int line, int markerNumber)
320 # Delete all markers with a particular number from all lines.
321 fun void MarkerDeleteAll=2045(int markerNumber,)
323 # Get a bit mask of all the markers set on a line.
324 fun int MarkerGet=2046(int line,)
326 # Find the next line at or after lineStart that includes a marker in mask.
327 # Return -1 when no more lines.
328 fun int MarkerNext=2047(int lineStart, int markerMask)
330 # Find the previous line before lineStart that includes a marker in mask.
331 fun int MarkerPrevious=2048(int lineStart, int markerMask)
333 # Define a marker from a pixmap.
334 fun void MarkerDefinePixmap=2049(int markerNumber, string pixmap)
336 # Add a set of markers to a line.
337 fun void MarkerAddSet=2466(int line, int set)
339 # Set the alpha used for a marker that is drawn in the text area, not the margin.
340 set void MarkerSetAlpha=2476(int markerNumber, int alpha)
342 val SC_MAX_MARGIN=4
344 enu MarginType=SC_MARGIN_
345 val SC_MARGIN_SYMBOL=0
346 val SC_MARGIN_NUMBER=1
347 val SC_MARGIN_BACK=2
348 val SC_MARGIN_FORE=3
349 val SC_MARGIN_TEXT=4
350 val SC_MARGIN_RTEXT=5
352 # Set a margin to be either numeric or symbolic.
353 set void SetMarginTypeN=2240(int margin, int marginType)
355 # Retrieve the type of a margin.
356 get int GetMarginTypeN=2241(int margin,)
358 # Set the width of a margin to a width expressed in pixels.
359 set void SetMarginWidthN=2242(int margin, int pixelWidth)
361 # Retrieve the width of a margin in pixels.
362 get int GetMarginWidthN=2243(int margin,)
364 # Set a mask that determines which markers are displayed in a margin.
365 set void SetMarginMaskN=2244(int margin, int mask)
367 # Retrieve the marker mask of a margin.
368 get int GetMarginMaskN=2245(int margin,)
370 # Make a margin sensitive or insensitive to mouse clicks.
371 set void SetMarginSensitiveN=2246(int margin, bool sensitive)
373 # Retrieve the mouse click sensitivity of a margin.
374 get bool GetMarginSensitiveN=2247(int margin,)
376 # Set the cursor shown when the mouse is inside a margin.
377 set void SetMarginCursorN=2248(int margin, int cursor)
379 # Retrieve the cursor shown in a margin.
380 get int GetMarginCursorN=2249(int margin,)
382 # Styles in range 32..38 are predefined for parts of the UI and are not used as normal styles.
383 # Style 39 is for future use.
384 enu StylesCommon=STYLE_
385 val STYLE_DEFAULT=32
386 val STYLE_LINENUMBER=33
387 val STYLE_BRACELIGHT=34
388 val STYLE_BRACEBAD=35
389 val STYLE_CONTROLCHAR=36
390 val STYLE_INDENTGUIDE=37
391 val STYLE_CALLTIP=38
392 val STYLE_LASTPREDEFINED=39
393 val STYLE_MAX=255
395 # Character set identifiers are used in StyleSetCharacterSet.
396 # The values are the same as the Windows *_CHARSET values.
397 enu CharacterSet=SC_CHARSET_
398 val SC_CHARSET_ANSI=0
399 val SC_CHARSET_DEFAULT=1
400 val SC_CHARSET_BALTIC=186
401 val SC_CHARSET_CHINESEBIG5=136
402 val SC_CHARSET_EASTEUROPE=238
403 val SC_CHARSET_GB2312=134
404 val SC_CHARSET_GREEK=161
405 val SC_CHARSET_HANGUL=129
406 val SC_CHARSET_MAC=77
407 val SC_CHARSET_OEM=255
408 val SC_CHARSET_RUSSIAN=204
409 val SC_CHARSET_CYRILLIC=1251
410 val SC_CHARSET_SHIFTJIS=128
411 val SC_CHARSET_SYMBOL=2
412 val SC_CHARSET_TURKISH=162
413 val SC_CHARSET_JOHAB=130
414 val SC_CHARSET_HEBREW=177
415 val SC_CHARSET_ARABIC=178
416 val SC_CHARSET_VIETNAMESE=163
417 val SC_CHARSET_THAI=222
418 val SC_CHARSET_8859_15=1000
420 # Clear all the styles and make equivalent to the global default style.
421 fun void StyleClearAll=2050(,)
423 # Set the foreground colour of a style.
424 set void StyleSetFore=2051(int style, colour fore)
426 # Set the background colour of a style.
427 set void StyleSetBack=2052(int style, colour back)
429 # Set a style to be bold or not.
430 set void StyleSetBold=2053(int style, bool bold)
432 # Set a style to be italic or not.
433 set void StyleSetItalic=2054(int style, bool italic)
435 # Set the size of characters of a style.
436 set void StyleSetSize=2055(int style, int sizePoints)
438 # Set the font of a style.
439 set void StyleSetFont=2056(int style, string fontName)
441 # Set a style to have its end of line filled or not.
442 set void StyleSetEOLFilled=2057(int style, bool filled)
444 # Reset the default style to its state at startup
445 fun void StyleResetDefault=2058(,)
447 # Set a style to be underlined or not.
448 set void StyleSetUnderline=2059(int style, bool underline)
450 enu CaseVisible=SC_CASE_
451 val SC_CASE_MIXED=0
452 val SC_CASE_UPPER=1
453 val SC_CASE_LOWER=2
455 # Get the foreground colour of a style.
456 get colour StyleGetFore=2481(int style,)
458 # Get the background colour of a style.
459 get colour StyleGetBack=2482(int style,)
461 # Get is a style bold or not.
462 get bool StyleGetBold=2483(int style,)
464 # Get is a style italic or not.
465 get bool StyleGetItalic=2484(int style,)
467 # Get the size of characters of a style.
468 get int StyleGetSize=2485(int style,)
470 # Get the font of a style.
471 # Returns the length of the fontName
472 get int StyleGetFont=2486(int style, stringresult fontName)
474 # Get is a style to have its end of line filled or not.
475 get bool StyleGetEOLFilled=2487(int style,)
477 # Get is a style underlined or not.
478 get bool StyleGetUnderline=2488(int style,)
480 # Get is a style mixed case, or to force upper or lower case.
481 get int StyleGetCase=2489(int style,)
483 # Get the character get of the font in a style.
484 get int StyleGetCharacterSet=2490(int style,)
486 # Get is a style visible or not.
487 get bool StyleGetVisible=2491(int style,)
489 # Get is a style changeable or not (read only).
490 # Experimental feature, currently buggy.
491 get bool StyleGetChangeable=2492(int style,)
493 # Get is a style a hotspot or not.
494 get bool StyleGetHotSpot=2493(int style,)
496 # Set a style to be mixed case, or to force upper or lower case.
497 set void StyleSetCase=2060(int style, int caseForce)
499 val SC_FONT_SIZE_MULTIPLIER=100
501 # Set the size of characters of a style. Size is in points multiplied by 100.
502 set void StyleSetSizeFractional=2061(int style, int caseForce)
504 # Get the size of characters of a style in points multiplied by 100
505 get int StyleGetSizeFractional=2062(int style,)
507 enu FontWeight=SC_WEIGHT_
508 val SC_WEIGHT_NORMAL=400
509 val SC_WEIGHT_SEMIBOLD=600
510 val SC_WEIGHT_BOLD=700
512 # Set the weight of characters of a style.
513 set void StyleSetWeight=2063(int style, int weight)
515 # Get the weight of characters of a style.
516 get int StyleGetWeight=2064(int style,)
518 # Set the character set of the font in a style.
519 set void StyleSetCharacterSet=2066(int style, int characterSet)
521 # Set a style to be a hotspot or not.
522 set void StyleSetHotSpot=2409(int style, bool hotspot)
524 # Set the foreground colour of the main and additional selections and whether to use this setting.
525 fun void SetSelFore=2067(bool useSetting, colour fore)
527 # Set the background colour of the main and additional selections and whether to use this setting.
528 fun void SetSelBack=2068(bool useSetting, colour back)
530 # Get the alpha of the selection.
531 get int GetSelAlpha=2477(,)
533 # Set the alpha of the selection.
534 set void SetSelAlpha=2478(int alpha,)
536 # Is the selection end of line filled?
537 get bool GetSelEOLFilled=2479(,)
539 # Set the selection to have its end of line filled or not.
540 set void SetSelEOLFilled=2480(bool filled,)
542 # Set the foreground colour of the caret.
543 set void SetCaretFore=2069(colour fore,)
545 # When key+modifier combination km is pressed perform msg.
546 fun void AssignCmdKey=2070(keymod km, int msg)
548 # When key+modifier combination km is pressed do nothing.
549 fun void ClearCmdKey=2071(keymod km,)
551 # Drop all key mappings.
552 fun void ClearAllCmdKeys=2072(,)
554 # Set the styles for a segment of the document.
555 fun void SetStylingEx=2073(int length, string styles)
557 # Set a style to be visible or not.
558 set void StyleSetVisible=2074(int style, bool visible)
560 # Get the time in milliseconds that the caret is on and off.
561 get int GetCaretPeriod=2075(,)
563 # Get the time in milliseconds that the caret is on and off. 0 = steady on.
564 set void SetCaretPeriod=2076(int periodMilliseconds,)
566 # Set the set of characters making up words for when moving or selecting by word.
567 # First sets defaults like SetCharsDefault.
568 set void SetWordChars=2077(, string characters)
570 # Get the set of characters making up words for when moving or selecting by word.
571 # Retuns the number of characters
572 get int GetWordChars=2646(, stringresult characters)
574 # Start a sequence of actions that is undone and redone as a unit.
575 # May be nested.
576 fun void BeginUndoAction=2078(,)
578 # End a sequence of actions that is undone and redone as a unit.
579 fun void EndUndoAction=2079(,)
581 # Indicator style enumeration and some constants
582 enu IndicatorStyle=INDIC_
583 val INDIC_PLAIN=0
584 val INDIC_SQUIGGLE=1
585 val INDIC_TT=2
586 val INDIC_DIAGONAL=3
587 val INDIC_STRIKE=4
588 val INDIC_HIDDEN=5
589 val INDIC_BOX=6
590 val INDIC_ROUNDBOX=7
591 val INDIC_STRAIGHTBOX=8
592 val INDIC_DASH=9
593 val INDIC_DOTS=10
594 val INDIC_SQUIGGLELOW=11
595 val INDIC_DOTBOX=12
596 val INDIC_SQUIGGLEPIXMAP=13
597 val INDIC_COMPOSITIONTHICK=14
598 val INDIC_MAX=31
599 val INDIC_CONTAINER=8
600 val INDIC0_MASK=0x20
601 val INDIC1_MASK=0x40
602 val INDIC2_MASK=0x80
603 val INDICS_MASK=0xE0
605 # Set an indicator to plain, squiggle or TT.
606 set void IndicSetStyle=2080(int indic, int style)
608 # Retrieve the style of an indicator.
609 get int IndicGetStyle=2081(int indic,)
611 # Set the foreground colour of an indicator.
612 set void IndicSetFore=2082(int indic, colour fore)
614 # Retrieve the foreground colour of an indicator.
615 get colour IndicGetFore=2083(int indic,)
617 # Set an indicator to draw under text or over(default).
618 set void IndicSetUnder=2510(int indic, bool under)
620 # Retrieve whether indicator drawn under or over text.
621 get bool IndicGetUnder=2511(int indic,)
623 # Set the foreground colour of all whitespace and whether to use this setting.
624 fun void SetWhitespaceFore=2084(bool useSetting, colour fore)
626 # Set the background colour of all whitespace and whether to use this setting.
627 fun void SetWhitespaceBack=2085(bool useSetting, colour back)
629 # Set the size of the dots used to mark space characters.
630 set void SetWhitespaceSize=2086(int size,)
632 # Get the size of the dots used to mark space characters.
633 get int GetWhitespaceSize=2087(,)
635 # Divide each styling byte into lexical class bits (default: 5) and indicator
636 # bits (default: 3). If a lexer requires more than 32 lexical states, then this
637 # is used to expand the possible states.
638 set void SetStyleBits=2090(int bits,)
640 # Retrieve number of bits in style bytes used to hold the lexical state.
641 get int GetStyleBits=2091(,)
643 # Used to hold extra styling information for each line.
644 set void SetLineState=2092(int line, int state)
646 # Retrieve the extra styling information for a line.
647 get int GetLineState=2093(int line,)
649 # Retrieve the last line number that has line state.
650 get int GetMaxLineState=2094(,)
652 # Is the background of the line containing the caret in a different colour?
653 get bool GetCaretLineVisible=2095(,)
655 # Display the background of the line containing the caret in a different colour.
656 set void SetCaretLineVisible=2096(bool show,)
658 # Get the colour of the background of the line containing the caret.
659 get colour GetCaretLineBack=2097(,)
661 # Set the colour of the background of the line containing the caret.
662 set void SetCaretLineBack=2098(colour back,)
664 # Set a style to be changeable or not (read only).
665 # Experimental feature, currently buggy.
666 set void StyleSetChangeable=2099(int style, bool changeable)
668 # Display a auto-completion list.
669 # The lenEntered parameter indicates how many characters before
670 # the caret should be used to provide context.
671 fun void AutoCShow=2100(int lenEntered, string itemList)
673 # Remove the auto-completion list from the screen.
674 fun void AutoCCancel=2101(,)
676 # Is there an auto-completion list visible?
677 fun bool AutoCActive=2102(,)
679 # Retrieve the position of the caret when the auto-completion list was displayed.
680 fun position AutoCPosStart=2103(,)
682 # User has selected an item so remove the list and insert the selection.
683 fun void AutoCComplete=2104(,)
685 # Define a set of character that when typed cancel the auto-completion list.
686 fun void AutoCStops=2105(, string characterSet)
688 # Change the separator character in the string setting up an auto-completion list.
689 # Default is space but can be changed if items contain space.
690 set void AutoCSetSeparator=2106(int separatorCharacter,)
692 # Retrieve the auto-completion list separator character.
693 get int AutoCGetSeparator=2107(,)
695 # Select the item in the auto-completion list that starts with a string.
696 fun void AutoCSelect=2108(, string text)
698 # Should the auto-completion list be cancelled if the user backspaces to a
699 # position before where the box was created.
700 set void AutoCSetCancelAtStart=2110(bool cancel,)
702 # Retrieve whether auto-completion cancelled by backspacing before start.
703 get bool AutoCGetCancelAtStart=2111(,)
705 # Define a set of characters that when typed will cause the autocompletion to
706 # choose the selected item.
707 set void AutoCSetFillUps=2112(, string characterSet)
709 # Should a single item auto-completion list automatically choose the item.
710 set void AutoCSetChooseSingle=2113(bool chooseSingle,)
712 # Retrieve whether a single item auto-completion list automatically choose the item.
713 get bool AutoCGetChooseSingle=2114(,)
715 # Set whether case is significant when performing auto-completion searches.
716 set void AutoCSetIgnoreCase=2115(bool ignoreCase,)
718 # Retrieve state of ignore case flag.
719 get bool AutoCGetIgnoreCase=2116(,)
721 # Display a list of strings and send notification when user chooses one.
722 fun void UserListShow=2117(int listType, string itemList)
724 # Set whether or not autocompletion is hidden automatically when nothing matches.
725 set void AutoCSetAutoHide=2118(bool autoHide,)
727 # Retrieve whether or not autocompletion is hidden automatically when nothing matches.
728 get bool AutoCGetAutoHide=2119(,)
730 # Set whether or not autocompletion deletes any word characters
731 # after the inserted text upon completion.
732 set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,)
734 # Retrieve whether or not autocompletion deletes any word characters
735 # after the inserted text upon completion.
736 get bool AutoCGetDropRestOfWord=2271(,)
738 # Register an XPM image for use in autocompletion lists.
739 fun void RegisterImage=2405(int type, string xpmData)
741 # Clear all the registered XPM images.
742 fun void ClearRegisteredImages=2408(,)
744 # Retrieve the auto-completion list type-separator character.
745 get int AutoCGetTypeSeparator=2285(,)
747 # Change the type-separator character in the string setting up an auto-completion list.
748 # Default is '?' but can be changed if items contain '?'.
749 set void AutoCSetTypeSeparator=2286(int separatorCharacter,)
751 # Set the maximum width, in characters, of auto-completion and user lists.
752 # Set to 0 to autosize to fit longest item, which is the default.
753 set void AutoCSetMaxWidth=2208(int characterCount,)
755 # Get the maximum width, in characters, of auto-completion and user lists.
756 get int AutoCGetMaxWidth=2209(,)
758 # Set the maximum height, in rows, of auto-completion and user lists.
759 # The default is 5 rows.
760 set void AutoCSetMaxHeight=2210(int rowCount,)
762 # Set the maximum height, in rows, of auto-completion and user lists.
763 get int AutoCGetMaxHeight=2211(,)
765 # Set the number of spaces used for one level of indentation.
766 set void SetIndent=2122(int indentSize,)
768 # Retrieve indentation size.
769 get int GetIndent=2123(,)
771 # Indentation will only use space characters if useTabs is false, otherwise
772 # it will use a combination of tabs and spaces.
773 set void SetUseTabs=2124(bool useTabs,)
775 # Retrieve whether tabs will be used in indentation.
776 get bool GetUseTabs=2125(,)
778 # Change the indentation of a line to a number of columns.
779 set void SetLineIndentation=2126(int line, int indentSize)
781 # Retrieve the number of columns that a line is indented.
782 get int GetLineIndentation=2127(int line,)
784 # Retrieve the position before the first non indentation character on a line.
785 get position GetLineIndentPosition=2128(int line,)
787 # Retrieve the column number of a position, taking tab width into account.
788 get int GetColumn=2129(position pos,)
790 # Count characters between two positions.
791 fun int CountCharacters=2633(int startPos, int endPos)
793 # Show or hide the horizontal scroll bar.
794 set void SetHScrollBar=2130(bool show,)
795 # Is the horizontal scroll bar visible?
796 get bool GetHScrollBar=2131(,)
798 enu IndentView=SC_IV_
799 val SC_IV_NONE=0
800 val SC_IV_REAL=1
801 val SC_IV_LOOKFORWARD=2
802 val SC_IV_LOOKBOTH=3
804 # Show or hide indentation guides.
805 set void SetIndentationGuides=2132(int indentView,)
807 # Are the indentation guides visible?
808 get int GetIndentationGuides=2133(,)
810 # Set the highlighted indentation guide column.
811 # 0 = no highlighted guide.
812 set void SetHighlightGuide=2134(int column,)
814 # Get the highlighted indentation guide column.
815 get int GetHighlightGuide=2135(,)
817 # Get the position after the last visible characters on a line.
818 get position GetLineEndPosition=2136(int line,)
820 # Get the code page used to interpret the bytes of the document as characters.
821 get int GetCodePage=2137(,)
823 # Get the foreground colour of the caret.
824 get colour GetCaretFore=2138(,)
826 # In read-only mode?
827 get bool GetReadOnly=2140(,)
829 # Sets the position of the caret.
830 set void SetCurrentPos=2141(position pos,)
832 # Sets the position that starts the selection - this becomes the anchor.
833 set void SetSelectionStart=2142(position pos,)
835 # Returns the position at the start of the selection.
836 get position GetSelectionStart=2143(,)
838 # Sets the position that ends the selection - this becomes the currentPosition.
839 set void SetSelectionEnd=2144(position pos,)
841 # Returns the position at the end of the selection.
842 get position GetSelectionEnd=2145(,)
844 # Set caret to a position, while removing any existing selection.
845 fun void SetEmptySelection=2556(position pos,)
847 # Sets the print magnification added to the point size of each style for printing.
848 set void SetPrintMagnification=2146(int magnification,)
850 # Returns the print magnification.
851 get int GetPrintMagnification=2147(,)
853 enu PrintOption=SC_PRINT_
854 # PrintColourMode - use same colours as screen.
855 val SC_PRINT_NORMAL=0
856 # PrintColourMode - invert the light value of each style for printing.
857 val SC_PRINT_INVERTLIGHT=1
858 # PrintColourMode - force black text on white background for printing.
859 val SC_PRINT_BLACKONWHITE=2
860 # PrintColourMode - text stays coloured, but all background is forced to be white for printing.
861 val SC_PRINT_COLOURONWHITE=3
862 # PrintColourMode - only the default-background is forced to be white for printing.
863 val SC_PRINT_COLOURONWHITEDEFAULTBG=4
865 # Modify colours when printing for clearer printed text.
866 set void SetPrintColourMode=2148(int mode,)
868 # Returns the print colour mode.
869 get int GetPrintColourMode=2149(,)
871 enu FindOption=SCFIND_
872 val SCFIND_WHOLEWORD=0x2
873 val SCFIND_MATCHCASE=0x4
874 val SCFIND_WORDSTART=0x00100000
875 val SCFIND_REGEXP=0x00200000
876 val SCFIND_POSIX=0x00400000
878 # Find some text in the document.
879 fun position FindText=2150(int flags, findtext ft)
881 # On Windows, will draw the document into a display context such as a printer.
882 fun position FormatRange=2151(bool draw, formatrange fr)
884 # Retrieve the display line at the top of the display.
885 get int GetFirstVisibleLine=2152(,)
887 # Retrieve the contents of a line.
888 # Returns the length of the line.
889 fun int GetLine=2153(int line, stringresult text)
891 # Returns the number of lines in the document. There is always at least one.
892 get int GetLineCount=2154(,)
894 # Sets the size in pixels of the left margin.
895 set void SetMarginLeft=2155(, int pixelWidth)
897 # Returns the size in pixels of the left margin.
898 get int GetMarginLeft=2156(,)
900 # Sets the size in pixels of the right margin.
901 set void SetMarginRight=2157(, int pixelWidth)
903 # Returns the size in pixels of the right margin.
904 get int GetMarginRight=2158(,)
906 # Is the document different from when it was last saved?
907 get bool GetModify=2159(,)
909 # Select a range of text.
910 fun void SetSel=2160(position start, position end)
912 # Retrieve the selected text.
913 # Return the length of the text.
914 fun int GetSelText=2161(, stringresult text)
916 # Retrieve a range of text.
917 # Return the length of the text.
918 fun int GetTextRange=2162(, textrange tr)
920 # Draw the selection in normal style or with selection highlighted.
921 fun void HideSelection=2163(bool normal,)
923 # Retrieve the x value of the point in the window where a position is displayed.
924 fun int PointXFromPosition=2164(, position pos)
926 # Retrieve the y value of the point in the window where a position is displayed.
927 fun int PointYFromPosition=2165(, position pos)
929 # Retrieve the line containing a position.
930 fun int LineFromPosition=2166(position pos,)
932 # Retrieve the position at the start of a line.
933 fun position PositionFromLine=2167(int line,)
935 # Scroll horizontally and vertically.
936 fun void LineScroll=2168(int columns, int lines)
938 # Ensure the caret is visible.
939 fun void ScrollCaret=2169(,)
941 # Scroll the argument positions and the range between them into view giving
942 # priority to the primary position then the secondary position.
943 # This may be used to make a search match visible.
944 fun void ScrollRange=2569(position secondary, position primary)
946 # Replace the selected text with the argument text.
947 fun void ReplaceSel=2170(, string text)
949 # Set to read only or read write.
950 set void SetReadOnly=2171(bool readOnly,)
952 # Null operation.
953 fun void Null=2172(,)
955 # Will a paste succeed?
956 fun bool CanPaste=2173(,)
958 # Are there any undoable actions in the undo history?
959 fun bool CanUndo=2174(,)
961 # Delete the undo history.
962 fun void EmptyUndoBuffer=2175(,)
964 # Undo one action in the undo history.
965 fun void Undo=2176(,)
967 # Cut the selection to the clipboard.
968 fun void Cut=2177(,)
970 # Copy the selection to the clipboard.
971 fun void Copy=2178(,)
973 # Paste the contents of the clipboard into the document replacing the selection.
974 fun void Paste=2179(,)
976 # Clear the selection.
977 fun void Clear=2180(,)
979 # Replace the contents of the document with the argument text.
980 fun void SetText=2181(, string text)
982 # Retrieve all the text in the document.
983 # Returns number of characters retrieved.
984 fun int GetText=2182(int length, stringresult text)
986 # Retrieve the number of characters in the document.
987 get int GetTextLength=2183(,)
989 # Retrieve a pointer to a function that processes messages for this Scintilla.
990 get int GetDirectFunction=2184(,)
992 # Retrieve a pointer value to use as the first argument when calling
993 # the function returned by GetDirectFunction.
994 get int GetDirectPointer=2185(,)
996 # Set to overtype (true) or insert mode.
997 set void SetOvertype=2186(bool overtype,)
999 # Returns true if overtype mode is active otherwise false is returned.
1000 get bool GetOvertype=2187(,)
1002 # Set the width of the insert mode caret.
1003 set void SetCaretWidth=2188(int pixelWidth,)
1005 # Returns the width of the insert mode caret.
1006 get int GetCaretWidth=2189(,)
1008 # Sets the position that starts the target which is used for updating the
1009 # document without affecting the scroll position.
1010 set void SetTargetStart=2190(position pos,)
1012 # Get the position that starts the target.
1013 get position GetTargetStart=2191(,)
1015 # Sets the position that ends the target which is used for updating the
1016 # document without affecting the scroll position.
1017 set void SetTargetEnd=2192(position pos,)
1019 # Get the position that ends the target.
1020 get position GetTargetEnd=2193(,)
1022 # Replace the target text with the argument text.
1023 # Text is counted so it can contain NULs.
1024 # Returns the length of the replacement text.
1025 fun int ReplaceTarget=2194(int length, string text)
1027 # Replace the target text with the argument text after \d processing.
1028 # Text is counted so it can contain NULs.
1029 # Looks for \d where d is between 1 and 9 and replaces these with the strings
1030 # matched in the last search operation which were surrounded by \( and \).
1031 # Returns the length of the replacement text including any change
1032 # caused by processing the \d patterns.
1033 fun int ReplaceTargetRE=2195(int length, string text)
1035 # Search for a counted string in the target and set the target to the found
1036 # range. Text is counted so it can contain NULs.
1037 # Returns length of range or -1 for failure in which case target is not moved.
1038 fun int SearchInTarget=2197(int length, string text)
1040 # Set the search flags used by SearchInTarget.
1041 set void SetSearchFlags=2198(int flags,)
1043 # Get the search flags used by SearchInTarget.
1044 get int GetSearchFlags=2199(,)
1046 # Show a call tip containing a definition near position pos.
1047 fun void CallTipShow=2200(position pos, string definition)
1049 # Remove the call tip from the screen.
1050 fun void CallTipCancel=2201(,)
1052 # Is there an active call tip?
1053 fun bool CallTipActive=2202(,)
1055 # Retrieve the position where the caret was before displaying the call tip.
1056 fun position CallTipPosStart=2203(,)
1058 # Set the start position in order to change when backspacing removes the calltip.
1059 set void CallTipSetPosStart=2214(int posStart,)
1061 # Highlight a segment of the definition.
1062 fun void CallTipSetHlt=2204(int start, int end)
1064 # Set the background colour for the call tip.
1065 set void CallTipSetBack=2205(colour back,)
1067 # Set the foreground colour for the call tip.
1068 set void CallTipSetFore=2206(colour fore,)
1070 # Set the foreground colour for the highlighted part of the call tip.
1071 set void CallTipSetForeHlt=2207(colour fore,)
1073 # Enable use of STYLE_CALLTIP and set call tip tab size in pixels.
1074 set void CallTipUseStyle=2212(int tabSize,)
1076 # Set position of calltip, above or below text.
1077 set void CallTipSetPosition=2213(bool above,)
1079 # Find the display line of a document line taking hidden lines into account.
1080 fun int VisibleFromDocLine=2220(int line,)
1082 # Find the document line of a display line taking hidden lines into account.
1083 fun int DocLineFromVisible=2221(int lineDisplay,)
1085 # The number of display lines needed to wrap a document line
1086 fun int WrapCount=2235(int line,)
1088 enu FoldLevel=SC_FOLDLEVEL
1089 val SC_FOLDLEVELBASE=0x400
1090 val SC_FOLDLEVELWHITEFLAG=0x1000
1091 val SC_FOLDLEVELHEADERFLAG=0x2000
1092 val SC_FOLDLEVELNUMBERMASK=0x0FFF
1094 # Set the fold level of a line.
1095 # This encodes an integer level along with flags indicating whether the
1096 # line is a header and whether it is effectively white space.
1097 set void SetFoldLevel=2222(int line, int level)
1099 # Retrieve the fold level of a line.
1100 get int GetFoldLevel=2223(int line,)
1102 # Find the last child line of a header line.
1103 get int GetLastChild=2224(int line, int level)
1105 # Find the parent line of a child line.
1106 get int GetFoldParent=2225(int line,)
1108 # Make a range of lines visible.
1109 fun void ShowLines=2226(int lineStart, int lineEnd)
1111 # Make a range of lines invisible.
1112 fun void HideLines=2227(int lineStart, int lineEnd)
1114 # Is a line visible?
1115 get bool GetLineVisible=2228(int line,)
1117 # Are all lines visible?
1118 get bool GetAllLinesVisible=2236(,)
1120 # Show the children of a header line.
1121 set void SetFoldExpanded=2229(int line, bool expanded)
1123 # Is a header line expanded?
1124 get bool GetFoldExpanded=2230(int line,)
1126 # Switch a header line between expanded and contracted.
1127 fun void ToggleFold=2231(int line,)
1129 enu FoldAction=SC_FOLDACTION
1130 val SC_FOLDACTION_CONTRACT=0
1131 val SC_FOLDACTION_EXPAND=1
1132 val SC_FOLDACTION_TOGGLE=2
1134 # Expand or contract a fold header.
1135 fun void FoldLine=2237(int line, int action)
1137 # Expand or contract a fold header and its children.
1138 fun void FoldChildren=2238(int line, int action)
1140 # Expand a fold header and all children. Use the level argument instead of the line's current level.
1141 fun void ExpandChildren=2239(int line, int level)
1143 # Expand or contract all fold headers.
1144 fun void FoldAll=2662(int action,)
1146 # Ensure a particular line is visible by expanding any header line hiding it.
1147 fun void EnsureVisible=2232(int line,)
1149 enu AutomaticFold=SC_AUTOMATICFOLD_
1150 val SC_AUTOMATICFOLD_SHOW=0x0001
1151 val SC_AUTOMATICFOLD_CLICK=0x0002
1152 val SC_AUTOMATICFOLD_CHANGE=0x0004
1154 # Set automatic folding behaviours.
1155 set void SetAutomaticFold=2663(int automaticFold,)
1157 # Get automatic folding behaviours.
1158 get int GetAutomaticFold=2664(,)
1160 enu FoldFlag=SC_FOLDFLAG_
1161 val SC_FOLDFLAG_LINEBEFORE_EXPANDED=0x0002
1162 val SC_FOLDFLAG_LINEBEFORE_CONTRACTED=0x0004
1163 val SC_FOLDFLAG_LINEAFTER_EXPANDED=0x0008
1164 val SC_FOLDFLAG_LINEAFTER_CONTRACTED=0x0010
1165 val SC_FOLDFLAG_LEVELNUMBERS=0x0040
1166 val SC_FOLDFLAG_LINESTATE=0x0080
1168 # Set some style options for folding.
1169 set void SetFoldFlags=2233(int flags,)
1171 # Ensure a particular line is visible by expanding any header line hiding it.
1172 # Use the currently set visibility policy to determine which range to display.
1173 fun void EnsureVisibleEnforcePolicy=2234(int line,)
1175 # Sets whether a tab pressed when caret is within indentation indents.
1176 set void SetTabIndents=2260(bool tabIndents,)
1178 # Does a tab pressed when caret is within indentation indent?
1179 get bool GetTabIndents=2261(,)
1181 # Sets whether a backspace pressed when caret is within indentation unindents.
1182 set void SetBackSpaceUnIndents=2262(bool bsUnIndents,)
1184 # Does a backspace pressed when caret is within indentation unindent?
1185 get bool GetBackSpaceUnIndents=2263(,)
1187 val SC_TIME_FOREVER=10000000
1189 # Sets the time the mouse must sit still to generate a mouse dwell event.
1190 set void SetMouseDwellTime=2264(int periodMilliseconds,)
1192 # Retrieve the time the mouse must sit still to generate a mouse dwell event.
1193 get int GetMouseDwellTime=2265(,)
1195 # Get position of start of word.
1196 fun int WordStartPosition=2266(position pos, bool onlyWordCharacters)
1198 # Get position of end of word.
1199 fun int WordEndPosition=2267(position pos, bool onlyWordCharacters)
1201 enu Wrap=SC_WRAP_
1202 val SC_WRAP_NONE=0
1203 val SC_WRAP_WORD=1
1204 val SC_WRAP_CHAR=2
1205 val SC_WRAP_WHITESPACE=3
1207 # Sets whether text is word wrapped.
1208 set void SetWrapMode=2268(int mode,)
1210 # Retrieve whether text is word wrapped.
1211 get int GetWrapMode=2269(,)
1213 enu WrapVisualFlag=SC_WRAPVISUALFLAG_
1214 val SC_WRAPVISUALFLAG_NONE=0x0000
1215 val SC_WRAPVISUALFLAG_END=0x0001
1216 val SC_WRAPVISUALFLAG_START=0x0002
1217 val SC_WRAPVISUALFLAG_MARGIN=0x0004
1219 # Set the display mode of visual flags for wrapped lines.
1220 set void SetWrapVisualFlags=2460(int wrapVisualFlags,)
1222 # Retrive the display mode of visual flags for wrapped lines.
1223 get int GetWrapVisualFlags=2461(,)
1225 enu WrapVisualLocation=SC_WRAPVISUALFLAGLOC_
1226 val SC_WRAPVISUALFLAGLOC_DEFAULT=0x0000
1227 val SC_WRAPVISUALFLAGLOC_END_BY_TEXT=0x0001
1228 val SC_WRAPVISUALFLAGLOC_START_BY_TEXT=0x0002
1230 # Set the location of visual flags for wrapped lines.
1231 set void SetWrapVisualFlagsLocation=2462(int wrapVisualFlagsLocation,)
1233 # Retrive the location of visual flags for wrapped lines.
1234 get int GetWrapVisualFlagsLocation=2463(,)
1236 # Set the start indent for wrapped lines.
1237 set void SetWrapStartIndent=2464(int indent,)
1239 # Retrive the start indent for wrapped lines.
1240 get int GetWrapStartIndent=2465(,)
1242 enu WrapIndentMode=SC_WRAPINDENT_
1243 val SC_WRAPINDENT_FIXED=0
1244 val SC_WRAPINDENT_SAME=1
1245 val SC_WRAPINDENT_INDENT=2
1247 # Sets how wrapped sublines are placed. Default is fixed.
1248 set void SetWrapIndentMode=2472(int mode,)
1250 # Retrieve how wrapped sublines are placed. Default is fixed.
1251 get int GetWrapIndentMode=2473(,)
1253 enu LineCache=SC_CACHE_
1254 val SC_CACHE_NONE=0
1255 val SC_CACHE_CARET=1
1256 val SC_CACHE_PAGE=2
1257 val SC_CACHE_DOCUMENT=3
1259 # Sets the degree of caching of layout information.
1260 set void SetLayoutCache=2272(int mode,)
1262 # Retrieve the degree of caching of layout information.
1263 get int GetLayoutCache=2273(,)
1265 # Sets the document width assumed for scrolling.
1266 set void SetScrollWidth=2274(int pixelWidth,)
1268 # Retrieve the document width assumed for scrolling.
1269 get int GetScrollWidth=2275(,)
1271 # Sets whether the maximum width line displayed is used to set scroll width.
1272 set void SetScrollWidthTracking=2516(bool tracking,)
1274 # Retrieve whether the scroll width tracks wide lines.
1275 get bool GetScrollWidthTracking=2517(,)
1277 # Measure the pixel width of some text in a particular style.
1278 # NUL terminated text argument.
1279 # Does not handle tab or control characters.
1280 fun int TextWidth=2276(int style, string text)
1282 # Sets the scroll range so that maximum scroll position has
1283 # the last line at the bottom of the view (default).
1284 # Setting this to false allows scrolling one page below the last line.
1285 set void SetEndAtLastLine=2277(bool endAtLastLine,)
1287 # Retrieve whether the maximum scroll position has the last
1288 # line at the bottom of the view.
1289 get bool GetEndAtLastLine=2278(,)
1291 # Retrieve the height of a particular line of text in pixels.
1292 fun int TextHeight=2279(int line,)
1294 # Show or hide the vertical scroll bar.
1295 set void SetVScrollBar=2280(bool show,)
1297 # Is the vertical scroll bar visible?
1298 get bool GetVScrollBar=2281(,)
1300 # Append a string to the end of the document without changing the selection.
1301 fun void AppendText=2282(int length, string text)
1303 # Is drawing done in two phases with backgrounds drawn before foregrounds?
1304 get bool GetTwoPhaseDraw=2283(,)
1306 # In twoPhaseDraw mode, drawing is performed in two phases, first the background
1307 # and then the foreground. This avoids chopping off characters that overlap the next run.
1308 set void SetTwoPhaseDraw=2284(bool twoPhase,)
1310 enu FontQuality=SC_PHASES_
1311 val SC_PHASES_ONE=0
1312 val SC_PHASES_TWO=1
1313 val SC_PHASES_MULTIPLE=2
1315 # How many phases is drawing done in?
1316 get int GetPhasesDraw=2673(,)
1318 # In one phase draw, text is drawn in a series of rectangular blocks with no overlap.
1319 # In two phase draw, text is drawn in a series of lines allowing runs to overlap horizontally.
1320 # In multiple phase draw, each element is drawn over the whole drawing area, allowing text
1321 # to overlap from one line to the next.
1322 set void SetPhasesDraw=2674(int phases,)
1324 # Control font anti-aliasing.
1326 enu FontQuality=SC_EFF_
1327 val SC_EFF_QUALITY_MASK=0xF
1328 val SC_EFF_QUALITY_DEFAULT=0
1329 val SC_EFF_QUALITY_NON_ANTIALIASED=1
1330 val SC_EFF_QUALITY_ANTIALIASED=2
1331 val SC_EFF_QUALITY_LCD_OPTIMIZED=3
1333 # Choose the quality level for text from the FontQuality enumeration.
1334 set void SetFontQuality=2611(int fontQuality,)
1336 # Retrieve the quality level for text.
1337 get int GetFontQuality=2612(,)
1339 # Scroll so that a display line is at the top of the display.
1340 set void SetFirstVisibleLine=2613(int lineDisplay,)
1342 enu MultiPaste=SC_MULTIPASTE_
1343 val SC_MULTIPASTE_ONCE=0
1344 val SC_MULTIPASTE_EACH=1
1346 # Change the effect of pasting when there are multiple selections.
1347 set void SetMultiPaste=2614(int multiPaste,)
1349 # Retrieve the effect of pasting when there are multiple selections..
1350 get int GetMultiPaste=2615(,)
1352 # Retrieve the value of a tag from a regular expression search.
1353 get int GetTag=2616(int tagNumber, stringresult tagValue)
1355 # Make the target range start and end be the same as the selection range start and end.
1356 fun void TargetFromSelection=2287(,)
1358 # Join the lines in the target.
1359 fun void LinesJoin=2288(,)
1361 # Split the lines in the target into lines that are less wide than pixelWidth
1362 # where possible.
1363 fun void LinesSplit=2289(int pixelWidth,)
1365 # Set the colours used as a chequerboard pattern in the fold margin
1366 fun void SetFoldMarginColour=2290(bool useSetting, colour back)
1367 fun void SetFoldMarginHiColour=2291(bool useSetting, colour fore)
1369 ## New messages go here
1371 ## Start of key messages
1372 # Move caret down one line.
1373 fun void LineDown=2300(,)
1375 # Move caret down one line extending selection to new caret position.
1376 fun void LineDownExtend=2301(,)
1378 # Move caret up one line.
1379 fun void LineUp=2302(,)
1381 # Move caret up one line extending selection to new caret position.
1382 fun void LineUpExtend=2303(,)
1384 # Move caret left one character.
1385 fun void CharLeft=2304(,)
1387 # Move caret left one character extending selection to new caret position.
1388 fun void CharLeftExtend=2305(,)
1390 # Move caret right one character.
1391 fun void CharRight=2306(,)
1393 # Move caret right one character extending selection to new caret position.
1394 fun void CharRightExtend=2307(,)
1396 # Move caret left one word.
1397 fun void WordLeft=2308(,)
1399 # Move caret left one word extending selection to new caret position.
1400 fun void WordLeftExtend=2309(,)
1402 # Move caret right one word.
1403 fun void WordRight=2310(,)
1405 # Move caret right one word extending selection to new caret position.
1406 fun void WordRightExtend=2311(,)
1408 # Move caret to first position on line.
1409 fun void Home=2312(,)
1411 # Move caret to first position on line extending selection to new caret position.
1412 fun void HomeExtend=2313(,)
1414 # Move caret to last position on line.
1415 fun void LineEnd=2314(,)
1417 # Move caret to last position on line extending selection to new caret position.
1418 fun void LineEndExtend=2315(,)
1420 # Move caret to first position in document.
1421 fun void DocumentStart=2316(,)
1423 # Move caret to first position in document extending selection to new caret position.
1424 fun void DocumentStartExtend=2317(,)
1426 # Move caret to last position in document.
1427 fun void DocumentEnd=2318(,)
1429 # Move caret to last position in document extending selection to new caret position.
1430 fun void DocumentEndExtend=2319(,)
1432 # Move caret one page up.
1433 fun void PageUp=2320(,)
1435 # Move caret one page up extending selection to new caret position.
1436 fun void PageUpExtend=2321(,)
1438 # Move caret one page down.
1439 fun void PageDown=2322(,)
1441 # Move caret one page down extending selection to new caret position.
1442 fun void PageDownExtend=2323(,)
1444 # Switch from insert to overtype mode or the reverse.
1445 fun void EditToggleOvertype=2324(,)
1447 # Cancel any modes such as call tip or auto-completion list display.
1448 fun void Cancel=2325(,)
1450 # Delete the selection or if no selection, the character before the caret.
1451 fun void DeleteBack=2326(,)
1453 # If selection is empty or all on one line replace the selection with a tab character.
1454 # If more than one line selected, indent the lines.
1455 fun void Tab=2327(,)
1457 # Dedent the selected lines.
1458 fun void BackTab=2328(,)
1460 # Insert a new line, may use a CRLF, CR or LF depending on EOL mode.
1461 fun void NewLine=2329(,)
1463 # Insert a Form Feed character.
1464 fun void FormFeed=2330(,)
1466 # Move caret to before first visible character on line.
1467 # If already there move to first character on line.
1468 fun void VCHome=2331(,)
1470 # Like VCHome but extending selection to new caret position.
1471 fun void VCHomeExtend=2332(,)
1473 # Magnify the displayed text by increasing the sizes by 1 point.
1474 fun void ZoomIn=2333(,)
1476 # Make the displayed text smaller by decreasing the sizes by 1 point.
1477 fun void ZoomOut=2334(,)
1479 # Delete the word to the left of the caret.
1480 fun void DelWordLeft=2335(,)
1482 # Delete the word to the right of the caret.
1483 fun void DelWordRight=2336(,)
1485 # Delete the word to the right of the caret, but not the trailing non-word characters.
1486 fun void DelWordRightEnd=2518(,)
1488 # Cut the line containing the caret.
1489 fun void LineCut=2337(,)
1491 # Delete the line containing the caret.
1492 fun void LineDelete=2338(,)
1494 # Switch the current line with the previous.
1495 fun void LineTranspose=2339(,)
1497 # Duplicate the current line.
1498 fun void LineDuplicate=2404(,)
1500 # Transform the selection to lower case.
1501 fun void LowerCase=2340(,)
1503 # Transform the selection to upper case.
1504 fun void UpperCase=2341(,)
1506 # Scroll the document down, keeping the caret visible.
1507 fun void LineScrollDown=2342(,)
1509 # Scroll the document up, keeping the caret visible.
1510 fun void LineScrollUp=2343(,)
1512 # Delete the selection or if no selection, the character before the caret.
1513 # Will not delete the character before at the start of a line.
1514 fun void DeleteBackNotLine=2344(,)
1516 # Move caret to first position on display line.
1517 fun void HomeDisplay=2345(,)
1519 # Move caret to first position on display line extending selection to
1520 # new caret position.
1521 fun void HomeDisplayExtend=2346(,)
1523 # Move caret to last position on display line.
1524 fun void LineEndDisplay=2347(,)
1526 # Move caret to last position on display line extending selection to new
1527 # caret position.
1528 fun void LineEndDisplayExtend=2348(,)
1530 # These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
1531 # except they behave differently when word-wrap is enabled:
1532 # They go first to the start / end of the display line, like (Home|LineEnd)Display
1533 # The difference is that, the cursor is already at the point, it goes on to the start
1534 # or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?.
1536 fun void HomeWrap=2349(,)
1537 fun void HomeWrapExtend=2450(,)
1538 fun void LineEndWrap=2451(,)
1539 fun void LineEndWrapExtend=2452(,)
1540 fun void VCHomeWrap=2453(,)
1541 fun void VCHomeWrapExtend=2454(,)
1543 # Copy the line containing the caret.
1544 fun void LineCopy=2455(,)
1546 # Move the caret inside current view if it's not there already.
1547 fun void MoveCaretInsideView=2401(,)
1549 # How many characters are on a line, including end of line characters?
1550 fun int LineLength=2350(int line,)
1552 # Highlight the characters at two positions.
1553 fun void BraceHighlight=2351(position pos1, position pos2)
1555 # Use specified indicator to highlight matching braces instead of changing their style.
1556 fun void BraceHighlightIndicator=2498(bool useBraceHighlightIndicator, int indicator)
1558 # Highlight the character at a position indicating there is no matching brace.
1559 fun void BraceBadLight=2352(position pos,)
1561 # Use specified indicator to highlight non matching brace instead of changing its style.
1562 fun void BraceBadLightIndicator=2499(bool useBraceBadLightIndicator, int indicator)
1564 # Find the position of a matching brace or INVALID_POSITION if no match.
1565 fun position BraceMatch=2353(position pos,)
1567 # Are the end of line characters visible?
1568 get bool GetViewEOL=2355(,)
1570 # Make the end of line characters visible or invisible.
1571 set void SetViewEOL=2356(bool visible,)
1573 # Retrieve a pointer to the document object.
1574 get int GetDocPointer=2357(,)
1576 # Change the document object used.
1577 set void SetDocPointer=2358(, int pointer)
1579 # Set which document modification events are sent to the container.
1580 set void SetModEventMask=2359(int mask,)
1582 enu EdgeVisualStyle=EDGE_
1583 val EDGE_NONE=0
1584 val EDGE_LINE=1
1585 val EDGE_BACKGROUND=2
1587 # Retrieve the column number which text should be kept within.
1588 get int GetEdgeColumn=2360(,)
1590 # Set the column number of the edge.
1591 # If text goes past the edge then it is highlighted.
1592 set void SetEdgeColumn=2361(int column,)
1594 # Retrieve the edge highlight mode.
1595 get int GetEdgeMode=2362(,)
1597 # The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
1598 # goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
1599 set void SetEdgeMode=2363(int mode,)
1601 # Retrieve the colour used in edge indication.
1602 get colour GetEdgeColour=2364(,)
1604 # Change the colour used in edge indication.
1605 set void SetEdgeColour=2365(colour edgeColour,)
1607 # Sets the current caret position to be the search anchor.
1608 fun void SearchAnchor=2366(,)
1610 # Find some text starting at the search anchor.
1611 # Does not ensure the selection is visible.
1612 fun int SearchNext=2367(int flags, string text)
1614 # Find some text starting at the search anchor and moving backwards.
1615 # Does not ensure the selection is visible.
1616 fun int SearchPrev=2368(int flags, string text)
1618 # Retrieves the number of lines completely visible.
1619 get int LinesOnScreen=2370(,)
1621 # Set whether a pop up menu is displayed automatically when the user presses
1622 # the wrong mouse button.
1623 fun void UsePopUp=2371(bool allowPopUp,)
1625 # Is the selection rectangular? The alternative is the more common stream selection.
1626 get bool SelectionIsRectangle=2372(,)
1628 # Set the zoom level. This number of points is added to the size of all fonts.
1629 # It may be positive to magnify or negative to reduce.
1630 set void SetZoom=2373(int zoom,)
1631 # Retrieve the zoom level.
1632 get int GetZoom=2374(,)
1634 # Create a new document object.
1635 # Starts with reference count of 1 and not selected into editor.
1636 fun int CreateDocument=2375(,)
1637 # Extend life of document.
1638 fun void AddRefDocument=2376(, int doc)
1639 # Release a reference to the document, deleting document if it fades to black.
1640 fun void ReleaseDocument=2377(, int doc)
1642 # Get which document modification events are sent to the container.
1643 get int GetModEventMask=2378(,)
1645 # Change internal focus flag.
1646 set void SetFocus=2380(bool focus,)
1647 # Get internal focus flag.
1648 get bool GetFocus=2381(,)
1650 enu Status=SC_STATUS_
1651 val SC_STATUS_OK=0
1652 val SC_STATUS_FAILURE=1
1653 val SC_STATUS_BADALLOC=2
1655 # Change error status - 0 = OK.
1656 set void SetStatus=2382(int statusCode,)
1657 # Get error status.
1658 get int GetStatus=2383(,)
1660 # Set whether the mouse is captured when its button is pressed.
1661 set void SetMouseDownCaptures=2384(bool captures,)
1662 # Get whether mouse gets captured.
1663 get bool GetMouseDownCaptures=2385(,)
1665 enu CursorShape=SC_CURSOR
1666 val SC_CURSORNORMAL=-1
1667 val SC_CURSORARROW=2
1668 val SC_CURSORWAIT=4
1669 val SC_CURSORREVERSEARROW=7
1670 # Sets the cursor to one of the SC_CURSOR* values.
1671 set void SetCursor=2386(int cursorType,)
1672 # Get cursor type.
1673 get int GetCursor=2387(,)
1675 # Change the way control characters are displayed:
1676 # If symbol is < 32, keep the drawn way, else, use the given character.
1677 set void SetControlCharSymbol=2388(int symbol,)
1678 # Get the way control characters are displayed.
1679 get int GetControlCharSymbol=2389(,)
1681 # Move to the previous change in capitalisation.
1682 fun void WordPartLeft=2390(,)
1683 # Move to the previous change in capitalisation extending selection
1684 # to new caret position.
1685 fun void WordPartLeftExtend=2391(,)
1686 # Move to the change next in capitalisation.
1687 fun void WordPartRight=2392(,)
1688 # Move to the next change in capitalisation extending selection
1689 # to new caret position.
1690 fun void WordPartRightExtend=2393(,)
1692 # Constants for use with SetVisiblePolicy, similar to SetCaretPolicy.
1693 val VISIBLE_SLOP=0x01
1694 val VISIBLE_STRICT=0x04
1695 # Set the way the display area is determined when a particular line
1696 # is to be moved to by Find, FindNext, GotoLine, etc.
1697 fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop)
1699 # Delete back from the current position to the start of the line.
1700 fun void DelLineLeft=2395(,)
1702 # Delete forwards from the current position to the end of the line.
1703 fun void DelLineRight=2396(,)
1705 # Get and Set the xOffset (ie, horizontal scroll position).
1706 set void SetXOffset=2397(int newOffset,)
1707 get int GetXOffset=2398(,)
1709 # Set the last x chosen value to be the caret x position.
1710 fun void ChooseCaretX=2399(,)
1712 # Set the focus to this Scintilla widget.
1713 fun void GrabFocus=2400(,)
1715 enu CaretPolicy=CARET_
1716 # Caret policy, used by SetXCaretPolicy and SetYCaretPolicy.
1717 # If CARET_SLOP is set, we can define a slop value: caretSlop.
1718 # This value defines an unwanted zone (UZ) where the caret is... unwanted.
1719 # This zone is defined as a number of pixels near the vertical margins,
1720 # and as a number of lines near the horizontal margins.
1721 # By keeping the caret away from the edges, it is seen within its context,
1722 # so it is likely that the identifier that the caret is on can be completely seen,
1723 # and that the current line is seen with some of the lines following it which are
1724 # often dependent on that line.
1725 val CARET_SLOP=0x01
1726 # If CARET_STRICT is set, the policy is enforced... strictly.
1727 # The caret is centred on the display if slop is not set,
1728 # and cannot go in the UZ if slop is set.
1729 val CARET_STRICT=0x04
1730 # If CARET_JUMPS is set, the display is moved more energetically
1731 # so the caret can move in the same direction longer before the policy is applied again.
1732 val CARET_JUMPS=0x10
1733 # If CARET_EVEN is not set, instead of having symmetrical UZs,
1734 # the left and bottom UZs are extended up to right and top UZs respectively.
1735 # This way, we favour the displaying of useful information: the begining of lines,
1736 # where most code reside, and the lines after the caret, eg. the body of a function.
1737 val CARET_EVEN=0x08
1739 # Set the way the caret is kept visible when going sideways.
1740 # The exclusion zone is given in pixels.
1741 fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop)
1743 # Set the way the line the caret is on is kept visible.
1744 # The exclusion zone is given in lines.
1745 fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop)
1747 # Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
1748 set void SetPrintWrapMode=2406(int mode,)
1750 # Is printing line wrapped?
1751 get int GetPrintWrapMode=2407(,)
1753 # Set a fore colour for active hotspots.
1754 set void SetHotspotActiveFore=2410(bool useSetting, colour fore)
1756 # Get the fore colour for active hotspots.
1757 get colour GetHotspotActiveFore=2494(,)
1759 # Set a back colour for active hotspots.
1760 set void SetHotspotActiveBack=2411(bool useSetting, colour back)
1762 # Get the back colour for active hotspots.
1763 get colour GetHotspotActiveBack=2495(,)
1765 # Enable / Disable underlining active hotspots.
1766 set void SetHotspotActiveUnderline=2412(bool underline,)
1768 # Get whether underlining for active hotspots.
1769 get bool GetHotspotActiveUnderline=2496(,)
1771 # Limit hotspots to single line so hotspots on two lines don't merge.
1772 set void SetHotspotSingleLine=2421(bool singleLine,)
1774 # Get the HotspotSingleLine property
1775 get bool GetHotspotSingleLine=2497(,)
1777 # Move caret between paragraphs (delimited by empty lines).
1778 fun void ParaDown=2413(,)
1779 fun void ParaDownExtend=2414(,)
1780 fun void ParaUp=2415(,)
1781 fun void ParaUpExtend=2416(,)
1783 # Given a valid document position, return the previous position taking code
1784 # page into account. Returns 0 if passed 0.
1785 fun position PositionBefore=2417(position pos,)
1787 # Given a valid document position, return the next position taking code
1788 # page into account. Maximum value returned is the last position in the document.
1789 fun position PositionAfter=2418(position pos,)
1791 # Given a valid document position, return a position that differs in a number
1792 # of characters. Returned value is always between 0 and last position in document.
1793 fun position PositionRelative=2670(position pos, int relative)
1795 # Copy a range of text to the clipboard. Positions are clipped into the document.
1796 fun void CopyRange=2419(position start, position end)
1798 # Copy argument text to the clipboard.
1799 fun void CopyText=2420(int length, string text)
1801 enu SelectionMode=SC_SEL_
1802 val SC_SEL_STREAM=0
1803 val SC_SEL_RECTANGLE=1
1804 val SC_SEL_LINES=2
1805 val SC_SEL_THIN=3
1807 # Set the selection mode to stream (SC_SEL_STREAM) or rectangular (SC_SEL_RECTANGLE/SC_SEL_THIN) or
1808 # by lines (SC_SEL_LINES).
1809 set void SetSelectionMode=2422(int mode,)
1811 # Get the mode of the current selection.
1812 get int GetSelectionMode=2423(,)
1814 # Retrieve the position of the start of the selection at the given line (INVALID_POSITION if no selection on this line).
1815 fun position GetLineSelStartPosition=2424(int line,)
1817 # Retrieve the position of the end of the selection at the given line (INVALID_POSITION if no selection on this line).
1818 fun position GetLineSelEndPosition=2425(int line,)
1820 ## RectExtended rectangular selection moves
1821 # Move caret down one line, extending rectangular selection to new caret position.
1822 fun void LineDownRectExtend=2426(,)
1824 # Move caret up one line, extending rectangular selection to new caret position.
1825 fun void LineUpRectExtend=2427(,)
1827 # Move caret left one character, extending rectangular selection to new caret position.
1828 fun void CharLeftRectExtend=2428(,)
1830 # Move caret right one character, extending rectangular selection to new caret position.
1831 fun void CharRightRectExtend=2429(,)
1833 # Move caret to first position on line, extending rectangular selection to new caret position.
1834 fun void HomeRectExtend=2430(,)
1836 # Move caret to before first visible character on line.
1837 # If already there move to first character on line.
1838 # In either case, extend rectangular selection to new caret position.
1839 fun void VCHomeRectExtend=2431(,)
1841 # Move caret to last position on line, extending rectangular selection to new caret position.
1842 fun void LineEndRectExtend=2432(,)
1844 # Move caret one page up, extending rectangular selection to new caret position.
1845 fun void PageUpRectExtend=2433(,)
1847 # Move caret one page down, extending rectangular selection to new caret position.
1848 fun void PageDownRectExtend=2434(,)
1851 # Move caret to top of page, or one page up if already at top of page.
1852 fun void StutteredPageUp=2435(,)
1854 # Move caret to top of page, or one page up if already at top of page, extending selection to new caret position.
1855 fun void StutteredPageUpExtend=2436(,)
1857 # Move caret to bottom of page, or one page down if already at bottom of page.
1858 fun void StutteredPageDown=2437(,)
1860 # Move caret to bottom of page, or one page down if already at bottom of page, extending selection to new caret position.
1861 fun void StutteredPageDownExtend=2438(,)
1864 # Move caret left one word, position cursor at end of word.
1865 fun void WordLeftEnd=2439(,)
1867 # Move caret left one word, position cursor at end of word, extending selection to new caret position.
1868 fun void WordLeftEndExtend=2440(,)
1870 # Move caret right one word, position cursor at end of word.
1871 fun void WordRightEnd=2441(,)
1873 # Move caret right one word, position cursor at end of word, extending selection to new caret position.
1874 fun void WordRightEndExtend=2442(,)
1876 # Set the set of characters making up whitespace for when moving or selecting by word.
1877 # Should be called after SetWordChars.
1878 set void SetWhitespaceChars=2443(, string characters)
1880 # Get the set of characters making up whitespace for when moving or selecting by word.
1881 get int GetWhitespaceChars=2647(, stringresult characters)
1883 # Set the set of characters making up punctuation characters
1884 # Should be called after SetWordChars.
1885 set void SetPunctuationChars=2648(, string characters)
1887 # Get the set of characters making up punctuation characters
1888 get int GetPunctuationChars=2649(, stringresult characters)
1890 # Reset the set of characters for whitespace and word characters to the defaults.
1891 fun void SetCharsDefault=2444(,)
1893 # Get currently selected item position in the auto-completion list
1894 get int AutoCGetCurrent=2445(,)
1896 # Get currently selected item text in the auto-completion list
1897 # Returns the length of the item text
1898 get int AutoCGetCurrentText=2610(, stringresult s)
1900 enu CaseInsensitiveBehaviour=SC_CASEINSENSITIVEBEHAVIOUR_
1901 val SC_CASEINSENSITIVEBEHAVIOUR_RESPECTCASE=0
1902 val SC_CASEINSENSITIVEBEHAVIOUR_IGNORECASE=1
1904 # Set auto-completion case insensitive behaviour to either prefer case-sensitive matches or have no preference.
1905 set void AutoCSetCaseInsensitiveBehaviour=2634(int behaviour,)
1907 # Get auto-completion case insensitive behaviour.
1908 get int AutoCGetCaseInsensitiveBehaviour=2635(,)
1910 enu MultiAutoComplete=SC_MULTIAUTOC_
1911 val SC_MULTIAUTOC_ONCE=0
1912 val SC_MULTIAUTOC_EACH=1
1914 # Change the effect of autocompleting when there are multiple selections.
1915 set void AutoCSetMulti=2636(int multi,)
1917 # Retrieve the effect of autocompleting when there are multiple selections..
1918 get int AutoCGetMulti=2637(,)
1920 enu Ordering=SC_ORDER_
1921 val SC_ORDER_PRESORTED=0
1922 val SC_ORDER_PERFORMSORT=1
1923 val SC_ORDER_CUSTOM=2
1925 # Set the way autocompletion lists are ordered.
1926 set void AutoCSetOrder=2660(int order,)
1928 # Get the way autocompletion lists are ordered.
1929 get int AutoCGetOrder=2661(,)
1931 # Enlarge the document to a particular size of text bytes.
1932 fun void Allocate=2446(int bytes,)
1934 # Returns the target converted to UTF8.
1935 # Return the length in bytes.
1936 fun int TargetAsUTF8=2447(, stringresult s)
1938 # Set the length of the utf8 argument for calling EncodedFromUTF8.
1939 # Set to -1 and the string will be measured to the first nul.
1940 fun void SetLengthForEncode=2448(int bytes,)
1942 # Translates a UTF8 string into the document encoding.
1943 # Return the length of the result in bytes.
1944 # On error return 0.
1945 fun int EncodedFromUTF8=2449(string utf8, stringresult encoded)
1947 # Find the position of a column on a line taking into account tabs and
1948 # multi-byte characters. If beyond end of line, return line end position.
1949 fun int FindColumn=2456(int line, int column)
1951 # Can the caret preferred x position only be changed by explicit movement commands?
1952 get int GetCaretSticky=2457(,)
1954 # Stop the caret preferred x position changing when the user types.
1955 set void SetCaretSticky=2458(int useCaretStickyBehaviour,)
1957 enu CaretSticky=SC_CARETSTICKY_
1958 val SC_CARETSTICKY_OFF=0
1959 val SC_CARETSTICKY_ON=1
1960 val SC_CARETSTICKY_WHITESPACE=2
1962 # Switch between sticky and non-sticky: meant to be bound to a key.
1963 fun void ToggleCaretSticky=2459(,)
1965 # Enable/Disable convert-on-paste for line endings
1966 set void SetPasteConvertEndings=2467(bool convert,)
1968 # Get convert-on-paste setting
1969 get bool GetPasteConvertEndings=2468(,)
1971 # Duplicate the selection. If selection empty duplicate the line containing the caret.
1972 fun void SelectionDuplicate=2469(,)
1974 val SC_ALPHA_TRANSPARENT=0
1975 val SC_ALPHA_OPAQUE=255
1976 val SC_ALPHA_NOALPHA=256
1978 # Set background alpha of the caret line.
1979 set void SetCaretLineBackAlpha=2470(int alpha,)
1981 # Get the background alpha of the caret line.
1982 get int GetCaretLineBackAlpha=2471(,)
1984 enu CaretStyle=CARETSTYLE_
1985 val CARETSTYLE_INVISIBLE=0
1986 val CARETSTYLE_LINE=1
1987 val CARETSTYLE_BLOCK=2
1989 # Set the style of the caret to be drawn.
1990 set void SetCaretStyle=2512(int caretStyle,)
1992 # Returns the current style of the caret.
1993 get int GetCaretStyle=2513(,)
1995 # Set the indicator used for IndicatorFillRange and IndicatorClearRange
1996 set void SetIndicatorCurrent=2500(int indicator,)
1998 # Get the current indicator
1999 get int GetIndicatorCurrent=2501(,)
2001 # Set the value used for IndicatorFillRange
2002 set void SetIndicatorValue=2502(int value,)
2004 # Get the current indicator value
2005 get int GetIndicatorValue=2503(,)
2007 # Turn a indicator on over a range.
2008 fun void IndicatorFillRange=2504(int position, int fillLength)
2010 # Turn a indicator off over a range.
2011 fun void IndicatorClearRange=2505(int position, int clearLength)
2013 # Are any indicators present at position?
2014 fun int IndicatorAllOnFor=2506(int position,)
2016 # What value does a particular indicator have at at a position?
2017 fun int IndicatorValueAt=2507(int indicator, int position)
2019 # Where does a particular indicator start?
2020 fun int IndicatorStart=2508(int indicator, int position)
2022 # Where does a particular indicator end?
2023 fun int IndicatorEnd=2509(int indicator, int position)
2025 # Set number of entries in position cache
2026 set void SetPositionCache=2514(int size,)
2028 # How many entries are allocated to the position cache?
2029 get int GetPositionCache=2515(,)
2031 # Copy the selection, if selection empty copy the line with the caret
2032 fun void CopyAllowLine=2519(,)
2034 # Compact the document buffer and return a read-only pointer to the
2035 # characters in the document.
2036 get int GetCharacterPointer=2520(,)
2038 # Return a read-only pointer to a range of characters in the document.
2039 # May move the gap so that the range is contiguous, but will only move up
2040 # to rangeLength bytes.
2041 get int GetRangePointer=2643(int position, int rangeLength)
2043 # Return a position which, to avoid performance costs, should not be within
2044 # the range of a call to GetRangePointer.
2045 get position GetGapPosition=2644(,)
2047 # Always interpret keyboard input as Unicode
2048 set void SetKeysUnicode=2521(bool keysUnicode,)
2050 # Are keys always interpreted as Unicode?
2051 get bool GetKeysUnicode=2522(,)
2053 # Set the alpha fill colour of the given indicator.
2054 set void IndicSetAlpha=2523(int indicator, int alpha)
2056 # Get the alpha fill colour of the given indicator.
2057 get int IndicGetAlpha=2524(int indicator,)
2059 # Set the alpha outline colour of the given indicator.
2060 set void IndicSetOutlineAlpha=2558(int indicator, int alpha)
2062 # Get the alpha outline colour of the given indicator.
2063 get int IndicGetOutlineAlpha=2559(int indicator,)
2065 # Set extra ascent for each line
2066 set void SetExtraAscent=2525(int extraAscent,)
2068 # Get extra ascent for each line
2069 get int GetExtraAscent=2526(,)
2071 # Set extra descent for each line
2072 set void SetExtraDescent=2527(int extraDescent,)
2074 # Get extra descent for each line
2075 get int GetExtraDescent=2528(,)
2077 # Which symbol was defined for markerNumber with MarkerDefine
2078 fun int MarkerSymbolDefined=2529(int markerNumber,)
2080 # Set the text in the text margin for a line
2081 set void MarginSetText=2530(int line, string text)
2083 # Get the text in the text margin for a line
2084 get int MarginGetText=2531(int line, stringresult text)
2086 # Set the style number for the text margin for a line
2087 set void MarginSetStyle=2532(int line, int style)
2089 # Get the style number for the text margin for a line
2090 get int MarginGetStyle=2533(int line,)
2092 # Set the style in the text margin for a line
2093 set void MarginSetStyles=2534(int line, string styles)
2095 # Get the styles in the text margin for a line
2096 get int MarginGetStyles=2535(int line, stringresult styles)
2098 # Clear the margin text on all lines
2099 fun void MarginTextClearAll=2536(,)
2101 # Get the start of the range of style numbers used for margin text
2102 set void MarginSetStyleOffset=2537(int style,)
2104 # Get the start of the range of style numbers used for margin text
2105 get int MarginGetStyleOffset=2538(,)
2107 enu MarginOption=SC_MARGINOPTION_
2108 val SC_MARGINOPTION_NONE=0
2109 val SC_MARGINOPTION_SUBLINESELECT=1
2111 # Set the margin options.
2112 set void SetMarginOptions=2539(int marginOptions,)
2114 # Get the margin options.
2115 get int GetMarginOptions=2557(,)
2117 # Set the annotation text for a line
2118 set void AnnotationSetText=2540(int line, string text)
2120 # Get the annotation text for a line
2121 get int AnnotationGetText=2541(int line, stringresult text)
2123 # Set the style number for the annotations for a line
2124 set void AnnotationSetStyle=2542(int line, int style)
2126 # Get the style number for the annotations for a line
2127 get int AnnotationGetStyle=2543(int line,)
2129 # Set the annotation styles for a line
2130 set void AnnotationSetStyles=2544(int line, string styles)
2132 # Get the annotation styles for a line
2133 get int AnnotationGetStyles=2545(int line, stringresult styles)
2135 # Get the number of annotation lines for a line
2136 get int AnnotationGetLines=2546(int line,)
2138 # Clear the annotations from all lines
2139 fun void AnnotationClearAll=2547(,)
2141 enu AnnotationVisible=ANNOTATION_
2142 val ANNOTATION_HIDDEN=0
2143 val ANNOTATION_STANDARD=1
2144 val ANNOTATION_BOXED=2
2146 # Set the visibility for the annotations for a view
2147 set void AnnotationSetVisible=2548(int visible,)
2149 # Get the visibility for the annotations for a view
2150 get int AnnotationGetVisible=2549(,)
2152 # Get the start of the range of style numbers used for annotations
2153 set void AnnotationSetStyleOffset=2550(int style,)
2155 # Get the start of the range of style numbers used for annotations
2156 get int AnnotationGetStyleOffset=2551(,)
2158 # Release all extended (>255) style numbers
2159 fun void ReleaseAllExtendedStyles=2552(,)
2161 # Allocate some extended (>255) style numbers and return the start of the range
2162 fun int AllocateExtendedStyles=2553(int numberStyles,)
2164 val UNDO_MAY_COALESCE=1
2166 # Add a container action to the undo stack
2167 fun void AddUndoAction=2560(int token, int flags)
2169 # Find the position of a character from a point within the window.
2170 fun position CharPositionFromPoint=2561(int x, int y)
2172 # Find the position of a character from a point within the window.
2173 # Return INVALID_POSITION if not close to text.
2174 fun position CharPositionFromPointClose=2562(int x, int y)
2176 # Set whether switching to rectangular mode while selecting with the mouse is allowed.
2177 set void SetMouseSelectionRectangularSwitch=2668(bool mouseSelectionRectangularSwitch,)
2179 # Whether switching to rectangular mode while selecting with the mouse is allowed.
2180 get bool GetMouseSelectionRectangularSwitch=2669(,)
2182 # Set whether multiple selections can be made
2183 set void SetMultipleSelection=2563(bool multipleSelection,)
2185 # Whether multiple selections can be made
2186 get bool GetMultipleSelection=2564(,)
2188 # Set whether typing can be performed into multiple selections
2189 set void SetAdditionalSelectionTyping=2565(bool additionalSelectionTyping,)
2191 # Whether typing can be performed into multiple selections
2192 get bool GetAdditionalSelectionTyping=2566(,)
2194 # Set whether additional carets will blink
2195 set void SetAdditionalCaretsBlink=2567(bool additionalCaretsBlink,)
2197 # Whether additional carets will blink
2198 get bool GetAdditionalCaretsBlink=2568(,)
2200 # Set whether additional carets are visible
2201 set void SetAdditionalCaretsVisible=2608(bool additionalCaretsBlink,)
2203 # Whether additional carets are visible
2204 get bool GetAdditionalCaretsVisible=2609(,)
2206 # How many selections are there?
2207 get int GetSelections=2570(,)
2209 # Is every selected range empty?
2210 get bool GetSelectionEmpty=2650(,)
2212 # Clear selections to a single empty stream selection
2213 fun void ClearSelections=2571(,)
2215 # Set a simple selection
2216 fun int SetSelection=2572(int caret, int anchor)
2218 # Add a selection
2219 fun int AddSelection=2573(int caret, int anchor)
2221 # Drop one selection
2222 fun void DropSelectionN=2671(int selection,)
2224 # Set the main selection
2225 set void SetMainSelection=2574(int selection,)
2227 # Which selection is the main selection
2228 get int GetMainSelection=2575(,)
2230 set void SetSelectionNCaret=2576(int selection, position pos)
2231 get position GetSelectionNCaret=2577(int selection,)
2232 set void SetSelectionNAnchor=2578(int selection, position posAnchor)
2233 get position GetSelectionNAnchor=2579(int selection,)
2234 set void SetSelectionNCaretVirtualSpace=2580(int selection, int space)
2235 get int GetSelectionNCaretVirtualSpace=2581(int selection,)
2236 set void SetSelectionNAnchorVirtualSpace=2582(int selection, int space)
2237 get int GetSelectionNAnchorVirtualSpace=2583(int selection,)
2239 # Sets the position that starts the selection - this becomes the anchor.
2240 set void SetSelectionNStart=2584(int selection, position pos)
2242 # Returns the position at the start of the selection.
2243 get position GetSelectionNStart=2585(int selection,)
2245 # Sets the position that ends the selection - this becomes the currentPosition.
2246 set void SetSelectionNEnd=2586(int selection, position pos)
2248 # Returns the position at the end of the selection.
2249 get position GetSelectionNEnd=2587(int selection,)
2251 set void SetRectangularSelectionCaret=2588(position pos,)
2252 get position GetRectangularSelectionCaret=2589(,)
2253 set void SetRectangularSelectionAnchor=2590(position posAnchor,)
2254 get position GetRectangularSelectionAnchor=2591(,)
2255 set void SetRectangularSelectionCaretVirtualSpace=2592(int space,)
2256 get int GetRectangularSelectionCaretVirtualSpace=2593(,)
2257 set void SetRectangularSelectionAnchorVirtualSpace=2594(int space,)
2258 get int GetRectangularSelectionAnchorVirtualSpace=2595(,)
2260 enu VirtualSpace=SCVS_
2261 val SCVS_NONE=0
2262 val SCVS_RECTANGULARSELECTION=1
2263 val SCVS_USERACCESSIBLE=2
2265 set void SetVirtualSpaceOptions=2596(int virtualSpaceOptions,)
2266 get int GetVirtualSpaceOptions=2597(,)
2268 # On GTK+, allow selecting the modifier key to use for mouse-based
2269 # rectangular selection. Often the window manager requires Alt+Mouse Drag
2270 # for moving windows.
2271 # Valid values are SCMOD_CTRL(default), SCMOD_ALT, or SCMOD_SUPER.
2273 set void SetRectangularSelectionModifier=2598(int modifier,)
2275 # Get the modifier key used for rectangular selection.
2276 get int GetRectangularSelectionModifier=2599(,)
2278 # Set the foreground colour of additional selections.
2279 # Must have previously called SetSelFore with non-zero first argument for this to have an effect.
2280 set void SetAdditionalSelFore=2600(colour fore,)
2282 # Set the background colour of additional selections.
2283 # Must have previously called SetSelBack with non-zero first argument for this to have an effect.
2284 set void SetAdditionalSelBack=2601(colour back,)
2286 # Set the alpha of the selection.
2287 set void SetAdditionalSelAlpha=2602(int alpha,)
2289 # Get the alpha of the selection.
2290 get int GetAdditionalSelAlpha=2603(,)
2292 # Set the foreground colour of additional carets.
2293 set void SetAdditionalCaretFore=2604(colour fore,)
2295 # Get the foreground colour of additional carets.
2296 get colour GetAdditionalCaretFore=2605(,)
2298 # Set the main selection to the next selection.
2299 fun void RotateSelection=2606(,)
2301 # Swap that caret and anchor of the main selection.
2302 fun void SwapMainAnchorCaret=2607(,)
2304 # Indicate that the internal state of a lexer has changed over a range and therefore
2305 # there may be a need to redraw.
2306 fun int ChangeLexerState=2617(position start, position end)
2308 # Find the next line at or after lineStart that is a contracted fold header line.
2309 # Return -1 when no more lines.
2310 fun int ContractedFoldNext=2618(int lineStart,)
2312 # Centre current line in window.
2313 fun void VerticalCentreCaret=2619(,)
2315 # Move the selected lines up one line, shifting the line above after the selection
2316 fun void MoveSelectedLinesUp=2620(,)
2318 # Move the selected lines down one line, shifting the line below before the selection
2319 fun void MoveSelectedLinesDown=2621(,)
2321 # Set the identifier reported as idFrom in notification messages.
2322 set void SetIdentifier=2622(int identifier,)
2324 # Get the identifier.
2325 get int GetIdentifier=2623(,)
2327 # Set the width for future RGBA image data.
2328 set void RGBAImageSetWidth=2624(int width,)
2330 # Set the height for future RGBA image data.
2331 set void RGBAImageSetHeight=2625(int height,)
2333 # Set the scale factor in percent for future RGBA image data.
2334 set void RGBAImageSetScale=2651(int scalePercent,)
2336 # Define a marker from RGBA data.
2337 # It has the width and height from RGBAImageSetWidth/Height
2338 fun void MarkerDefineRGBAImage=2626(int markerNumber, string pixels)
2340 # Register an RGBA image for use in autocompletion lists.
2341 # It has the width and height from RGBAImageSetWidth/Height
2342 fun void RegisterRGBAImage=2627(int type, string pixels)
2344 # Scroll to start of document.
2345 fun void ScrollToStart=2628(,)
2347 # Scroll to end of document.
2348 fun void ScrollToEnd=2629(,)
2350 val SC_TECHNOLOGY_DEFAULT=0
2351 val SC_TECHNOLOGY_DIRECTWRITE=1
2353 # Set the technology used.
2354 set void SetTechnology=2630(int technology,)
2356 # Get the tech.
2357 get int GetTechnology=2631(,)
2359 # Create an ILoader*.
2360 fun int CreateLoader=2632(int bytes,)
2362 # On OS X, show a find indicator.
2363 fun void FindIndicatorShow=2640(position start, position end)
2365 # On OS X, flash a find indicator, then fade out.
2366 fun void FindIndicatorFlash=2641(position start, position end)
2368 # On OS X, hide the find indicator.
2369 fun void FindIndicatorHide=2642(,)
2371 # Move caret to before first visible character on display line.
2372 # If already there move to first character on display line.
2373 fun void VCHomeDisplay=2652(,)
2375 # Like VCHomeDisplay but extending selection to new caret position.
2376 fun void VCHomeDisplayExtend=2653(,)
2378 # Is the caret line always visible?
2379 get bool GetCaretLineVisibleAlways=2654(,)
2381 # Sets the caret line to always visible.
2382 set void SetCaretLineVisibleAlways=2655(bool alwaysVisible,)
2384 # Line end types which may be used in addition to LF, CR, and CRLF
2385 # SC_LINE_END_TYPE_UNICODE includes U+2028 Line Separator,
2386 # U+2029 Paragraph Separator, and U+0085 Next Line
2387 enu LineEndType=SC_LINE_END_TYPE_
2388 val SC_LINE_END_TYPE_DEFAULT=0
2389 val SC_LINE_END_TYPE_UNICODE=1
2391 # Set the line end types that the application wants to use. May not be used if incompatible with lexer or encoding.
2392 set void SetLineEndTypesAllowed=2656(int lineEndBitSet,)
2394 # Get the line end types currently allowed.
2395 get int GetLineEndTypesAllowed=2657(,)
2397 # Get the line end types currently recognised. May be a subset of the allowed types due to lexer limitation.
2398 get int GetLineEndTypesActive=2658(,)
2400 # Set the way a character is drawn.
2401 set void SetRepresentation=2665(string encodedCharacter, string representation)
2403 # Set the way a character is drawn.
2404 get int GetRepresentation=2666(string encodedCharacter, stringresult representation)
2406 # Remove a character representation.
2407 fun void ClearRepresentation=2667(string encodedCharacter,)
2409 # Start notifying the container of all key presses and commands.
2410 fun void StartRecord=3001(,)
2412 # Stop notifying the container of all key presses and commands.
2413 fun void StopRecord=3002(,)
2415 # Set the lexing language of the document.
2416 set void SetLexer=4001(int lexer,)
2418 # Retrieve the lexing language of the document.
2419 get int GetLexer=4002(,)
2421 # Colourise a segment of the document using the current lexing language.
2422 fun void Colourise=4003(position start, position end)
2424 # Set up a value that may be used by a lexer for some optional feature.
2425 set void SetProperty=4004(string key, string value)
2427 # Maximum value of keywordSet parameter of SetKeyWords.
2428 val KEYWORDSET_MAX=8
2430 # Set up the key words used by the lexer.
2431 set void SetKeyWords=4005(int keywordSet, string keyWords)
2433 # Set the lexing language of the document based on string name.
2434 set void SetLexerLanguage=4006(, string language)
2436 # Load a lexer library (dll / so).
2437 fun void LoadLexerLibrary=4007(, string path)
2439 # Retrieve a "property" value previously set with SetProperty.
2440 get int GetProperty=4008(string key, stringresult buf)
2442 # Retrieve a "property" value previously set with SetProperty,
2443 # with "$()" variable replacement on returned buffer.
2444 get int GetPropertyExpanded=4009(string key, stringresult buf)
2446 # Retrieve a "property" value previously set with SetProperty,
2447 # interpreted as an int AFTER any "$()" variable replacement.
2448 get int GetPropertyInt=4010(string key,)
2450 # Retrieve the number of bits the current lexer needs for styling.
2451 get int GetStyleBitsNeeded=4011(,)
2453 # Retrieve the name of the lexer.
2454 # Return the length of the text.
2455 get int GetLexerLanguage=4012(, stringresult text)
2457 # For private communication between an application and a known lexer.
2458 fun int PrivateLexerCall=4013(int operation, int pointer)
2460 # Retrieve a '\n' separated list of properties understood by the current lexer.
2461 fun int PropertyNames=4014(, stringresult names)
2463 enu TypeProperty=SC_TYPE_
2464 val SC_TYPE_BOOLEAN=0
2465 val SC_TYPE_INTEGER=1
2466 val SC_TYPE_STRING=2
2468 # Retrieve the type of a property.
2469 fun int PropertyType=4015(string name,)
2471 # Describe a property.
2472 fun int DescribeProperty=4016(string name, stringresult description)
2474 # Retrieve a '\n' separated list of descriptions of the keyword sets understood by the current lexer.
2475 fun int DescribeKeyWordSets=4017(, stringresult descriptions)
2477 # Bit set of LineEndType enumertion for which line ends beyond the standard
2478 # LF, CR, and CRLF are supported by the lexer.
2479 get int GetLineEndTypesSupported=4018(,)
2481 # Allocate a set of sub styles for a particular base style, returning start of range
2482 fun int AllocateSubStyles=4020(int styleBase, int numberStyles)
2484 # The starting style number for the sub styles associated with a base style
2485 get int GetSubStylesStart=4021(int styleBase,)
2487 # The number of sub styles associated with a base style
2488 get int GetSubStylesLength=4022(int styleBase,)
2490 # For a sub style, return the base style, else return the argument.
2491 get int GetStyleFromSubStyle=4027(int subStyle,)
2493 # For a secondary style, return the primary style, else return the argument.
2494 get int GetPrimaryStyleFromStyle=4028(int style,)
2496 # Free allocated sub styles
2497 fun void FreeSubStyles=4023(,)
2499 # Set the identifiers that are shown in a particular style
2500 set void SetIdentifiers=4024(int style, string identifiers)
2502 # Where styles are duplicated by a feature such as active/inactive code
2503 # return the distance between the two types.
2504 get int DistanceToSecondaryStyles=4025(,)
2506 # Get the set of base styles that can be extended with sub styles
2507 get int GetSubStyleBases=4026(, stringresult styles)
2509 # Notifications
2510 # Type of modification and the action which caused the modification.
2511 # These are defined as a bit mask to make it easy to specify which notifications are wanted.
2512 # One bit is set from each of SC_MOD_* and SC_PERFORMED_*.
2513 enu ModificationFlags=SC_MOD_ SC_PERFORMED_ SC_MULTISTEPUNDOREDO SC_LASTSTEPINUNDOREDO SC_MULTILINEUNDOREDO SC_STARTACTION SC_MODEVENTMASKALL
2514 val SC_MOD_INSERTTEXT=0x1
2515 val SC_MOD_DELETETEXT=0x2
2516 val SC_MOD_CHANGESTYLE=0x4
2517 val SC_MOD_CHANGEFOLD=0x8
2518 val SC_PERFORMED_USER=0x10
2519 val SC_PERFORMED_UNDO=0x20
2520 val SC_PERFORMED_REDO=0x40
2521 val SC_MULTISTEPUNDOREDO=0x80
2522 val SC_LASTSTEPINUNDOREDO=0x100
2523 val SC_MOD_CHANGEMARKER=0x200
2524 val SC_MOD_BEFOREINSERT=0x400
2525 val SC_MOD_BEFOREDELETE=0x800
2526 val SC_MULTILINEUNDOREDO=0x1000
2527 val SC_STARTACTION=0x2000
2528 val SC_MOD_CHANGEINDICATOR=0x4000
2529 val SC_MOD_CHANGELINESTATE=0x8000
2530 val SC_MOD_CHANGEMARGIN=0x10000
2531 val SC_MOD_CHANGEANNOTATION=0x20000
2532 val SC_MOD_CONTAINER=0x40000
2533 val SC_MOD_LEXERSTATE=0x80000
2534 val SC_MOD_INSERTCHECK=0x100000
2535 val SC_MOD_CHANGETABSTOPS=0x200000
2536 val SC_MODEVENTMASKALL=0x3FFFFF
2538 enu Update=SC_UPDATE_
2539 val SC_UPDATE_CONTENT=0x1
2540 val SC_UPDATE_SELECTION=0x2
2541 val SC_UPDATE_V_SCROLL=0x4
2542 val SC_UPDATE_H_SCROLL=0x8
2544 # For compatibility, these go through the COMMAND notification rather than NOTIFY
2545 # and should have had exactly the same values as the EN_* constants.
2546 # Unfortunately the SETFOCUS and KILLFOCUS are flipped over from EN_*
2547 # As clients depend on these constants, this will not be changed.
2548 val SCEN_CHANGE=768
2549 val SCEN_SETFOCUS=512
2550 val SCEN_KILLFOCUS=256
2552 # Symbolic key codes and modifier flags.
2553 # ASCII and other printable characters below 256.
2554 # Extended keys above 300.
2556 enu Keys=SCK_
2557 val SCK_DOWN=300
2558 val SCK_UP=301
2559 val SCK_LEFT=302
2560 val SCK_RIGHT=303
2561 val SCK_HOME=304
2562 val SCK_END=305
2563 val SCK_PRIOR=306
2564 val SCK_NEXT=307
2565 val SCK_DELETE=308
2566 val SCK_INSERT=309
2567 val SCK_ESCAPE=7
2568 val SCK_BACK=8
2569 val SCK_TAB=9
2570 val SCK_RETURN=13
2571 val SCK_ADD=310
2572 val SCK_SUBTRACT=311
2573 val SCK_DIVIDE=312
2574 val SCK_WIN=313
2575 val SCK_RWIN=314
2576 val SCK_MENU=315
2578 enu KeyMod=SCMOD_
2579 val SCMOD_NORM=0
2580 val SCMOD_SHIFT=1
2581 val SCMOD_CTRL=2
2582 val SCMOD_ALT=4
2583 val SCMOD_SUPER=8
2584 val SCMOD_META=16
2586 ################################################
2587 # For SciLexer.h
2588 enu Lexer=SCLEX_
2589 val SCLEX_CONTAINER=0
2590 val SCLEX_NULL=1
2591 val SCLEX_PYTHON=2
2592 val SCLEX_CPP=3
2593 val SCLEX_HTML=4
2594 val SCLEX_XML=5
2595 val SCLEX_PERL=6
2596 val SCLEX_SQL=7
2597 val SCLEX_VB=8
2598 val SCLEX_PROPERTIES=9
2599 val SCLEX_ERRORLIST=10
2600 val SCLEX_MAKEFILE=11
2601 val SCLEX_BATCH=12
2602 val SCLEX_XCODE=13
2603 val SCLEX_LATEX=14
2604 val SCLEX_LUA=15
2605 val SCLEX_DIFF=16
2606 val SCLEX_CONF=17
2607 val SCLEX_PASCAL=18
2608 val SCLEX_AVE=19
2609 val SCLEX_ADA=20
2610 val SCLEX_LISP=21
2611 val SCLEX_RUBY=22
2612 val SCLEX_EIFFEL=23
2613 val SCLEX_EIFFELKW=24
2614 val SCLEX_TCL=25
2615 val SCLEX_NNCRONTAB=26
2616 val SCLEX_BULLANT=27
2617 val SCLEX_VBSCRIPT=28
2618 val SCLEX_BAAN=31
2619 val SCLEX_MATLAB=32
2620 val SCLEX_SCRIPTOL=33
2621 val SCLEX_ASM=34
2622 val SCLEX_CPPNOCASE=35
2623 val SCLEX_FORTRAN=36
2624 val SCLEX_F77=37
2625 val SCLEX_CSS=38
2626 val SCLEX_POV=39
2627 val SCLEX_LOUT=40
2628 val SCLEX_ESCRIPT=41
2629 val SCLEX_PS=42
2630 val SCLEX_NSIS=43
2631 val SCLEX_MMIXAL=44
2632 val SCLEX_CLW=45
2633 val SCLEX_CLWNOCASE=46
2634 val SCLEX_LOT=47
2635 val SCLEX_YAML=48
2636 val SCLEX_TEX=49
2637 val SCLEX_METAPOST=50
2638 val SCLEX_POWERBASIC=51
2639 val SCLEX_FORTH=52
2640 val SCLEX_ERLANG=53
2641 val SCLEX_OCTAVE=54
2642 val SCLEX_MSSQL=55
2643 val SCLEX_VERILOG=56
2644 val SCLEX_KIX=57
2645 val SCLEX_GUI4CLI=58
2646 val SCLEX_SPECMAN=59
2647 val SCLEX_AU3=60
2648 val SCLEX_APDL=61
2649 val SCLEX_BASH=62
2650 val SCLEX_ASN1=63
2651 val SCLEX_VHDL=64
2652 val SCLEX_CAML=65
2653 val SCLEX_BLITZBASIC=66
2654 val SCLEX_PUREBASIC=67
2655 val SCLEX_HASKELL=68
2656 val SCLEX_PHPSCRIPT=69
2657 val SCLEX_TADS3=70
2658 val SCLEX_REBOL=71
2659 val SCLEX_SMALLTALK=72
2660 val SCLEX_FLAGSHIP=73
2661 val SCLEX_CSOUND=74
2662 val SCLEX_FREEBASIC=75
2663 val SCLEX_INNOSETUP=76
2664 val SCLEX_OPAL=77
2665 val SCLEX_SPICE=78
2666 val SCLEX_D=79
2667 val SCLEX_CMAKE=80
2668 val SCLEX_GAP=81
2669 val SCLEX_PLM=82
2670 val SCLEX_PROGRESS=83
2671 val SCLEX_ABAQUS=84
2672 val SCLEX_ASYMPTOTE=85
2673 val SCLEX_R=86
2674 val SCLEX_MAGIK=87
2675 val SCLEX_POWERSHELL=88
2676 val SCLEX_MYSQL=89
2677 val SCLEX_PO=90
2678 val SCLEX_TAL=91
2679 val SCLEX_COBOL=92
2680 val SCLEX_TACL=93
2681 val SCLEX_SORCUS=94
2682 val SCLEX_POWERPRO=95
2683 val SCLEX_NIMROD=96
2684 val SCLEX_SML=97
2685 val SCLEX_MARKDOWN=98
2686 val SCLEX_TXT2TAGS=99
2687 val SCLEX_A68K=100
2688 val SCLEX_MODULA=101
2689 val SCLEX_COFFEESCRIPT=102
2690 val SCLEX_TCMD=103
2691 val SCLEX_AVS=104
2692 val SCLEX_ECL=105
2693 val SCLEX_OSCRIPT=106
2694 val SCLEX_VISUALPROLOG=107
2695 val SCLEX_LITERATEHASKELL=108
2696 val SCLEX_STTXT=109
2697 val SCLEX_KVIRC=110
2698 val SCLEX_RUST=111
2699 val SCLEX_DMAP=112
2700 val SCLEX_AS=113
2701 val SCLEX_DMIS=114
2702 val SCLEX_REGISTRY=115
2704 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a
2705 # value assigned in sequence from SCLEX_AUTOMATIC+1.
2706 val SCLEX_AUTOMATIC=1000
2707 # Lexical states for SCLEX_PYTHON
2708 lex Python=SCLEX_PYTHON SCE_P_
2709 lex Nimrod=SCLEX_NIMROD SCE_P_
2710 val SCE_P_DEFAULT=0
2711 val SCE_P_COMMENTLINE=1
2712 val SCE_P_NUMBER=2
2713 val SCE_P_STRING=3
2714 val SCE_P_CHARACTER=4
2715 val SCE_P_WORD=5
2716 val SCE_P_TRIPLE=6
2717 val SCE_P_TRIPLEDOUBLE=7
2718 val SCE_P_CLASSNAME=8
2719 val SCE_P_DEFNAME=9
2720 val SCE_P_OPERATOR=10
2721 val SCE_P_IDENTIFIER=11
2722 val SCE_P_COMMENTBLOCK=12
2723 val SCE_P_STRINGEOL=13
2724 val SCE_P_WORD2=14
2725 val SCE_P_DECORATOR=15
2726 # Lexical states for SCLEX_CPP
2727 lex Cpp=SCLEX_CPP SCE_C_
2728 lex BullAnt=SCLEX_BULLANT SCE_C_
2729 val SCE_C_DEFAULT=0
2730 val SCE_C_COMMENT=1
2731 val SCE_C_COMMENTLINE=2
2732 val SCE_C_COMMENTDOC=3
2733 val SCE_C_NUMBER=4
2734 val SCE_C_WORD=5
2735 val SCE_C_STRING=6
2736 val SCE_C_CHARACTER=7
2737 val SCE_C_UUID=8
2738 val SCE_C_PREPROCESSOR=9
2739 val SCE_C_OPERATOR=10
2740 val SCE_C_IDENTIFIER=11
2741 val SCE_C_STRINGEOL=12
2742 val SCE_C_VERBATIM=13
2743 val SCE_C_REGEX=14
2744 val SCE_C_COMMENTLINEDOC=15
2745 val SCE_C_WORD2=16
2746 val SCE_C_COMMENTDOCKEYWORD=17
2747 val SCE_C_COMMENTDOCKEYWORDERROR=18
2748 val SCE_C_GLOBALCLASS=19
2749 val SCE_C_STRINGRAW=20
2750 val SCE_C_TRIPLEVERBATIM=21
2751 val SCE_C_HASHQUOTEDSTRING=22
2752 val SCE_C_PREPROCESSORCOMMENT=23
2753 val SCE_C_PREPROCESSORCOMMENTDOC=24
2754 val SCE_C_USERLITERAL=25
2755 val SCE_C_TASKMARKER=26
2756 val SCE_C_ESCAPESEQUENCE=27
2757 # Lexical states for SCLEX_D
2758 lex D=SCLEX_D SCE_D_
2759 val SCE_D_DEFAULT=0
2760 val SCE_D_COMMENT=1
2761 val SCE_D_COMMENTLINE=2
2762 val SCE_D_COMMENTDOC=3
2763 val SCE_D_COMMENTNESTED=4
2764 val SCE_D_NUMBER=5
2765 val SCE_D_WORD=6
2766 val SCE_D_WORD2=7
2767 val SCE_D_WORD3=8
2768 val SCE_D_TYPEDEF=9
2769 val SCE_D_STRING=10
2770 val SCE_D_STRINGEOL=11
2771 val SCE_D_CHARACTER=12
2772 val SCE_D_OPERATOR=13
2773 val SCE_D_IDENTIFIER=14
2774 val SCE_D_COMMENTLINEDOC=15
2775 val SCE_D_COMMENTDOCKEYWORD=16
2776 val SCE_D_COMMENTDOCKEYWORDERROR=17
2777 val SCE_D_STRINGB=18
2778 val SCE_D_STRINGR=19
2779 val SCE_D_WORD5=20
2780 val SCE_D_WORD6=21
2781 val SCE_D_WORD7=22
2782 # Lexical states for SCLEX_TCL
2783 lex TCL=SCLEX_TCL SCE_TCL_
2784 val SCE_TCL_DEFAULT=0
2785 val SCE_TCL_COMMENT=1
2786 val SCE_TCL_COMMENTLINE=2
2787 val SCE_TCL_NUMBER=3
2788 val SCE_TCL_WORD_IN_QUOTE=4
2789 val SCE_TCL_IN_QUOTE=5
2790 val SCE_TCL_OPERATOR=6
2791 val SCE_TCL_IDENTIFIER=7
2792 val SCE_TCL_SUBSTITUTION=8
2793 val SCE_TCL_SUB_BRACE=9
2794 val SCE_TCL_MODIFIER=10
2795 val SCE_TCL_EXPAND=11
2796 val SCE_TCL_WORD=12
2797 val SCE_TCL_WORD2=13
2798 val SCE_TCL_WORD3=14
2799 val SCE_TCL_WORD4=15
2800 val SCE_TCL_WORD5=16
2801 val SCE_TCL_WORD6=17
2802 val SCE_TCL_WORD7=18
2803 val SCE_TCL_WORD8=19
2804 val SCE_TCL_COMMENT_BOX=20
2805 val SCE_TCL_BLOCK_COMMENT=21
2806 # Lexical states for SCLEX_HTML, SCLEX_XML
2807 lex HTML=SCLEX_HTML SCE_H_ SCE_HJ_ SCE_HJA_ SCE_HB_ SCE_HBA_ SCE_HP_ SCE_HPHP_ SCE_HPA_
2808 lex XML=SCLEX_XML SCE_H_ SCE_HJ_ SCE_HJA_ SCE_HB_ SCE_HBA_ SCE_HP_ SCE_HPHP_ SCE_HPA_
2809 val SCE_H_DEFAULT=0
2810 val SCE_H_TAG=1
2811 val SCE_H_TAGUNKNOWN=2
2812 val SCE_H_ATTRIBUTE=3
2813 val SCE_H_ATTRIBUTEUNKNOWN=4
2814 val SCE_H_NUMBER=5
2815 val SCE_H_DOUBLESTRING=6
2816 val SCE_H_SINGLESTRING=7
2817 val SCE_H_OTHER=8
2818 val SCE_H_COMMENT=9
2819 val SCE_H_ENTITY=10
2820 # XML and ASP
2821 val SCE_H_TAGEND=11
2822 val SCE_H_XMLSTART=12
2823 val SCE_H_XMLEND=13
2824 val SCE_H_SCRIPT=14
2825 val SCE_H_ASP=15
2826 val SCE_H_ASPAT=16
2827 val SCE_H_CDATA=17
2828 val SCE_H_QUESTION=18
2829 # More HTML
2830 val SCE_H_VALUE=19
2831 # X-Code
2832 val SCE_H_XCCOMMENT=20
2833 # SGML
2834 val SCE_H_SGML_DEFAULT=21
2835 val SCE_H_SGML_COMMAND=22
2836 val SCE_H_SGML_1ST_PARAM=23
2837 val SCE_H_SGML_DOUBLESTRING=24
2838 val SCE_H_SGML_SIMPLESTRING=25
2839 val SCE_H_SGML_ERROR=26
2840 val SCE_H_SGML_SPECIAL=27
2841 val SCE_H_SGML_ENTITY=28
2842 val SCE_H_SGML_COMMENT=29
2843 val SCE_H_SGML_1ST_PARAM_COMMENT=30
2844 val SCE_H_SGML_BLOCK_DEFAULT=31
2845 # Embedded Javascript
2846 val SCE_HJ_START=40
2847 val SCE_HJ_DEFAULT=41
2848 val SCE_HJ_COMMENT=42
2849 val SCE_HJ_COMMENTLINE=43
2850 val SCE_HJ_COMMENTDOC=44
2851 val SCE_HJ_NUMBER=45
2852 val SCE_HJ_WORD=46
2853 val SCE_HJ_KEYWORD=47
2854 val SCE_HJ_DOUBLESTRING=48
2855 val SCE_HJ_SINGLESTRING=49
2856 val SCE_HJ_SYMBOLS=50
2857 val SCE_HJ_STRINGEOL=51
2858 val SCE_HJ_REGEX=52
2859 # ASP Javascript
2860 val SCE_HJA_START=55
2861 val SCE_HJA_DEFAULT=56
2862 val SCE_HJA_COMMENT=57
2863 val SCE_HJA_COMMENTLINE=58
2864 val SCE_HJA_COMMENTDOC=59
2865 val SCE_HJA_NUMBER=60
2866 val SCE_HJA_WORD=61
2867 val SCE_HJA_KEYWORD=62
2868 val SCE_HJA_DOUBLESTRING=63
2869 val SCE_HJA_SINGLESTRING=64
2870 val SCE_HJA_SYMBOLS=65
2871 val SCE_HJA_STRINGEOL=66
2872 val SCE_HJA_REGEX=67
2873 # Embedded VBScript
2874 val SCE_HB_START=70
2875 val SCE_HB_DEFAULT=71
2876 val SCE_HB_COMMENTLINE=72
2877 val SCE_HB_NUMBER=73
2878 val SCE_HB_WORD=74
2879 val SCE_HB_STRING=75
2880 val SCE_HB_IDENTIFIER=76
2881 val SCE_HB_STRINGEOL=77
2882 # ASP VBScript
2883 val SCE_HBA_START=80
2884 val SCE_HBA_DEFAULT=81
2885 val SCE_HBA_COMMENTLINE=82
2886 val SCE_HBA_NUMBER=83
2887 val SCE_HBA_WORD=84
2888 val SCE_HBA_STRING=85
2889 val SCE_HBA_IDENTIFIER=86
2890 val SCE_HBA_STRINGEOL=87
2891 # Embedded Python
2892 val SCE_HP_START=90
2893 val SCE_HP_DEFAULT=91
2894 val SCE_HP_COMMENTLINE=92
2895 val SCE_HP_NUMBER=93
2896 val SCE_HP_STRING=94
2897 val SCE_HP_CHARACTER=95
2898 val SCE_HP_WORD=96
2899 val SCE_HP_TRIPLE=97
2900 val SCE_HP_TRIPLEDOUBLE=98
2901 val SCE_HP_CLASSNAME=99
2902 val SCE_HP_DEFNAME=100
2903 val SCE_HP_OPERATOR=101
2904 val SCE_HP_IDENTIFIER=102
2905 # PHP
2906 val SCE_HPHP_COMPLEX_VARIABLE=104
2907 # ASP Python
2908 val SCE_HPA_START=105
2909 val SCE_HPA_DEFAULT=106
2910 val SCE_HPA_COMMENTLINE=107
2911 val SCE_HPA_NUMBER=108
2912 val SCE_HPA_STRING=109
2913 val SCE_HPA_CHARACTER=110
2914 val SCE_HPA_WORD=111
2915 val SCE_HPA_TRIPLE=112
2916 val SCE_HPA_TRIPLEDOUBLE=113
2917 val SCE_HPA_CLASSNAME=114
2918 val SCE_HPA_DEFNAME=115
2919 val SCE_HPA_OPERATOR=116
2920 val SCE_HPA_IDENTIFIER=117
2921 # PHP
2922 val SCE_HPHP_DEFAULT=118
2923 val SCE_HPHP_HSTRING=119
2924 val SCE_HPHP_SIMPLESTRING=120
2925 val SCE_HPHP_WORD=121
2926 val SCE_HPHP_NUMBER=122
2927 val SCE_HPHP_VARIABLE=123
2928 val SCE_HPHP_COMMENT=124
2929 val SCE_HPHP_COMMENTLINE=125
2930 val SCE_HPHP_HSTRING_VARIABLE=126
2931 val SCE_HPHP_OPERATOR=127
2932 # Lexical states for SCLEX_PERL
2933 lex Perl=SCLEX_PERL SCE_PL_
2934 val SCE_PL_DEFAULT=0
2935 val SCE_PL_ERROR=1
2936 val SCE_PL_COMMENTLINE=2
2937 val SCE_PL_POD=3
2938 val SCE_PL_NUMBER=4
2939 val SCE_PL_WORD=5
2940 val SCE_PL_STRING=6
2941 val SCE_PL_CHARACTER=7
2942 val SCE_PL_PUNCTUATION=8
2943 val SCE_PL_PREPROCESSOR=9
2944 val SCE_PL_OPERATOR=10
2945 val SCE_PL_IDENTIFIER=11
2946 val SCE_PL_SCALAR=12
2947 val SCE_PL_ARRAY=13
2948 val SCE_PL_HASH=14
2949 val SCE_PL_SYMBOLTABLE=15
2950 val SCE_PL_VARIABLE_INDEXER=16
2951 val SCE_PL_REGEX=17
2952 val SCE_PL_REGSUBST=18
2953 val SCE_PL_LONGQUOTE=19
2954 val SCE_PL_BACKTICKS=20
2955 val SCE_PL_DATASECTION=21
2956 val SCE_PL_HERE_DELIM=22
2957 val SCE_PL_HERE_Q=23
2958 val SCE_PL_HERE_QQ=24
2959 val SCE_PL_HERE_QX=25
2960 val SCE_PL_STRING_Q=26
2961 val SCE_PL_STRING_QQ=27
2962 val SCE_PL_STRING_QX=28
2963 val SCE_PL_STRING_QR=29
2964 val SCE_PL_STRING_QW=30
2965 val SCE_PL_POD_VERB=31
2966 val SCE_PL_SUB_PROTOTYPE=40
2967 val SCE_PL_FORMAT_IDENT=41
2968 val SCE_PL_FORMAT=42
2969 val SCE_PL_STRING_VAR=43
2970 val SCE_PL_XLAT=44
2971 val SCE_PL_REGEX_VAR=54
2972 val SCE_PL_REGSUBST_VAR=55
2973 val SCE_PL_BACKTICKS_VAR=57
2974 val SCE_PL_HERE_QQ_VAR=61
2975 val SCE_PL_HERE_QX_VAR=62
2976 val SCE_PL_STRING_QQ_VAR=64
2977 val SCE_PL_STRING_QX_VAR=65
2978 val SCE_PL_STRING_QR_VAR=66
2979 # Lexical states for SCLEX_RUBY
2980 lex Ruby=SCLEX_RUBY SCE_RB_
2981 val SCE_RB_DEFAULT=0
2982 val SCE_RB_ERROR=1
2983 val SCE_RB_COMMENTLINE=2
2984 val SCE_RB_POD=3
2985 val SCE_RB_NUMBER=4
2986 val SCE_RB_WORD=5
2987 val SCE_RB_STRING=6
2988 val SCE_RB_CHARACTER=7
2989 val SCE_RB_CLASSNAME=8
2990 val SCE_RB_DEFNAME=9
2991 val SCE_RB_OPERATOR=10
2992 val SCE_RB_IDENTIFIER=11
2993 val SCE_RB_REGEX=12
2994 val SCE_RB_GLOBAL=13
2995 val SCE_RB_SYMBOL=14
2996 val SCE_RB_MODULE_NAME=15
2997 val SCE_RB_INSTANCE_VAR=16
2998 val SCE_RB_CLASS_VAR=17
2999 val SCE_RB_BACKTICKS=18
3000 val SCE_RB_DATASECTION=19
3001 val SCE_RB_HERE_DELIM=20
3002 val SCE_RB_HERE_Q=21
3003 val SCE_RB_HERE_QQ=22
3004 val SCE_RB_HERE_QX=23
3005 val SCE_RB_STRING_Q=24
3006 val SCE_RB_STRING_QQ=25
3007 val SCE_RB_STRING_QX=26
3008 val SCE_RB_STRING_QR=27
3009 val SCE_RB_STRING_QW=28
3010 val SCE_RB_WORD_DEMOTED=29
3011 val SCE_RB_STDIN=30
3012 val SCE_RB_STDOUT=31
3013 val SCE_RB_STDERR=40
3014 val SCE_RB_UPPER_BOUND=41
3015 # Lexical states for SCLEX_VB, SCLEX_VBSCRIPT, SCLEX_POWERBASIC
3016 lex VB=SCLEX_VB SCE_B_
3017 lex VBScript=SCLEX_VBSCRIPT SCE_B_
3018 lex PowerBasic=SCLEX_POWERBASIC SCE_B_
3019 val SCE_B_DEFAULT=0
3020 val SCE_B_COMMENT=1
3021 val SCE_B_NUMBER=2
3022 val SCE_B_KEYWORD=3
3023 val SCE_B_STRING=4
3024 val SCE_B_PREPROCESSOR=5
3025 val SCE_B_OPERATOR=6
3026 val SCE_B_IDENTIFIER=7
3027 val SCE_B_DATE=8
3028 val SCE_B_STRINGEOL=9
3029 val SCE_B_KEYWORD2=10
3030 val SCE_B_KEYWORD3=11
3031 val SCE_B_KEYWORD4=12
3032 val SCE_B_CONSTANT=13
3033 val SCE_B_ASM=14
3034 val SCE_B_LABEL=15
3035 val SCE_B_ERROR=16
3036 val SCE_B_HEXNUMBER=17
3037 val SCE_B_BINNUMBER=18
3038 val SCE_B_COMMENTBLOCK=19
3039 val SCE_B_DOCLINE=20
3040 val SCE_B_DOCBLOCK=21
3041 val SCE_B_DOCKEYWORD=22
3042 # Lexical states for SCLEX_PROPERTIES
3043 lex Properties=SCLEX_PROPERTIES SCE_PROPS_
3044 val SCE_PROPS_DEFAULT=0
3045 val SCE_PROPS_COMMENT=1
3046 val SCE_PROPS_SECTION=2
3047 val SCE_PROPS_ASSIGNMENT=3
3048 val SCE_PROPS_DEFVAL=4
3049 val SCE_PROPS_KEY=5
3050 # Lexical states for SCLEX_LATEX
3051 lex LaTeX=SCLEX_LATEX SCE_L_
3052 val SCE_L_DEFAULT=0
3053 val SCE_L_COMMAND=1
3054 val SCE_L_TAG=2
3055 val SCE_L_MATH=3
3056 val SCE_L_COMMENT=4
3057 val SCE_L_TAG2=5
3058 val SCE_L_MATH2=6
3059 val SCE_L_COMMENT2=7
3060 val SCE_L_VERBATIM=8
3061 val SCE_L_SHORTCMD=9
3062 val SCE_L_SPECIAL=10
3063 val SCE_L_CMDOPT=11
3064 val SCE_L_ERROR=12
3065 # Lexical states for SCLEX_LUA
3066 lex Lua=SCLEX_LUA SCE_LUA_
3067 val SCE_LUA_DEFAULT=0
3068 val SCE_LUA_COMMENT=1
3069 val SCE_LUA_COMMENTLINE=2
3070 val SCE_LUA_COMMENTDOC=3
3071 val SCE_LUA_NUMBER=4
3072 val SCE_LUA_WORD=5
3073 val SCE_LUA_STRING=6
3074 val SCE_LUA_CHARACTER=7
3075 val SCE_LUA_LITERALSTRING=8
3076 val SCE_LUA_PREPROCESSOR=9
3077 val SCE_LUA_OPERATOR=10
3078 val SCE_LUA_IDENTIFIER=11
3079 val SCE_LUA_STRINGEOL=12
3080 val SCE_LUA_WORD2=13
3081 val SCE_LUA_WORD3=14
3082 val SCE_LUA_WORD4=15
3083 val SCE_LUA_WORD5=16
3084 val SCE_LUA_WORD6=17
3085 val SCE_LUA_WORD7=18
3086 val SCE_LUA_WORD8=19
3087 val SCE_LUA_LABEL=20
3088 # Lexical states for SCLEX_ERRORLIST
3089 lex ErrorList=SCLEX_ERRORLIST SCE_ERR_
3090 val SCE_ERR_DEFAULT=0
3091 val SCE_ERR_PYTHON=1
3092 val SCE_ERR_GCC=2
3093 val SCE_ERR_MS=3
3094 val SCE_ERR_CMD=4
3095 val SCE_ERR_BORLAND=5
3096 val SCE_ERR_PERL=6
3097 val SCE_ERR_NET=7
3098 val SCE_ERR_LUA=8
3099 val SCE_ERR_CTAG=9
3100 val SCE_ERR_DIFF_CHANGED=10
3101 val SCE_ERR_DIFF_ADDITION=11
3102 val SCE_ERR_DIFF_DELETION=12
3103 val SCE_ERR_DIFF_MESSAGE=13
3104 val SCE_ERR_PHP=14
3105 val SCE_ERR_ELF=15
3106 val SCE_ERR_IFC=16
3107 val SCE_ERR_IFORT=17
3108 val SCE_ERR_ABSF=18
3109 val SCE_ERR_TIDY=19
3110 val SCE_ERR_JAVA_STACK=20
3111 val SCE_ERR_VALUE=21
3112 val SCE_ERR_GCC_INCLUDED_FROM=22
3113 # Lexical states for SCLEX_BATCH
3114 lex Batch=SCLEX_BATCH SCE_BAT_
3115 val SCE_BAT_DEFAULT=0
3116 val SCE_BAT_COMMENT=1
3117 val SCE_BAT_WORD=2
3118 val SCE_BAT_LABEL=3
3119 val SCE_BAT_HIDE=4
3120 val SCE_BAT_COMMAND=5
3121 val SCE_BAT_IDENTIFIER=6
3122 val SCE_BAT_OPERATOR=7
3123 # Lexical states for SCLEX_TCMD
3124 lex TCMD=SCLEX_TCMD SCE_TCMD_
3125 val SCE_TCMD_DEFAULT=0
3126 val SCE_TCMD_COMMENT=1
3127 val SCE_TCMD_WORD=2
3128 val SCE_TCMD_LABEL=3
3129 val SCE_TCMD_HIDE=4
3130 val SCE_TCMD_COMMAND=5
3131 val SCE_TCMD_IDENTIFIER=6
3132 val SCE_TCMD_OPERATOR=7
3133 val SCE_TCMD_ENVIRONMENT=8
3134 val SCE_TCMD_EXPANSION=9
3135 val SCE_TCMD_CLABEL=10
3136 # Lexical states for SCLEX_MAKEFILE
3137 lex MakeFile=SCLEX_MAKEFILE SCE_MAKE_
3138 val SCE_MAKE_DEFAULT=0
3139 val SCE_MAKE_COMMENT=1
3140 val SCE_MAKE_PREPROCESSOR=2
3141 val SCE_MAKE_IDENTIFIER=3
3142 val SCE_MAKE_OPERATOR=4
3143 val SCE_MAKE_TARGET=5
3144 val SCE_MAKE_IDEOL=9
3145 # Lexical states for SCLEX_DIFF
3146 lex Diff=SCLEX_DIFF SCE_DIFF_
3147 val SCE_DIFF_DEFAULT=0
3148 val SCE_DIFF_COMMENT=1
3149 val SCE_DIFF_COMMAND=2
3150 val SCE_DIFF_HEADER=3
3151 val SCE_DIFF_POSITION=4
3152 val SCE_DIFF_DELETED=5
3153 val SCE_DIFF_ADDED=6
3154 val SCE_DIFF_CHANGED=7
3155 # Lexical states for SCLEX_CONF (Apache Configuration Files Lexer)
3156 lex Conf=SCLEX_CONF SCE_CONF_
3157 val SCE_CONF_DEFAULT=0
3158 val SCE_CONF_COMMENT=1
3159 val SCE_CONF_NUMBER=2
3160 val SCE_CONF_IDENTIFIER=3
3161 val SCE_CONF_EXTENSION=4
3162 val SCE_CONF_PARAMETER=5
3163 val SCE_CONF_STRING=6
3164 val SCE_CONF_OPERATOR=7
3165 val SCE_CONF_IP=8
3166 val SCE_CONF_DIRECTIVE=9
3167 # Lexical states for SCLEX_AVE, Avenue
3168 lex Avenue=SCLEX_AVE SCE_AVE_
3169 val SCE_AVE_DEFAULT=0
3170 val SCE_AVE_COMMENT=1
3171 val SCE_AVE_NUMBER=2
3172 val SCE_AVE_WORD=3
3173 val SCE_AVE_STRING=6
3174 val SCE_AVE_ENUM=7
3175 val SCE_AVE_STRINGEOL=8
3176 val SCE_AVE_IDENTIFIER=9
3177 val SCE_AVE_OPERATOR=10
3178 val SCE_AVE_WORD1=11
3179 val SCE_AVE_WORD2=12
3180 val SCE_AVE_WORD3=13
3181 val SCE_AVE_WORD4=14
3182 val SCE_AVE_WORD5=15
3183 val SCE_AVE_WORD6=16
3184 # Lexical states for SCLEX_ADA
3185 lex Ada=SCLEX_ADA SCE_ADA_
3186 val SCE_ADA_DEFAULT=0
3187 val SCE_ADA_WORD=1
3188 val SCE_ADA_IDENTIFIER=2
3189 val SCE_ADA_NUMBER=3
3190 val SCE_ADA_DELIMITER=4
3191 val SCE_ADA_CHARACTER=5
3192 val SCE_ADA_CHARACTEREOL=6
3193 val SCE_ADA_STRING=7
3194 val SCE_ADA_STRINGEOL=8
3195 val SCE_ADA_LABEL=9
3196 val SCE_ADA_COMMENTLINE=10
3197 val SCE_ADA_ILLEGAL=11
3198 # Lexical states for SCLEX_BAAN
3199 lex Baan=SCLEX_BAAN SCE_BAAN_
3200 val SCE_BAAN_DEFAULT=0
3201 val SCE_BAAN_COMMENT=1
3202 val SCE_BAAN_COMMENTDOC=2
3203 val SCE_BAAN_NUMBER=3
3204 val SCE_BAAN_WORD=4
3205 val SCE_BAAN_STRING=5
3206 val SCE_BAAN_PREPROCESSOR=6
3207 val SCE_BAAN_OPERATOR=7
3208 val SCE_BAAN_IDENTIFIER=8
3209 val SCE_BAAN_STRINGEOL=9
3210 val SCE_BAAN_WORD2=10
3211 # Lexical states for SCLEX_LISP
3212 lex Lisp=SCLEX_LISP SCE_LISP_
3213 val SCE_LISP_DEFAULT=0
3214 val SCE_LISP_COMMENT=1
3215 val SCE_LISP_NUMBER=2
3216 val SCE_LISP_KEYWORD=3
3217 val SCE_LISP_KEYWORD_KW=4
3218 val SCE_LISP_SYMBOL=5
3219 val SCE_LISP_STRING=6
3220 val SCE_LISP_STRINGEOL=8
3221 val SCE_LISP_IDENTIFIER=9
3222 val SCE_LISP_OPERATOR=10
3223 val SCE_LISP_SPECIAL=11
3224 val SCE_LISP_MULTI_COMMENT=12
3225 # Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW
3226 lex Eiffel=SCLEX_EIFFEL SCE_EIFFEL_
3227 lex EiffelKW=SCLEX_EIFFELKW SCE_EIFFEL_
3228 val SCE_EIFFEL_DEFAULT=0
3229 val SCE_EIFFEL_COMMENTLINE=1
3230 val SCE_EIFFEL_NUMBER=2
3231 val SCE_EIFFEL_WORD=3
3232 val SCE_EIFFEL_STRING=4
3233 val SCE_EIFFEL_CHARACTER=5
3234 val SCE_EIFFEL_OPERATOR=6
3235 val SCE_EIFFEL_IDENTIFIER=7
3236 val SCE_EIFFEL_STRINGEOL=8
3237 # Lexical states for SCLEX_NNCRONTAB (nnCron crontab Lexer)
3238 lex NNCronTab=SCLEX_NNCRONTAB SCE_NNCRONTAB_
3239 val SCE_NNCRONTAB_DEFAULT=0
3240 val SCE_NNCRONTAB_COMMENT=1
3241 val SCE_NNCRONTAB_TASK=2
3242 val SCE_NNCRONTAB_SECTION=3
3243 val SCE_NNCRONTAB_KEYWORD=4
3244 val SCE_NNCRONTAB_MODIFIER=5
3245 val SCE_NNCRONTAB_ASTERISK=6
3246 val SCE_NNCRONTAB_NUMBER=7
3247 val SCE_NNCRONTAB_STRING=8
3248 val SCE_NNCRONTAB_ENVIRONMENT=9
3249 val SCE_NNCRONTAB_IDENTIFIER=10
3250 # Lexical states for SCLEX_FORTH (Forth Lexer)
3251 lex Forth=SCLEX_FORTH SCE_FORTH_
3252 val SCE_FORTH_DEFAULT=0
3253 val SCE_FORTH_COMMENT=1
3254 val SCE_FORTH_COMMENT_ML=2
3255 val SCE_FORTH_IDENTIFIER=3
3256 val SCE_FORTH_CONTROL=4
3257 val SCE_FORTH_KEYWORD=5
3258 val SCE_FORTH_DEFWORD=6
3259 val SCE_FORTH_PREWORD1=7
3260 val SCE_FORTH_PREWORD2=8
3261 val SCE_FORTH_NUMBER=9
3262 val SCE_FORTH_STRING=10
3263 val SCE_FORTH_LOCALE=11
3264 # Lexical states for SCLEX_MATLAB
3265 lex MatLab=SCLEX_MATLAB SCE_MATLAB_
3266 val SCE_MATLAB_DEFAULT=0
3267 val SCE_MATLAB_COMMENT=1
3268 val SCE_MATLAB_COMMAND=2
3269 val SCE_MATLAB_NUMBER=3
3270 val SCE_MATLAB_KEYWORD=4
3271 # single quoted string
3272 val SCE_MATLAB_STRING=5
3273 val SCE_MATLAB_OPERATOR=6
3274 val SCE_MATLAB_IDENTIFIER=7
3275 val SCE_MATLAB_DOUBLEQUOTESTRING=8
3276 # Lexical states for SCLEX_SCRIPTOL
3277 lex Sol=SCLEX_SCRIPTOL SCE_SCRIPTOL_
3278 val SCE_SCRIPTOL_DEFAULT=0
3279 val SCE_SCRIPTOL_WHITE=1
3280 val SCE_SCRIPTOL_COMMENTLINE=2
3281 val SCE_SCRIPTOL_PERSISTENT=3
3282 val SCE_SCRIPTOL_CSTYLE=4
3283 val SCE_SCRIPTOL_COMMENTBLOCK=5
3284 val SCE_SCRIPTOL_NUMBER=6
3285 val SCE_SCRIPTOL_STRING=7
3286 val SCE_SCRIPTOL_CHARACTER=8
3287 val SCE_SCRIPTOL_STRINGEOL=9
3288 val SCE_SCRIPTOL_KEYWORD=10
3289 val SCE_SCRIPTOL_OPERATOR=11
3290 val SCE_SCRIPTOL_IDENTIFIER=12
3291 val SCE_SCRIPTOL_TRIPLE=13
3292 val SCE_SCRIPTOL_CLASSNAME=14
3293 val SCE_SCRIPTOL_PREPROCESSOR=15
3294 # Lexical states for SCLEX_ASM, SCLEX_AS
3295 lex Asm=SCLEX_ASM SCE_ASM_
3296 lex As=SCLEX_AS SCE_ASM_
3297 val SCE_ASM_DEFAULT=0
3298 val SCE_ASM_COMMENT=1
3299 val SCE_ASM_NUMBER=2
3300 val SCE_ASM_STRING=3
3301 val SCE_ASM_OPERATOR=4
3302 val SCE_ASM_IDENTIFIER=5
3303 val SCE_ASM_CPUINSTRUCTION=6
3304 val SCE_ASM_MATHINSTRUCTION=7
3305 val SCE_ASM_REGISTER=8
3306 val SCE_ASM_DIRECTIVE=9
3307 val SCE_ASM_DIRECTIVEOPERAND=10
3308 val SCE_ASM_COMMENTBLOCK=11
3309 val SCE_ASM_CHARACTER=12
3310 val SCE_ASM_STRINGEOL=13
3311 val SCE_ASM_EXTINSTRUCTION=14
3312 val SCE_ASM_COMMENTDIRECTIVE=15
3313 # Lexical states for SCLEX_FORTRAN
3314 lex Fortran=SCLEX_FORTRAN SCE_F_
3315 lex F77=SCLEX_F77 SCE_F_
3316 val SCE_F_DEFAULT=0
3317 val SCE_F_COMMENT=1
3318 val SCE_F_NUMBER=2
3319 val SCE_F_STRING1=3
3320 val SCE_F_STRING2=4
3321 val SCE_F_STRINGEOL=5
3322 val SCE_F_OPERATOR=6
3323 val SCE_F_IDENTIFIER=7
3324 val SCE_F_WORD=8
3325 val SCE_F_WORD2=9
3326 val SCE_F_WORD3=10
3327 val SCE_F_PREPROCESSOR=11
3328 val SCE_F_OPERATOR2=12
3329 val SCE_F_LABEL=13
3330 val SCE_F_CONTINUATION=14
3331 # Lexical states for SCLEX_CSS
3332 lex CSS=SCLEX_CSS SCE_CSS_
3333 val SCE_CSS_DEFAULT=0
3334 val SCE_CSS_TAG=1
3335 val SCE_CSS_CLASS=2
3336 val SCE_CSS_PSEUDOCLASS=3
3337 val SCE_CSS_UNKNOWN_PSEUDOCLASS=4
3338 val SCE_CSS_OPERATOR=5
3339 val SCE_CSS_IDENTIFIER=6
3340 val SCE_CSS_UNKNOWN_IDENTIFIER=7
3341 val SCE_CSS_VALUE=8
3342 val SCE_CSS_COMMENT=9
3343 val SCE_CSS_ID=10
3344 val SCE_CSS_IMPORTANT=11
3345 val SCE_CSS_DIRECTIVE=12
3346 val SCE_CSS_DOUBLESTRING=13
3347 val SCE_CSS_SINGLESTRING=14
3348 val SCE_CSS_IDENTIFIER2=15
3349 val SCE_CSS_ATTRIBUTE=16
3350 val SCE_CSS_IDENTIFIER3=17
3351 val SCE_CSS_PSEUDOELEMENT=18
3352 val SCE_CSS_EXTENDED_IDENTIFIER=19
3353 val SCE_CSS_EXTENDED_PSEUDOCLASS=20
3354 val SCE_CSS_EXTENDED_PSEUDOELEMENT=21
3355 val SCE_CSS_MEDIA=22
3356 val SCE_CSS_VARIABLE=23
3357 # Lexical states for SCLEX_POV
3358 lex POV=SCLEX_POV SCE_POV_
3359 val SCE_POV_DEFAULT=0
3360 val SCE_POV_COMMENT=1
3361 val SCE_POV_COMMENTLINE=2
3362 val SCE_POV_NUMBER=3
3363 val SCE_POV_OPERATOR=4
3364 val SCE_POV_IDENTIFIER=5
3365 val SCE_POV_STRING=6
3366 val SCE_POV_STRINGEOL=7
3367 val SCE_POV_DIRECTIVE=8
3368 val SCE_POV_BADDIRECTIVE=9
3369 val SCE_POV_WORD2=10
3370 val SCE_POV_WORD3=11
3371 val SCE_POV_WORD4=12
3372 val SCE_POV_WORD5=13
3373 val SCE_POV_WORD6=14
3374 val SCE_POV_WORD7=15
3375 val SCE_POV_WORD8=16
3376 # Lexical states for SCLEX_LOUT
3377 lex LOUT=SCLEX_LOUT SCE_LOUT_
3378 val SCE_LOUT_DEFAULT=0
3379 val SCE_LOUT_COMMENT=1
3380 val SCE_LOUT_NUMBER=2
3381 val SCE_LOUT_WORD=3
3382 val SCE_LOUT_WORD2=4
3383 val SCE_LOUT_WORD3=5
3384 val SCE_LOUT_WORD4=6
3385 val SCE_LOUT_STRING=7
3386 val SCE_LOUT_OPERATOR=8
3387 val SCE_LOUT_IDENTIFIER=9
3388 val SCE_LOUT_STRINGEOL=10
3389 # Lexical states for SCLEX_ESCRIPT
3390 lex ESCRIPT=SCLEX_ESCRIPT SCE_ESCRIPT_
3391 val SCE_ESCRIPT_DEFAULT=0
3392 val SCE_ESCRIPT_COMMENT=1
3393 val SCE_ESCRIPT_COMMENTLINE=2
3394 val SCE_ESCRIPT_COMMENTDOC=3
3395 val SCE_ESCRIPT_NUMBER=4
3396 val SCE_ESCRIPT_WORD=5
3397 val SCE_ESCRIPT_STRING=6
3398 val SCE_ESCRIPT_OPERATOR=7
3399 val SCE_ESCRIPT_IDENTIFIER=8
3400 val SCE_ESCRIPT_BRACE=9
3401 val SCE_ESCRIPT_WORD2=10
3402 val SCE_ESCRIPT_WORD3=11
3403 # Lexical states for SCLEX_PS
3404 lex PS=SCLEX_PS SCE_PS_
3405 val SCE_PS_DEFAULT=0
3406 val SCE_PS_COMMENT=1
3407 val SCE_PS_DSC_COMMENT=2
3408 val SCE_PS_DSC_VALUE=3
3409 val SCE_PS_NUMBER=4
3410 val SCE_PS_NAME=5
3411 val SCE_PS_KEYWORD=6
3412 val SCE_PS_LITERAL=7
3413 val SCE_PS_IMMEVAL=8
3414 val SCE_PS_PAREN_ARRAY=9
3415 val SCE_PS_PAREN_DICT=10
3416 val SCE_PS_PAREN_PROC=11
3417 val SCE_PS_TEXT=12
3418 val SCE_PS_HEXSTRING=13
3419 val SCE_PS_BASE85STRING=14
3420 val SCE_PS_BADSTRINGCHAR=15
3421 # Lexical states for SCLEX_NSIS
3422 lex NSIS=SCLEX_NSIS SCE_NSIS_
3423 val SCE_NSIS_DEFAULT=0
3424 val SCE_NSIS_COMMENT=1
3425 val SCE_NSIS_STRINGDQ=2
3426 val SCE_NSIS_STRINGLQ=3
3427 val SCE_NSIS_STRINGRQ=4
3428 val SCE_NSIS_FUNCTION=5
3429 val SCE_NSIS_VARIABLE=6
3430 val SCE_NSIS_LABEL=7
3431 val SCE_NSIS_USERDEFINED=8
3432 val SCE_NSIS_SECTIONDEF=9
3433 val SCE_NSIS_SUBSECTIONDEF=10
3434 val SCE_NSIS_IFDEFINEDEF=11
3435 val SCE_NSIS_MACRODEF=12
3436 val SCE_NSIS_STRINGVAR=13
3437 val SCE_NSIS_NUMBER=14
3438 val SCE_NSIS_SECTIONGROUP=15
3439 val SCE_NSIS_PAGEEX=16
3440 val SCE_NSIS_FUNCTIONDEF=17
3441 val SCE_NSIS_COMMENTBOX=18
3442 # Lexical states for SCLEX_MMIXAL
3443 lex MMIXAL=SCLEX_MMIXAL SCE_MMIXAL_
3444 val SCE_MMIXAL_LEADWS=0
3445 val SCE_MMIXAL_COMMENT=1
3446 val SCE_MMIXAL_LABEL=2
3447 val SCE_MMIXAL_OPCODE=3
3448 val SCE_MMIXAL_OPCODE_PRE=4
3449 val SCE_MMIXAL_OPCODE_VALID=5
3450 val SCE_MMIXAL_OPCODE_UNKNOWN=6
3451 val SCE_MMIXAL_OPCODE_POST=7
3452 val SCE_MMIXAL_OPERANDS=8
3453 val SCE_MMIXAL_NUMBER=9
3454 val SCE_MMIXAL_REF=10
3455 val SCE_MMIXAL_CHAR=11
3456 val SCE_MMIXAL_STRING=12
3457 val SCE_MMIXAL_REGISTER=13
3458 val SCE_MMIXAL_HEX=14
3459 val SCE_MMIXAL_OPERATOR=15
3460 val SCE_MMIXAL_SYMBOL=16
3461 val SCE_MMIXAL_INCLUDE=17
3462 # Lexical states for SCLEX_CLW
3463 lex Clarion=SCLEX_CLW SCE_CLW_
3464 val SCE_CLW_DEFAULT=0
3465 val SCE_CLW_LABEL=1
3466 val SCE_CLW_COMMENT=2
3467 val SCE_CLW_STRING=3
3468 val SCE_CLW_USER_IDENTIFIER=4
3469 val SCE_CLW_INTEGER_CONSTANT=5
3470 val SCE_CLW_REAL_CONSTANT=6
3471 val SCE_CLW_PICTURE_STRING=7
3472 val SCE_CLW_KEYWORD=8
3473 val SCE_CLW_COMPILER_DIRECTIVE=9
3474 val SCE_CLW_RUNTIME_EXPRESSIONS=10
3475 val SCE_CLW_BUILTIN_PROCEDURES_FUNCTION=11
3476 val SCE_CLW_STRUCTURE_DATA_TYPE=12
3477 val SCE_CLW_ATTRIBUTE=13
3478 val SCE_CLW_STANDARD_EQUATE=14
3479 val SCE_CLW_ERROR=15
3480 val SCE_CLW_DEPRECATED=16
3481 # Lexical states for SCLEX_LOT
3482 lex LOT=SCLEX_LOT SCE_LOT_
3483 val SCE_LOT_DEFAULT=0
3484 val SCE_LOT_HEADER=1
3485 val SCE_LOT_BREAK=2
3486 val SCE_LOT_SET=3
3487 val SCE_LOT_PASS=4
3488 val SCE_LOT_FAIL=5
3489 val SCE_LOT_ABORT=6
3490 # Lexical states for SCLEX_YAML
3491 lex YAML=SCLEX_YAML SCE_YAML_
3492 val SCE_YAML_DEFAULT=0
3493 val SCE_YAML_COMMENT=1
3494 val SCE_YAML_IDENTIFIER=2
3495 val SCE_YAML_KEYWORD=3
3496 val SCE_YAML_NUMBER=4
3497 val SCE_YAML_REFERENCE=5
3498 val SCE_YAML_DOCUMENT=6
3499 val SCE_YAML_TEXT=7
3500 val SCE_YAML_ERROR=8
3501 val SCE_YAML_OPERATOR=9
3502 # Lexical states for SCLEX_TEX
3503 lex TeX=SCLEX_TEX SCE_TEX_
3504 val SCE_TEX_DEFAULT=0
3505 val SCE_TEX_SPECIAL=1
3506 val SCE_TEX_GROUP=2
3507 val SCE_TEX_SYMBOL=3
3508 val SCE_TEX_COMMAND=4
3509 val SCE_TEX_TEXT=5
3510 lex Metapost=SCLEX_METAPOST SCE_METAPOST_
3511 val SCE_METAPOST_DEFAULT=0
3512 val SCE_METAPOST_SPECIAL=1
3513 val SCE_METAPOST_GROUP=2
3514 val SCE_METAPOST_SYMBOL=3
3515 val SCE_METAPOST_COMMAND=4
3516 val SCE_METAPOST_TEXT=5
3517 val SCE_METAPOST_EXTRA=6
3518 # Lexical states for SCLEX_ERLANG
3519 lex Erlang=SCLEX_ERLANG SCE_ERLANG_
3520 val SCE_ERLANG_DEFAULT=0
3521 val SCE_ERLANG_COMMENT=1
3522 val SCE_ERLANG_VARIABLE=2
3523 val SCE_ERLANG_NUMBER=3
3524 val SCE_ERLANG_KEYWORD=4
3525 val SCE_ERLANG_STRING=5
3526 val SCE_ERLANG_OPERATOR=6
3527 val SCE_ERLANG_ATOM=7
3528 val SCE_ERLANG_FUNCTION_NAME=8
3529 val SCE_ERLANG_CHARACTER=9
3530 val SCE_ERLANG_MACRO=10
3531 val SCE_ERLANG_RECORD=11
3532 val SCE_ERLANG_PREPROC=12
3533 val SCE_ERLANG_NODE_NAME=13
3534 val SCE_ERLANG_COMMENT_FUNCTION=14
3535 val SCE_ERLANG_COMMENT_MODULE=15
3536 val SCE_ERLANG_COMMENT_DOC=16
3537 val SCE_ERLANG_COMMENT_DOC_MACRO=17
3538 val SCE_ERLANG_ATOM_QUOTED=18
3539 val SCE_ERLANG_MACRO_QUOTED=19
3540 val SCE_ERLANG_RECORD_QUOTED=20
3541 val SCE_ERLANG_NODE_NAME_QUOTED=21
3542 val SCE_ERLANG_BIFS=22
3543 val SCE_ERLANG_MODULES=23
3544 val SCE_ERLANG_MODULES_ATT=24
3545 val SCE_ERLANG_UNKNOWN=31
3546 # Lexical states for SCLEX_OCTAVE are identical to MatLab
3547 lex Octave=SCLEX_OCTAVE SCE_MATLAB_
3548 # Lexical states for SCLEX_MSSQL
3549 lex MSSQL=SCLEX_MSSQL SCE_MSSQL_
3550 val SCE_MSSQL_DEFAULT=0
3551 val SCE_MSSQL_COMMENT=1
3552 val SCE_MSSQL_LINE_COMMENT=2
3553 val SCE_MSSQL_NUMBER=3
3554 val SCE_MSSQL_STRING=4
3555 val SCE_MSSQL_OPERATOR=5
3556 val SCE_MSSQL_IDENTIFIER=6
3557 val SCE_MSSQL_VARIABLE=7
3558 val SCE_MSSQL_COLUMN_NAME=8
3559 val SCE_MSSQL_STATEMENT=9
3560 val SCE_MSSQL_DATATYPE=10
3561 val SCE_MSSQL_SYSTABLE=11
3562 val SCE_MSSQL_GLOBAL_VARIABLE=12
3563 val SCE_MSSQL_FUNCTION=13
3564 val SCE_MSSQL_STORED_PROCEDURE=14
3565 val SCE_MSSQL_DEFAULT_PREF_DATATYPE=15
3566 val SCE_MSSQL_COLUMN_NAME_2=16
3567 # Lexical states for SCLEX_VERILOG
3568 lex Verilog=SCLEX_VERILOG SCE_V_
3569 val SCE_V_DEFAULT=0
3570 val SCE_V_COMMENT=1
3571 val SCE_V_COMMENTLINE=2
3572 val SCE_V_COMMENTLINEBANG=3
3573 val SCE_V_NUMBER=4
3574 val SCE_V_WORD=5
3575 val SCE_V_STRING=6
3576 val SCE_V_WORD2=7
3577 val SCE_V_WORD3=8
3578 val SCE_V_PREPROCESSOR=9
3579 val SCE_V_OPERATOR=10
3580 val SCE_V_IDENTIFIER=11
3581 val SCE_V_STRINGEOL=12
3582 val SCE_V_USER=19
3583 # Lexical states for SCLEX_KIX
3584 lex Kix=SCLEX_KIX SCE_KIX_
3585 val SCE_KIX_DEFAULT=0
3586 val SCE_KIX_COMMENT=1
3587 val SCE_KIX_STRING1=2
3588 val SCE_KIX_STRING2=3
3589 val SCE_KIX_NUMBER=4
3590 val SCE_KIX_VAR=5
3591 val SCE_KIX_MACRO=6
3592 val SCE_KIX_KEYWORD=7
3593 val SCE_KIX_FUNCTIONS=8
3594 val SCE_KIX_OPERATOR=9
3595 val SCE_KIX_COMMENTSTREAM=10
3596 val SCE_KIX_IDENTIFIER=31
3597 # Lexical states for SCLEX_GUI4CLI
3598 lex Gui4Cli=SCLEX_GUI4CLI SCE_GC_
3599 val SCE_GC_DEFAULT=0
3600 val SCE_GC_COMMENTLINE=1
3601 val SCE_GC_COMMENTBLOCK=2
3602 val SCE_GC_GLOBAL=3
3603 val SCE_GC_EVENT=4
3604 val SCE_GC_ATTRIBUTE=5
3605 val SCE_GC_CONTROL=6
3606 val SCE_GC_COMMAND=7
3607 val SCE_GC_STRING=8
3608 val SCE_GC_OPERATOR=9
3609 # Lexical states for SCLEX_SPECMAN
3610 lex Specman=SCLEX_SPECMAN SCE_SN_
3611 val SCE_SN_DEFAULT=0
3612 val SCE_SN_CODE=1
3613 val SCE_SN_COMMENTLINE=2
3614 val SCE_SN_COMMENTLINEBANG=3
3615 val SCE_SN_NUMBER=4
3616 val SCE_SN_WORD=5
3617 val SCE_SN_STRING=6
3618 val SCE_SN_WORD2=7
3619 val SCE_SN_WORD3=8
3620 val SCE_SN_PREPROCESSOR=9
3621 val SCE_SN_OPERATOR=10
3622 val SCE_SN_IDENTIFIER=11
3623 val SCE_SN_STRINGEOL=12
3624 val SCE_SN_REGEXTAG=13
3625 val SCE_SN_SIGNAL=14
3626 val SCE_SN_USER=19
3627 # Lexical states for SCLEX_AU3
3628 lex Au3=SCLEX_AU3 SCE_AU3_
3629 val SCE_AU3_DEFAULT=0
3630 val SCE_AU3_COMMENT=1
3631 val SCE_AU3_COMMENTBLOCK=2
3632 val SCE_AU3_NUMBER=3
3633 val SCE_AU3_FUNCTION=4
3634 val SCE_AU3_KEYWORD=5
3635 val SCE_AU3_MACRO=6
3636 val SCE_AU3_STRING=7
3637 val SCE_AU3_OPERATOR=8
3638 val SCE_AU3_VARIABLE=9
3639 val SCE_AU3_SENT=10
3640 val SCE_AU3_PREPROCESSOR=11
3641 val SCE_AU3_SPECIAL=12
3642 val SCE_AU3_EXPAND=13
3643 val SCE_AU3_COMOBJ=14
3644 val SCE_AU3_UDF=15
3645 # Lexical states for SCLEX_APDL
3646 lex APDL=SCLEX_APDL SCE_APDL_
3647 val SCE_APDL_DEFAULT=0
3648 val SCE_APDL_COMMENT=1
3649 val SCE_APDL_COMMENTBLOCK=2
3650 val SCE_APDL_NUMBER=3
3651 val SCE_APDL_STRING=4
3652 val SCE_APDL_OPERATOR=5
3653 val SCE_APDL_WORD=6
3654 val SCE_APDL_PROCESSOR=7
3655 val SCE_APDL_COMMAND=8
3656 val SCE_APDL_SLASHCOMMAND=9
3657 val SCE_APDL_STARCOMMAND=10
3658 val SCE_APDL_ARGUMENT=11
3659 val SCE_APDL_FUNCTION=12
3660 # Lexical states for SCLEX_BASH
3661 lex Bash=SCLEX_BASH SCE_SH_
3662 val SCE_SH_DEFAULT=0
3663 val SCE_SH_ERROR=1
3664 val SCE_SH_COMMENTLINE=2
3665 val SCE_SH_NUMBER=3
3666 val SCE_SH_WORD=4
3667 val SCE_SH_STRING=5
3668 val SCE_SH_CHARACTER=6
3669 val SCE_SH_OPERATOR=7
3670 val SCE_SH_IDENTIFIER=8
3671 val SCE_SH_SCALAR=9
3672 val SCE_SH_PARAM=10
3673 val SCE_SH_BACKTICKS=11
3674 val SCE_SH_HERE_DELIM=12
3675 val SCE_SH_HERE_Q=13
3676 # Lexical states for SCLEX_ASN1
3677 lex Asn1=SCLEX_ASN1 SCE_ASN1_
3678 val SCE_ASN1_DEFAULT=0
3679 val SCE_ASN1_COMMENT=1
3680 val SCE_ASN1_IDENTIFIER=2
3681 val SCE_ASN1_STRING=3
3682 val SCE_ASN1_OID=4
3683 val SCE_ASN1_SCALAR=5
3684 val SCE_ASN1_KEYWORD=6
3685 val SCE_ASN1_ATTRIBUTE=7
3686 val SCE_ASN1_DESCRIPTOR=8
3687 val SCE_ASN1_TYPE=9
3688 val SCE_ASN1_OPERATOR=10
3689 # Lexical states for SCLEX_VHDL
3690 lex VHDL=SCLEX_VHDL SCE_VHDL_
3691 val SCE_VHDL_DEFAULT=0
3692 val SCE_VHDL_COMMENT=1
3693 val SCE_VHDL_COMMENTLINEBANG=2
3694 val SCE_VHDL_NUMBER=3
3695 val SCE_VHDL_STRING=4
3696 val SCE_VHDL_OPERATOR=5
3697 val SCE_VHDL_IDENTIFIER=6
3698 val SCE_VHDL_STRINGEOL=7
3699 val SCE_VHDL_KEYWORD=8
3700 val SCE_VHDL_STDOPERATOR=9
3701 val SCE_VHDL_ATTRIBUTE=10
3702 val SCE_VHDL_STDFUNCTION=11
3703 val SCE_VHDL_STDPACKAGE=12
3704 val SCE_VHDL_STDTYPE=13
3705 val SCE_VHDL_USERWORD=14
3706 # Lexical states for SCLEX_CAML
3707 lex Caml=SCLEX_CAML SCE_CAML_
3708 val SCE_CAML_DEFAULT=0
3709 val SCE_CAML_IDENTIFIER=1
3710 val SCE_CAML_TAGNAME=2
3711 val SCE_CAML_KEYWORD=3
3712 val SCE_CAML_KEYWORD2=4
3713 val SCE_CAML_KEYWORD3=5
3714 val SCE_CAML_LINENUM=6
3715 val SCE_CAML_OPERATOR=7
3716 val SCE_CAML_NUMBER=8
3717 val SCE_CAML_CHAR=9
3718 val SCE_CAML_WHITE=10
3719 val SCE_CAML_STRING=11
3720 val SCE_CAML_COMMENT=12
3721 val SCE_CAML_COMMENT1=13
3722 val SCE_CAML_COMMENT2=14
3723 val SCE_CAML_COMMENT3=15
3724 # Lexical states for SCLEX_HASKELL
3725 lex Haskell=SCLEX_HASKELL SCE_HA_
3726 val SCE_HA_DEFAULT=0
3727 val SCE_HA_IDENTIFIER=1
3728 val SCE_HA_KEYWORD=2
3729 val SCE_HA_NUMBER=3
3730 val SCE_HA_STRING=4
3731 val SCE_HA_CHARACTER=5
3732 val SCE_HA_CLASS=6
3733 val SCE_HA_MODULE=7
3734 val SCE_HA_CAPITAL=8
3735 val SCE_HA_DATA=9
3736 val SCE_HA_IMPORT=10
3737 val SCE_HA_OPERATOR=11
3738 val SCE_HA_INSTANCE=12
3739 val SCE_HA_COMMENTLINE=13
3740 val SCE_HA_COMMENTBLOCK=14
3741 val SCE_HA_COMMENTBLOCK2=15
3742 val SCE_HA_COMMENTBLOCK3=16
3743 val SCE_HA_PRAGMA=17
3744 val SCE_HA_PREPROCESSOR=18
3745 val SCE_HA_STRINGEOL=19
3746 val SCE_HA_RESERVED_OPERATOR=20
3747 val SCE_HA_LITERATE_COMMENT=21
3748 val SCE_HA_LITERATE_CODEDELIM=22
3749 # Lexical states of SCLEX_TADS3
3750 lex TADS3=SCLEX_TADS3 SCE_T3_
3751 val SCE_T3_DEFAULT=0
3752 val SCE_T3_X_DEFAULT=1
3753 val SCE_T3_PREPROCESSOR=2
3754 val SCE_T3_BLOCK_COMMENT=3
3755 val SCE_T3_LINE_COMMENT=4
3756 val SCE_T3_OPERATOR=5
3757 val SCE_T3_KEYWORD=6
3758 val SCE_T3_NUMBER=7
3759 val SCE_T3_IDENTIFIER=8
3760 val SCE_T3_S_STRING=9
3761 val SCE_T3_D_STRING=10
3762 val SCE_T3_X_STRING=11
3763 val SCE_T3_LIB_DIRECTIVE=12
3764 val SCE_T3_MSG_PARAM=13
3765 val SCE_T3_HTML_TAG=14
3766 val SCE_T3_HTML_DEFAULT=15
3767 val SCE_T3_HTML_STRING=16
3768 val SCE_T3_USER1=17
3769 val SCE_T3_USER2=18
3770 val SCE_T3_USER3=19
3771 val SCE_T3_BRACE=20
3772 # Lexical states for SCLEX_REBOL
3773 lex Rebol=SCLEX_REBOL SCE_REBOL_
3774 val SCE_REBOL_DEFAULT=0
3775 val SCE_REBOL_COMMENTLINE=1
3776 val SCE_REBOL_COMMENTBLOCK=2
3777 val SCE_REBOL_PREFACE=3
3778 val SCE_REBOL_OPERATOR=4
3779 val SCE_REBOL_CHARACTER=5
3780 val SCE_REBOL_QUOTEDSTRING=6
3781 val SCE_REBOL_BRACEDSTRING=7
3782 val SCE_REBOL_NUMBER=8
3783 val SCE_REBOL_PAIR=9
3784 val SCE_REBOL_TUPLE=10
3785 val SCE_REBOL_BINARY=11
3786 val SCE_REBOL_MONEY=12
3787 val SCE_REBOL_ISSUE=13
3788 val SCE_REBOL_TAG=14
3789 val SCE_REBOL_FILE=15
3790 val SCE_REBOL_EMAIL=16
3791 val SCE_REBOL_URL=17
3792 val SCE_REBOL_DATE=18
3793 val SCE_REBOL_TIME=19
3794 val SCE_REBOL_IDENTIFIER=20
3795 val SCE_REBOL_WORD=21
3796 val SCE_REBOL_WORD2=22
3797 val SCE_REBOL_WORD3=23
3798 val SCE_REBOL_WORD4=24
3799 val SCE_REBOL_WORD5=25
3800 val SCE_REBOL_WORD6=26
3801 val SCE_REBOL_WORD7=27
3802 val SCE_REBOL_WORD8=28
3803 # Lexical states for SCLEX_SQL
3804 lex SQL=SCLEX_SQL SCE_SQL_
3805 val SCE_SQL_DEFAULT=0
3806 val SCE_SQL_COMMENT=1
3807 val SCE_SQL_COMMENTLINE=2
3808 val SCE_SQL_COMMENTDOC=3
3809 val SCE_SQL_NUMBER=4
3810 val SCE_SQL_WORD=5
3811 val SCE_SQL_STRING=6
3812 val SCE_SQL_CHARACTER=7
3813 val SCE_SQL_SQLPLUS=8
3814 val SCE_SQL_SQLPLUS_PROMPT=9
3815 val SCE_SQL_OPERATOR=10
3816 val SCE_SQL_IDENTIFIER=11
3817 val SCE_SQL_SQLPLUS_COMMENT=13
3818 val SCE_SQL_COMMENTLINEDOC=15
3819 val SCE_SQL_WORD2=16
3820 val SCE_SQL_COMMENTDOCKEYWORD=17
3821 val SCE_SQL_COMMENTDOCKEYWORDERROR=18
3822 val SCE_SQL_USER1=19
3823 val SCE_SQL_USER2=20
3824 val SCE_SQL_USER3=21
3825 val SCE_SQL_USER4=22
3826 val SCE_SQL_QUOTEDIDENTIFIER=23
3827 # Lexical states for SCLEX_SMALLTALK
3828 lex Smalltalk=SCLEX_SMALLTALK SCE_ST_
3829 val SCE_ST_DEFAULT=0
3830 val SCE_ST_STRING=1
3831 val SCE_ST_NUMBER=2
3832 val SCE_ST_COMMENT=3
3833 val SCE_ST_SYMBOL=4
3834 val SCE_ST_BINARY=5
3835 val SCE_ST_BOOL=6
3836 val SCE_ST_SELF=7
3837 val SCE_ST_SUPER=8
3838 val SCE_ST_NIL=9
3839 val SCE_ST_GLOBAL=10
3840 val SCE_ST_RETURN=11
3841 val SCE_ST_SPECIAL=12
3842 val SCE_ST_KWSEND=13
3843 val SCE_ST_ASSIGN=14
3844 val SCE_ST_CHARACTER=15
3845 val SCE_ST_SPEC_SEL=16
3846 # Lexical states for SCLEX_FLAGSHIP (clipper)
3847 lex FlagShip=SCLEX_FLAGSHIP SCE_FS_
3848 val SCE_FS_DEFAULT=0
3849 val SCE_FS_COMMENT=1
3850 val SCE_FS_COMMENTLINE=2
3851 val SCE_FS_COMMENTDOC=3
3852 val SCE_FS_COMMENTLINEDOC=4
3853 val SCE_FS_COMMENTDOCKEYWORD=5
3854 val SCE_FS_COMMENTDOCKEYWORDERROR=6
3855 val SCE_FS_KEYWORD=7
3856 val SCE_FS_KEYWORD2=8
3857 val SCE_FS_KEYWORD3=9
3858 val SCE_FS_KEYWORD4=10
3859 val SCE_FS_NUMBER=11
3860 val SCE_FS_STRING=12
3861 val SCE_FS_PREPROCESSOR=13
3862 val SCE_FS_OPERATOR=14
3863 val SCE_FS_IDENTIFIER=15
3864 val SCE_FS_DATE=16
3865 val SCE_FS_STRINGEOL=17
3866 val SCE_FS_CONSTANT=18
3867 val SCE_FS_WORDOPERATOR=19
3868 val SCE_FS_DISABLEDCODE=20
3869 val SCE_FS_DEFAULT_C=21
3870 val SCE_FS_COMMENTDOC_C=22
3871 val SCE_FS_COMMENTLINEDOC_C=23
3872 val SCE_FS_KEYWORD_C=24
3873 val SCE_FS_KEYWORD2_C=25
3874 val SCE_FS_NUMBER_C=26
3875 val SCE_FS_STRING_C=27
3876 val SCE_FS_PREPROCESSOR_C=28
3877 val SCE_FS_OPERATOR_C=29
3878 val SCE_FS_IDENTIFIER_C=30
3879 val SCE_FS_STRINGEOL_C=31
3880 # Lexical states for SCLEX_CSOUND
3881 lex Csound=SCLEX_CSOUND SCE_CSOUND_
3882 val SCE_CSOUND_DEFAULT=0
3883 val SCE_CSOUND_COMMENT=1
3884 val SCE_CSOUND_NUMBER=2
3885 val SCE_CSOUND_OPERATOR=3
3886 val SCE_CSOUND_INSTR=4
3887 val SCE_CSOUND_IDENTIFIER=5
3888 val SCE_CSOUND_OPCODE=6
3889 val SCE_CSOUND_HEADERSTMT=7
3890 val SCE_CSOUND_USERKEYWORD=8
3891 val SCE_CSOUND_COMMENTBLOCK=9
3892 val SCE_CSOUND_PARAM=10
3893 val SCE_CSOUND_ARATE_VAR=11
3894 val SCE_CSOUND_KRATE_VAR=12
3895 val SCE_CSOUND_IRATE_VAR=13
3896 val SCE_CSOUND_GLOBAL_VAR=14
3897 val SCE_CSOUND_STRINGEOL=15
3898 # Lexical states for SCLEX_INNOSETUP
3899 lex Inno=SCLEX_INNOSETUP SCE_INNO_
3900 val SCE_INNO_DEFAULT=0
3901 val SCE_INNO_COMMENT=1
3902 val SCE_INNO_KEYWORD=2
3903 val SCE_INNO_PARAMETER=3
3904 val SCE_INNO_SECTION=4
3905 val SCE_INNO_PREPROC=5
3906 val SCE_INNO_INLINE_EXPANSION=6
3907 val SCE_INNO_COMMENT_PASCAL=7
3908 val SCE_INNO_KEYWORD_PASCAL=8
3909 val SCE_INNO_KEYWORD_USER=9
3910 val SCE_INNO_STRING_DOUBLE=10
3911 val SCE_INNO_STRING_SINGLE=11
3912 val SCE_INNO_IDENTIFIER=12
3913 # Lexical states for SCLEX_OPAL
3914 lex Opal=SCLEX_OPAL SCE_OPAL_
3915 val SCE_OPAL_SPACE=0
3916 val SCE_OPAL_COMMENT_BLOCK=1
3917 val SCE_OPAL_COMMENT_LINE=2
3918 val SCE_OPAL_INTEGER=3
3919 val SCE_OPAL_KEYWORD=4
3920 val SCE_OPAL_SORT=5
3921 val SCE_OPAL_STRING=6
3922 val SCE_OPAL_PAR=7
3923 val SCE_OPAL_BOOL_CONST=8
3924 val SCE_OPAL_DEFAULT=32
3925 # Lexical states for SCLEX_SPICE
3926 lex Spice=SCLEX_SPICE SCE_SPICE_
3927 val SCE_SPICE_DEFAULT=0
3928 val SCE_SPICE_IDENTIFIER=1
3929 val SCE_SPICE_KEYWORD=2
3930 val SCE_SPICE_KEYWORD2=3
3931 val SCE_SPICE_KEYWORD3=4
3932 val SCE_SPICE_NUMBER=5
3933 val SCE_SPICE_DELIMITER=6
3934 val SCE_SPICE_VALUE=7
3935 val SCE_SPICE_COMMENTLINE=8
3936 # Lexical states for SCLEX_CMAKE
3937 lex CMAKE=SCLEX_CMAKE SCE_CMAKE_
3938 val SCE_CMAKE_DEFAULT=0
3939 val SCE_CMAKE_COMMENT=1
3940 val SCE_CMAKE_STRINGDQ=2
3941 val SCE_CMAKE_STRINGLQ=3
3942 val SCE_CMAKE_STRINGRQ=4
3943 val SCE_CMAKE_COMMANDS=5
3944 val SCE_CMAKE_PARAMETERS=6
3945 val SCE_CMAKE_VARIABLE=7
3946 val SCE_CMAKE_USERDEFINED=8
3947 val SCE_CMAKE_WHILEDEF=9
3948 val SCE_CMAKE_FOREACHDEF=10
3949 val SCE_CMAKE_IFDEFINEDEF=11
3950 val SCE_CMAKE_MACRODEF=12
3951 val SCE_CMAKE_STRINGVAR=13
3952 val SCE_CMAKE_NUMBER=14
3953 # Lexical states for SCLEX_GAP
3954 lex Gap=SCLEX_GAP SCE_GAP_
3955 val SCE_GAP_DEFAULT=0
3956 val SCE_GAP_IDENTIFIER=1
3957 val SCE_GAP_KEYWORD=2
3958 val SCE_GAP_KEYWORD2=3
3959 val SCE_GAP_KEYWORD3=4
3960 val SCE_GAP_KEYWORD4=5
3961 val SCE_GAP_STRING=6
3962 val SCE_GAP_CHAR=7
3963 val SCE_GAP_OPERATOR=8
3964 val SCE_GAP_COMMENT=9
3965 val SCE_GAP_NUMBER=10
3966 val SCE_GAP_STRINGEOL=11
3967 # Lexical state for SCLEX_PLM
3968 lex PLM=SCLEX_PLM SCE_PLM_
3969 val SCE_PLM_DEFAULT=0
3970 val SCE_PLM_COMMENT=1
3971 val SCE_PLM_STRING=2
3972 val SCE_PLM_NUMBER=3
3973 val SCE_PLM_IDENTIFIER=4
3974 val SCE_PLM_OPERATOR=5
3975 val SCE_PLM_CONTROL=6
3976 val SCE_PLM_KEYWORD=7
3977 # Lexical state for SCLEX_PROGRESS
3978 lex Progress=SCLEX_PROGRESS SCE_4GL_
3979 val SCE_4GL_DEFAULT=0
3980 val SCE_4GL_NUMBER=1
3981 val SCE_4GL_WORD=2
3982 val SCE_4GL_STRING=3
3983 val SCE_4GL_CHARACTER=4
3984 val SCE_4GL_PREPROCESSOR=5
3985 val SCE_4GL_OPERATOR=6
3986 val SCE_4GL_IDENTIFIER=7
3987 val SCE_4GL_BLOCK=8
3988 val SCE_4GL_END=9
3989 val SCE_4GL_COMMENT1=10
3990 val SCE_4GL_COMMENT2=11
3991 val SCE_4GL_COMMENT3=12
3992 val SCE_4GL_COMMENT4=13
3993 val SCE_4GL_COMMENT5=14
3994 val SCE_4GL_COMMENT6=15
3995 val SCE_4GL_DEFAULT_=16
3996 val SCE_4GL_NUMBER_=17
3997 val SCE_4GL_WORD_=18
3998 val SCE_4GL_STRING_=19
3999 val SCE_4GL_CHARACTER_=20
4000 val SCE_4GL_PREPROCESSOR_=21
4001 val SCE_4GL_OPERATOR_=22
4002 val SCE_4GL_IDENTIFIER_=23
4003 val SCE_4GL_BLOCK_=24
4004 val SCE_4GL_END_=25
4005 val SCE_4GL_COMMENT1_=26
4006 val SCE_4GL_COMMENT2_=27
4007 val SCE_4GL_COMMENT3_=28
4008 val SCE_4GL_COMMENT4_=29
4009 val SCE_4GL_COMMENT5_=30
4010 val SCE_4GL_COMMENT6_=31
4011 # Lexical states for SCLEX_ABAQUS
4012 lex ABAQUS=SCLEX_ABAQUS SCE_ABAQUS_
4013 val SCE_ABAQUS_DEFAULT=0
4014 val SCE_ABAQUS_COMMENT=1
4015 val SCE_ABAQUS_COMMENTBLOCK=2
4016 val SCE_ABAQUS_NUMBER=3
4017 val SCE_ABAQUS_STRING=4
4018 val SCE_ABAQUS_OPERATOR=5
4019 val SCE_ABAQUS_WORD=6
4020 val SCE_ABAQUS_PROCESSOR=7
4021 val SCE_ABAQUS_COMMAND=8
4022 val SCE_ABAQUS_SLASHCOMMAND=9
4023 val SCE_ABAQUS_STARCOMMAND=10
4024 val SCE_ABAQUS_ARGUMENT=11
4025 val SCE_ABAQUS_FUNCTION=12
4026 # Lexical states for SCLEX_ASYMPTOTE
4027 lex Asymptote=SCLEX_ASYMPTOTE SCE_ASY_
4028 val SCE_ASY_DEFAULT=0
4029 val SCE_ASY_COMMENT=1
4030 val SCE_ASY_COMMENTLINE=2
4031 val SCE_ASY_NUMBER=3
4032 val SCE_ASY_WORD=4
4033 val SCE_ASY_STRING=5
4034 val SCE_ASY_CHARACTER=6
4035 val SCE_ASY_OPERATOR=7
4036 val SCE_ASY_IDENTIFIER=8
4037 val SCE_ASY_STRINGEOL=9
4038 val SCE_ASY_COMMENTLINEDOC=10
4039 val SCE_ASY_WORD2=11
4040 # Lexical states for SCLEX_R
4041 lex R=SCLEX_R SCE_R_
4042 val SCE_R_DEFAULT=0
4043 val SCE_R_COMMENT=1
4044 val SCE_R_KWORD=2
4045 val SCE_R_BASEKWORD=3
4046 val SCE_R_OTHERKWORD=4
4047 val SCE_R_NUMBER=5
4048 val SCE_R_STRING=6
4049 val SCE_R_STRING2=7
4050 val SCE_R_OPERATOR=8
4051 val SCE_R_IDENTIFIER=9
4052 val SCE_R_INFIX=10
4053 val SCE_R_INFIXEOL=11
4054 # Lexical state for SCLEX_MAGIK
4055 lex MagikSF=SCLEX_MAGIK SCE_MAGIK_
4056 val SCE_MAGIK_DEFAULT=0
4057 val SCE_MAGIK_COMMENT=1
4058 val SCE_MAGIK_HYPER_COMMENT=16
4059 val SCE_MAGIK_STRING=2
4060 val SCE_MAGIK_CHARACTER=3
4061 val SCE_MAGIK_NUMBER=4
4062 val SCE_MAGIK_IDENTIFIER=5
4063 val SCE_MAGIK_OPERATOR=6
4064 val SCE_MAGIK_FLOW=7
4065 val SCE_MAGIK_CONTAINER=8
4066 val SCE_MAGIK_BRACKET_BLOCK=9
4067 val SCE_MAGIK_BRACE_BLOCK=10
4068 val SCE_MAGIK_SQBRACKET_BLOCK=11
4069 val SCE_MAGIK_UNKNOWN_KEYWORD=12
4070 val SCE_MAGIK_KEYWORD=13
4071 val SCE_MAGIK_PRAGMA=14
4072 val SCE_MAGIK_SYMBOL=15
4073 # Lexical state for SCLEX_POWERSHELL
4074 lex PowerShell=SCLEX_POWERSHELL SCE_POWERSHELL_
4075 val SCE_POWERSHELL_DEFAULT=0
4076 val SCE_POWERSHELL_COMMENT=1
4077 val SCE_POWERSHELL_STRING=2
4078 val SCE_POWERSHELL_CHARACTER=3
4079 val SCE_POWERSHELL_NUMBER=4
4080 val SCE_POWERSHELL_VARIABLE=5
4081 val SCE_POWERSHELL_OPERATOR=6
4082 val SCE_POWERSHELL_IDENTIFIER=7
4083 val SCE_POWERSHELL_KEYWORD=8
4084 val SCE_POWERSHELL_CMDLET=9
4085 val SCE_POWERSHELL_ALIAS=10
4086 val SCE_POWERSHELL_FUNCTION=11
4087 val SCE_POWERSHELL_USER1=12
4088 val SCE_POWERSHELL_COMMENTSTREAM=13
4089 val SCE_POWERSHELL_HERE_STRING=14
4090 val SCE_POWERSHELL_HERE_CHARACTER=15
4091 val SCE_POWERSHELL_COMMENTDOCKEYWORD=16
4092 # Lexical state for SCLEX_MYSQL
4093 lex MySQL=SCLEX_MYSQL SCE_MYSQL_
4094 val SCE_MYSQL_DEFAULT=0
4095 val SCE_MYSQL_COMMENT=1
4096 val SCE_MYSQL_COMMENTLINE=2
4097 val SCE_MYSQL_VARIABLE=3
4098 val SCE_MYSQL_SYSTEMVARIABLE=4
4099 val SCE_MYSQL_KNOWNSYSTEMVARIABLE=5
4100 val SCE_MYSQL_NUMBER=6
4101 val SCE_MYSQL_MAJORKEYWORD=7
4102 val SCE_MYSQL_KEYWORD=8
4103 val SCE_MYSQL_DATABASEOBJECT=9
4104 val SCE_MYSQL_PROCEDUREKEYWORD=10
4105 val SCE_MYSQL_STRING=11
4106 val SCE_MYSQL_SQSTRING=12
4107 val SCE_MYSQL_DQSTRING=13
4108 val SCE_MYSQL_OPERATOR=14
4109 val SCE_MYSQL_FUNCTION=15
4110 val SCE_MYSQL_IDENTIFIER=16
4111 val SCE_MYSQL_QUOTEDIDENTIFIER=17
4112 val SCE_MYSQL_USER1=18
4113 val SCE_MYSQL_USER2=19
4114 val SCE_MYSQL_USER3=20
4115 val SCE_MYSQL_HIDDENCOMMAND=21
4116 val SCE_MYSQL_PLACEHOLDER=22
4117 # Lexical state for SCLEX_PO
4118 lex Po=SCLEX_PO SCE_PO_
4119 val SCE_PO_DEFAULT=0
4120 val SCE_PO_COMMENT=1
4121 val SCE_PO_MSGID=2
4122 val SCE_PO_MSGID_TEXT=3
4123 val SCE_PO_MSGSTR=4
4124 val SCE_PO_MSGSTR_TEXT=5
4125 val SCE_PO_MSGCTXT=6
4126 val SCE_PO_MSGCTXT_TEXT=7
4127 val SCE_PO_FUZZY=8
4128 val SCE_PO_PROGRAMMER_COMMENT=9
4129 val SCE_PO_REFERENCE=10
4130 val SCE_PO_FLAGS=11
4131 val SCE_PO_MSGID_TEXT_EOL=12
4132 val SCE_PO_MSGSTR_TEXT_EOL=13
4133 val SCE_PO_MSGCTXT_TEXT_EOL=14
4134 val SCE_PO_ERROR=15
4135 # Lexical states for SCLEX_PASCAL
4136 lex Pascal=SCLEX_PASCAL SCE_PAS_
4137 val SCE_PAS_DEFAULT=0
4138 val SCE_PAS_IDENTIFIER=1
4139 val SCE_PAS_COMMENT=2
4140 val SCE_PAS_COMMENT2=3
4141 val SCE_PAS_COMMENTLINE=4
4142 val SCE_PAS_PREPROCESSOR=5
4143 val SCE_PAS_PREPROCESSOR2=6
4144 val SCE_PAS_NUMBER=7
4145 val SCE_PAS_HEXNUMBER=8
4146 val SCE_PAS_WORD=9
4147 val SCE_PAS_STRING=10
4148 val SCE_PAS_STRINGEOL=11
4149 val SCE_PAS_CHARACTER=12
4150 val SCE_PAS_OPERATOR=13
4151 val SCE_PAS_ASM=14
4152 # Lexical state for SCLEX_SORCUS
4153 lex SORCUS=SCLEX_SORCUS SCE_SORCUS_
4154 val SCE_SORCUS_DEFAULT=0
4155 val SCE_SORCUS_COMMAND=1
4156 val SCE_SORCUS_PARAMETER=2
4157 val SCE_SORCUS_COMMENTLINE=3
4158 val SCE_SORCUS_STRING=4
4159 val SCE_SORCUS_STRINGEOL=5
4160 val SCE_SORCUS_IDENTIFIER=6
4161 val SCE_SORCUS_OPERATOR=7
4162 val SCE_SORCUS_NUMBER=8
4163 val SCE_SORCUS_CONSTANT=9
4164 # Lexical state for SCLEX_POWERPRO
4165 lex PowerPro=SCLEX_POWERPRO SCE_POWERPRO_
4166 val SCE_POWERPRO_DEFAULT=0
4167 val SCE_POWERPRO_COMMENTBLOCK=1
4168 val SCE_POWERPRO_COMMENTLINE=2
4169 val SCE_POWERPRO_NUMBER=3
4170 val SCE_POWERPRO_WORD=4
4171 val SCE_POWERPRO_WORD2=5
4172 val SCE_POWERPRO_WORD3=6
4173 val SCE_POWERPRO_WORD4=7
4174 val SCE_POWERPRO_DOUBLEQUOTEDSTRING=8
4175 val SCE_POWERPRO_SINGLEQUOTEDSTRING=9
4176 val SCE_POWERPRO_LINECONTINUE=10
4177 val SCE_POWERPRO_OPERATOR=11
4178 val SCE_POWERPRO_IDENTIFIER=12
4179 val SCE_POWERPRO_STRINGEOL=13
4180 val SCE_POWERPRO_VERBATIM=14
4181 val SCE_POWERPRO_ALTQUOTE=15
4182 val SCE_POWERPRO_FUNCTION=16
4183 # Lexical states for SCLEX_SML
4184 lex SML=SCLEX_SML SCE_SML_
4185 val SCE_SML_DEFAULT=0
4186 val SCE_SML_IDENTIFIER=1
4187 val SCE_SML_TAGNAME=2
4188 val SCE_SML_KEYWORD=3
4189 val SCE_SML_KEYWORD2=4
4190 val SCE_SML_KEYWORD3=5
4191 val SCE_SML_LINENUM=6
4192 val SCE_SML_OPERATOR=7
4193 val SCE_SML_NUMBER=8
4194 val SCE_SML_CHAR=9
4195 val SCE_SML_STRING=11
4196 val SCE_SML_COMMENT=12
4197 val SCE_SML_COMMENT1=13
4198 val SCE_SML_COMMENT2=14
4199 val SCE_SML_COMMENT3=15
4200 # Lexical state for SCLEX_MARKDOWN
4201 lex Markdown=SCLEX_MARKDOWN SCE_MARKDOWN_
4202 val SCE_MARKDOWN_DEFAULT=0
4203 val SCE_MARKDOWN_LINE_BEGIN=1
4204 val SCE_MARKDOWN_STRONG1=2
4205 val SCE_MARKDOWN_STRONG2=3
4206 val SCE_MARKDOWN_EM1=4
4207 val SCE_MARKDOWN_EM2=5
4208 val SCE_MARKDOWN_HEADER1=6
4209 val SCE_MARKDOWN_HEADER2=7
4210 val SCE_MARKDOWN_HEADER3=8
4211 val SCE_MARKDOWN_HEADER4=9
4212 val SCE_MARKDOWN_HEADER5=10
4213 val SCE_MARKDOWN_HEADER6=11
4214 val SCE_MARKDOWN_PRECHAR=12
4215 val SCE_MARKDOWN_ULIST_ITEM=13
4216 val SCE_MARKDOWN_OLIST_ITEM=14
4217 val SCE_MARKDOWN_BLOCKQUOTE=15
4218 val SCE_MARKDOWN_STRIKEOUT=16
4219 val SCE_MARKDOWN_HRULE=17
4220 val SCE_MARKDOWN_LINK=18
4221 val SCE_MARKDOWN_CODE=19
4222 val SCE_MARKDOWN_CODE2=20
4223 val SCE_MARKDOWN_CODEBK=21
4224 # Lexical state for SCLEX_TXT2TAGS
4225 lex Txt2tags=SCLEX_TXT2TAGS SCE_TXT2TAGS_
4226 val SCE_TXT2TAGS_DEFAULT=0
4227 val SCE_TXT2TAGS_LINE_BEGIN=1
4228 val SCE_TXT2TAGS_STRONG1=2
4229 val SCE_TXT2TAGS_STRONG2=3
4230 val SCE_TXT2TAGS_EM1=4
4231 val SCE_TXT2TAGS_EM2=5
4232 val SCE_TXT2TAGS_HEADER1=6
4233 val SCE_TXT2TAGS_HEADER2=7
4234 val SCE_TXT2TAGS_HEADER3=8
4235 val SCE_TXT2TAGS_HEADER4=9
4236 val SCE_TXT2TAGS_HEADER5=10
4237 val SCE_TXT2TAGS_HEADER6=11
4238 val SCE_TXT2TAGS_PRECHAR=12
4239 val SCE_TXT2TAGS_ULIST_ITEM=13
4240 val SCE_TXT2TAGS_OLIST_ITEM=14
4241 val SCE_TXT2TAGS_BLOCKQUOTE=15
4242 val SCE_TXT2TAGS_STRIKEOUT=16
4243 val SCE_TXT2TAGS_HRULE=17
4244 val SCE_TXT2TAGS_LINK=18
4245 val SCE_TXT2TAGS_CODE=19
4246 val SCE_TXT2TAGS_CODE2=20
4247 val SCE_TXT2TAGS_CODEBK=21
4248 val SCE_TXT2TAGS_COMMENT=22
4249 val SCE_TXT2TAGS_OPTION=23
4250 val SCE_TXT2TAGS_PREPROC=24
4251 val SCE_TXT2TAGS_POSTPROC=25
4252 # Lexical states for SCLEX_A68K
4253 lex A68k=SCLEX_A68K SCE_A68K_
4254 val SCE_A68K_DEFAULT=0
4255 val SCE_A68K_COMMENT=1
4256 val SCE_A68K_NUMBER_DEC=2
4257 val SCE_A68K_NUMBER_BIN=3
4258 val SCE_A68K_NUMBER_HEX=4
4259 val SCE_A68K_STRING1=5
4260 val SCE_A68K_OPERATOR=6
4261 val SCE_A68K_CPUINSTRUCTION=7
4262 val SCE_A68K_EXTINSTRUCTION=8
4263 val SCE_A68K_REGISTER=9
4264 val SCE_A68K_DIRECTIVE=10
4265 val SCE_A68K_MACRO_ARG=11
4266 val SCE_A68K_LABEL=12
4267 val SCE_A68K_STRING2=13
4268 val SCE_A68K_IDENTIFIER=14
4269 val SCE_A68K_MACRO_DECLARATION=15
4270 val SCE_A68K_COMMENT_WORD=16
4271 val SCE_A68K_COMMENT_SPECIAL=17
4272 val SCE_A68K_COMMENT_DOXYGEN=18
4273 # Lexical states for SCLEX_MODULA
4274 lex Modula=SCLEX_MODULA SCE_MODULA_
4275 val SCE_MODULA_DEFAULT=0
4276 val SCE_MODULA_COMMENT=1
4277 val SCE_MODULA_DOXYCOMM=2
4278 val SCE_MODULA_DOXYKEY=3
4279 val SCE_MODULA_KEYWORD=4
4280 val SCE_MODULA_RESERVED=5
4281 val SCE_MODULA_NUMBER=6
4282 val SCE_MODULA_BASENUM=7
4283 val SCE_MODULA_FLOAT=8
4284 val SCE_MODULA_STRING=9
4285 val SCE_MODULA_STRSPEC=10
4286 val SCE_MODULA_CHAR=11
4287 val SCE_MODULA_CHARSPEC=12
4288 val SCE_MODULA_PROC=13
4289 val SCE_MODULA_PRAGMA=14
4290 val SCE_MODULA_PRGKEY=15
4291 val SCE_MODULA_OPERATOR=16
4292 val SCE_MODULA_BADSTR=17
4293 # Lexical states for SCLEX_COFFEESCRIPT
4294 lex CoffeeScript=SCLEX_COFFEESCRIPT SCE_COFFEESCRIPT_
4295 val SCE_COFFEESCRIPT_DEFAULT=0
4296 val SCE_COFFEESCRIPT_COMMENT=1
4297 val SCE_COFFEESCRIPT_COMMENTLINE=2
4298 val SCE_COFFEESCRIPT_COMMENTDOC=3
4299 val SCE_COFFEESCRIPT_NUMBER=4
4300 val SCE_COFFEESCRIPT_WORD=5
4301 val SCE_COFFEESCRIPT_STRING=6
4302 val SCE_COFFEESCRIPT_CHARACTER=7
4303 val SCE_COFFEESCRIPT_UUID=8
4304 val SCE_COFFEESCRIPT_PREPROCESSOR=9
4305 val SCE_COFFEESCRIPT_OPERATOR=10
4306 val SCE_COFFEESCRIPT_IDENTIFIER=11
4307 val SCE_COFFEESCRIPT_STRINGEOL=12
4308 val SCE_COFFEESCRIPT_VERBATIM=13
4309 val SCE_COFFEESCRIPT_REGEX=14
4310 val SCE_COFFEESCRIPT_COMMENTLINEDOC=15
4311 val SCE_COFFEESCRIPT_WORD2=16
4312 val SCE_COFFEESCRIPT_COMMENTDOCKEYWORD=17
4313 val SCE_COFFEESCRIPT_COMMENTDOCKEYWORDERROR=18
4314 val SCE_COFFEESCRIPT_GLOBALCLASS=19
4315 val SCE_COFFEESCRIPT_STRINGRAW=20
4316 val SCE_COFFEESCRIPT_TRIPLEVERBATIM=21
4317 val SCE_COFFEESCRIPT_COMMENTBLOCK=22
4318 val SCE_COFFEESCRIPT_VERBOSE_REGEX=23
4319 val SCE_COFFEESCRIPT_VERBOSE_REGEX_COMMENT=24
4320 # Lexical states for SCLEX_AVS
4321 lex AVS=SCLEX_AVS SCE_AVS_
4322 val SCE_AVS_DEFAULT=0
4323 val SCE_AVS_COMMENTBLOCK=1
4324 val SCE_AVS_COMMENTBLOCKN=2
4325 val SCE_AVS_COMMENTLINE=3
4326 val SCE_AVS_NUMBER=4
4327 val SCE_AVS_OPERATOR=5
4328 val SCE_AVS_IDENTIFIER=6
4329 val SCE_AVS_STRING=7
4330 val SCE_AVS_TRIPLESTRING=8
4331 val SCE_AVS_KEYWORD=9
4332 val SCE_AVS_FILTER=10
4333 val SCE_AVS_PLUGIN=11
4334 val SCE_AVS_FUNCTION=12
4335 val SCE_AVS_CLIPPROP=13
4336 val SCE_AVS_USERDFN=14
4337 # Lexical states for SCLEX_ECL
4338 lex ECL=SCLEX_ECL SCE_ECL_
4339 val SCE_ECL_DEFAULT=0
4340 val SCE_ECL_COMMENT=1
4341 val SCE_ECL_COMMENTLINE=2
4342 val SCE_ECL_NUMBER=3
4343 val SCE_ECL_STRING=4
4344 val SCE_ECL_WORD0=5
4345 val SCE_ECL_OPERATOR=6
4346 val SCE_ECL_CHARACTER=7
4347 val SCE_ECL_UUID=8
4348 val SCE_ECL_PREPROCESSOR=9
4349 val SCE_ECL_UNKNOWN=10
4350 val SCE_ECL_IDENTIFIER=11
4351 val SCE_ECL_STRINGEOL=12
4352 val SCE_ECL_VERBATIM=13
4353 val SCE_ECL_REGEX=14
4354 val SCE_ECL_COMMENTLINEDOC=15
4355 val SCE_ECL_WORD1=16
4356 val SCE_ECL_COMMENTDOCKEYWORD=17
4357 val SCE_ECL_COMMENTDOCKEYWORDERROR=18
4358 val SCE_ECL_WORD2=19
4359 val SCE_ECL_WORD3=20
4360 val SCE_ECL_WORD4=21
4361 val SCE_ECL_WORD5=22
4362 val SCE_ECL_COMMENTDOC=23
4363 val SCE_ECL_ADDED=24
4364 val SCE_ECL_DELETED=25
4365 val SCE_ECL_CHANGED=26
4366 val SCE_ECL_MOVED=27
4367 # Lexical states for SCLEX_OSCRIPT
4368 lex OScript=SCLEX_OSCRIPT SCE_OSCRIPT_
4369 val SCE_OSCRIPT_DEFAULT=0
4370 val SCE_OSCRIPT_LINE_COMMENT=1
4371 val SCE_OSCRIPT_BLOCK_COMMENT=2
4372 val SCE_OSCRIPT_DOC_COMMENT=3
4373 val SCE_OSCRIPT_PREPROCESSOR=4
4374 val SCE_OSCRIPT_NUMBER=5
4375 val SCE_OSCRIPT_SINGLEQUOTE_STRING=6
4376 val SCE_OSCRIPT_DOUBLEQUOTE_STRING=7
4377 val SCE_OSCRIPT_CONSTANT=8
4378 val SCE_OSCRIPT_IDENTIFIER=9
4379 val SCE_OSCRIPT_GLOBAL=10
4380 val SCE_OSCRIPT_KEYWORD=11
4381 val SCE_OSCRIPT_OPERATOR=12
4382 val SCE_OSCRIPT_LABEL=13
4383 val SCE_OSCRIPT_TYPE=14
4384 val SCE_OSCRIPT_FUNCTION=15
4385 val SCE_OSCRIPT_OBJECT=16
4386 val SCE_OSCRIPT_PROPERTY=17
4387 val SCE_OSCRIPT_METHOD=18
4388 # Lexical states for SCLEX_VISUALPROLOG
4389 lex VisualProlog=SCLEX_VISUALPROLOG SCE_VISUALPROLOG_
4390 val SCE_VISUALPROLOG_DEFAULT=0
4391 val SCE_VISUALPROLOG_KEY_MAJOR=1
4392 val SCE_VISUALPROLOG_KEY_MINOR=2
4393 val SCE_VISUALPROLOG_KEY_DIRECTIVE=3
4394 val SCE_VISUALPROLOG_COMMENT_BLOCK=4
4395 val SCE_VISUALPROLOG_COMMENT_LINE=5
4396 val SCE_VISUALPROLOG_COMMENT_KEY=6
4397 val SCE_VISUALPROLOG_COMMENT_KEY_ERROR=7
4398 val SCE_VISUALPROLOG_IDENTIFIER=8
4399 val SCE_VISUALPROLOG_VARIABLE=9
4400 val SCE_VISUALPROLOG_ANONYMOUS=10
4401 val SCE_VISUALPROLOG_NUMBER=11
4402 val SCE_VISUALPROLOG_OPERATOR=12
4403 val SCE_VISUALPROLOG_CHARACTER=13
4404 val SCE_VISUALPROLOG_CHARACTER_TOO_MANY=14
4405 val SCE_VISUALPROLOG_CHARACTER_ESCAPE_ERROR=15
4406 val SCE_VISUALPROLOG_STRING=16
4407 val SCE_VISUALPROLOG_STRING_ESCAPE=17
4408 val SCE_VISUALPROLOG_STRING_ESCAPE_ERROR=18
4409 val SCE_VISUALPROLOG_STRING_EOL_OPEN=19
4410 val SCE_VISUALPROLOG_STRING_VERBATIM=20
4411 val SCE_VISUALPROLOG_STRING_VERBATIM_SPECIAL=21
4412 val SCE_VISUALPROLOG_STRING_VERBATIM_EOL=22
4413 # Lexical states for SCLEX_STTXT
4414 lex StructuredText=SCLEX_STTXT SCE_STTXT_
4415 val SCE_STTXT_DEFAULT=0
4416 val SCE_STTXT_COMMENT=1
4417 val SCE_STTXT_COMMENTLINE=2
4418 val SCE_STTXT_KEYWORD=3
4419 val SCE_STTXT_TYPE=4
4420 val SCE_STTXT_FUNCTION=5
4421 val SCE_STTXT_FB=6
4422 val SCE_STTXT_NUMBER=7
4423 val SCE_STTXT_HEXNUMBER=8
4424 val SCE_STTXT_PRAGMA=9
4425 val SCE_STTXT_OPERATOR=10
4426 val SCE_STTXT_CHARACTER=11
4427 val SCE_STTXT_STRING1=12
4428 val SCE_STTXT_STRING2=13
4429 val SCE_STTXT_STRINGEOL=14
4430 val SCE_STTXT_IDENTIFIER=15
4431 val SCE_STTXT_DATETIME=16
4432 val SCE_STTXT_VARS=17
4433 val SCE_STTXT_PRAGMAS=18
4434 # Lexical states for SCLEX_KVIRC
4435 lex KVIrc=SCLEX_KVIRC SCE_KVIRC_
4436 val SCE_KVIRC_DEFAULT=0
4437 val SCE_KVIRC_COMMENT=1
4438 val SCE_KVIRC_COMMENTBLOCK=2
4439 val SCE_KVIRC_STRING=3
4440 val SCE_KVIRC_WORD=4
4441 val SCE_KVIRC_KEYWORD=5
4442 val SCE_KVIRC_FUNCTION_KEYWORD=6
4443 val SCE_KVIRC_FUNCTION=7
4444 val SCE_KVIRC_VARIABLE=8
4445 val SCE_KVIRC_NUMBER=9
4446 val SCE_KVIRC_OPERATOR=10
4447 val SCE_KVIRC_STRING_FUNCTION=11
4448 val SCE_KVIRC_STRING_VARIABLE=12
4449 # Lexical states for SCLEX_RUST
4450 lex Rust=SCLEX_RUST SCE_RUST_
4451 val SCE_RUST_DEFAULT=0
4452 val SCE_RUST_COMMENTBLOCK=1
4453 val SCE_RUST_COMMENTLINE=2
4454 val SCE_RUST_COMMENTBLOCKDOC=3
4455 val SCE_RUST_COMMENTLINEDOC=4
4456 val SCE_RUST_NUMBER=5
4457 val SCE_RUST_WORD=6
4458 val SCE_RUST_WORD2=7
4459 val SCE_RUST_WORD3=8
4460 val SCE_RUST_WORD4=9
4461 val SCE_RUST_WORD5=10
4462 val SCE_RUST_WORD6=11
4463 val SCE_RUST_WORD7=12
4464 val SCE_RUST_STRING=13
4465 val SCE_RUST_STRINGR=14
4466 val SCE_RUST_CHARACTER=15
4467 val SCE_RUST_OPERATOR=16
4468 val SCE_RUST_IDENTIFIER=17
4469 val SCE_RUST_LIFETIME=18
4470 val SCE_RUST_MACRO=19
4471 val SCE_RUST_LEXERROR=20
4472 val SCE_RUST_BYTESTRING=21
4473 val SCE_RUST_BYTESTRINGR=22
4474 val SCE_RUST_BYTECHARACTER=23
4475 # Lexical states for SCLEX_DMAP
4476 lex DMAP=SCLEX_DMAP SCE_DMAP_
4477 val SCE_DMAP_DEFAULT=0
4478 val SCE_DMAP_COMMENT=1
4479 val SCE_DMAP_NUMBER=2
4480 val SCE_DMAP_STRING1=3
4481 val SCE_DMAP_STRING2=4
4482 val SCE_DMAP_STRINGEOL=5
4483 val SCE_DMAP_OPERATOR=6
4484 val SCE_DMAP_IDENTIFIER=7
4485 val SCE_DMAP_WORD=8
4486 val SCE_DMAP_WORD2=9
4487 val SCE_DMAP_WORD3=10
4488 # Lexical states for SCLEX_DMIS
4489 lex DMIS=SCLEX_DMIS SCE_DMIS_
4490 val SCE_DMIS_DEFAULT=0
4491 val SCE_DMIS_COMMENT=1
4492 val SCE_DMIS_STRING=2
4493 val SCE_DMIS_NUMBER=3
4494 val SCE_DMIS_KEYWORD=4
4495 val SCE_DMIS_MAJORWORD=5
4496 val SCE_DMIS_MINORWORD=6
4497 val SCE_DMIS_UNSUPPORTED_MAJOR=7
4498 val SCE_DMIS_UNSUPPORTED_MINOR=8
4499 val SCE_DMIS_LABEL=9
4500 # Lexical states for SCLEX_REGISTRY
4501 lex REG=SCLEX_REGISTRY SCE_REG_
4502 val SCE_REG_DEFAULT=0
4503 val SCE_REG_COMMENT=1
4504 val SCE_REG_VALUENAME=2
4505 val SCE_REG_STRING=3
4506 val SCE_REG_HEXDIGIT=4
4507 val SCE_REG_VALUETYPE=5
4508 val SCE_REG_ADDEDKEY=6
4509 val SCE_REG_DELETEDKEY=7
4510 val SCE_REG_ESCAPED=8
4511 val SCE_REG_KEYPATH_GUID=9
4512 val SCE_REG_STRING_GUID=10
4513 val SCE_REG_PARAMETER=11
4514 val SCE_REG_OPERATOR=12
4516 # Events
4518 evt void StyleNeeded=2000(int position)
4519 evt void CharAdded=2001(int ch)
4520 evt void SavePointReached=2002(void)
4521 evt void SavePointLeft=2003(void)
4522 evt void ModifyAttemptRO=2004(void)
4523 # GTK+ Specific to work around focus and accelerator problems:
4524 evt void Key=2005(int ch, int modifiers)
4525 evt void DoubleClick=2006(int modifiers, int position, int line)
4526 evt void UpdateUI=2007(int updated)
4527 evt void Modified=2008(int position, int modificationType, string text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev, int token, int annotationLinesAdded)
4528 evt void MacroRecord=2009(int message, int wParam, int lParam)
4529 evt void MarginClick=2010(int modifiers, int position, int margin)
4530 evt void NeedShown=2011(int position, int length)
4531 evt void Painted=2013(void)
4532 evt void UserListSelection=2014(int listType, string text, int position)
4533 evt void URIDropped=2015(string text)
4534 evt void DwellStart=2016(int position, int x, int y)
4535 evt void DwellEnd=2017(int position, int x, int y)
4536 evt void Zoom=2018(void)
4537 evt void HotSpotClick=2019(int modifiers, int position)
4538 evt void HotSpotDoubleClick=2020(int modifiers, int position)
4539 evt void CallTipClick=2021(int position)
4540 evt void AutoCSelection=2022(string text, int position)
4541 evt void IndicatorClick=2023(int modifiers, int position)
4542 evt void IndicatorRelease=2024(int modifiers, int position)
4543 evt void AutoCCancelled=2025(void)
4544 evt void AutoCCharDeleted=2026(void)
4545 evt void HotSpotReleaseClick=2027(int modifiers, int position)
4546 evt void FocusIn=2028(void)
4547 evt void FocusOut=2029(void)
4549 # There are no provisional features currently
4551 cat Provisional
4553 cat Deprecated
4555 # Deprecated in 2.21
4556 # The SC_CP_DBCS value can be used to indicate a DBCS mode for GTK+.
4557 val SC_CP_DBCS=1
4559 # Deprecated in 2.30
4561 # In palette mode?
4562 get bool GetUsePalette=2139(,)
4564 # In palette mode, Scintilla uses the environment's palette calls to display
4565 # more colours. This may lead to ugly displays.
4566 set void SetUsePalette=2039(bool usePalette,)