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