1 ## First line may be used for shbang
 
   3 ## This file defines the interface to Scintilla
 
   5 ## Copyright 2000-2002 by Neil Hodgson <neilh@scintilla.org>
 
   6 ## The License.txt file describes the conditions under which this software may be distributed.
 
   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
 
  16 ##     get -> a property get function
 
  17 ##     set -> a property set function
 
  18 ##     val -> definition of a constant
 
  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 ## param is <paramType><ws><paramName>[=<value>]
 
  30 ## Additional white space is allowed between elements.
 
  31 ## The syntax for evt is <featureType><ws><returnType><ws><name>[=<number]([<param>[,<param>]*])
 
  32 ## Feature names that contain an underscore are defined by Windows, so in these
 
  33 ## cases, using the Windows definition is preferred where available.
 
  34 ## The feature numbers are stable so features will not be renumbered.
 
  35 ## Features may be removed but they will go through a period of deprecation
 
  36 ## before removal which is signalled by moving them into the Deprecated category.
 
  38 ## enu has the syntax enu<ws><enumeration>=<prefix>[<ws><prefix>]* where all the val
 
  39 ## features in this file starting with a given <prefix> are considered part of the
 
  42 ## lex has the syntax lex<ws><name>=<lexerVal><ws><prefix>[<ws><prefix>]*
 
  43 ## where name is a reasonably capitalised (Python, XML) identifier or UI name,
 
  44 ## lexerVal is the val used to specify the lexer, and the list of prefixes is similar
 
  45 ## to enu. The name may not be the same as that used within the lexer so the lexerVal
 
  46 ## should be used to tie these entities together.
 
  51 ##     bool -> integer, 1=true, 0=false
 
  52 ##     position -> integer position in a document
 
  53 ##     colour -> colour integer containing red, green and blue bytes.
 
  54 ##     string -> pointer to const character
 
  55 ##     stringresult -> pointer to character
 
  56 ##     cells -> pointer to array of cells, each cell containing a style byte and character byte
 
  57 ##     textrange -> range of a min and a max position with an output string
 
  58 ##     findtext -> searchrange, text -> foundposition
 
  59 ##     keymod -> integer containing key in low half and modifiers in high half
 
  61 ## Types no longer used:
 
  62 ##     findtextex -> searchrange
 
  63 ##     charrange -> range of a min and a max position
 
  64 ##     charrangeresult -> like charrange, but output param
 
  67 ##     pointresult  -> like point, but output param
 
  68 ##     rectangle -> left,top,right,bottom
 
  69 ## Client code should ignore definitions containing types it does not understand, except
 
  70 ## for possibly #defining the constants
 
  72 ## String arguments may contain NUL ('\0') characters where the calls provide a length
 
  73 ## argument and retrieve NUL characters. All retrieved strings except for those retrieved
 
  74 ## by GetLine also have a NUL appended but client code should calculate the size that
 
  75 ## will be returned rather than relying upon the NUL whenever possible. Allow for the
 
  76 ## extra NUL character when allocating buffers.
 
  80 ################################################
 
  82 val INVALID_POSITION=-1
 
  83 # Define start of Scintilla messages to be greater than all edit (EM_*) messages
 
  84 # as many EM_ messages can be used although that use is deprecated.
 
  86 val SCI_OPTIONAL_START=3000
 
  87 val SCI_LEXER_START=4000
 
  89 # Add text to the document.
 
  90 fun void AddText=2001(int length, string text)
 
  92 # Add array of cells to document.
 
  93 fun void AddStyledText=2002(int length, cells c)
 
  95 # Insert string at a position.
 
  96 fun void InsertText=2003(position pos, string text)
 
  98 # Delete all text in the document.
 
  99 fun void ClearAll=2004(,)
 
 101 # Set all style bytes to 0, remove all folding information.
 
 102 fun void ClearDocumentStyle=2005(,)
 
 104 # The number of characters in the document.
 
 105 get int GetLength=2006(,)
 
 107 # Returns the character byte at the position.
 
 108 get int GetCharAt=2007(position pos,)
 
 110 # Returns the position of the caret.
 
 111 get position GetCurrentPos=2008(,)
 
 113 # Returns the position of the opposite end of the selection to the caret.
 
 114 get position GetAnchor=2009(,)
 
 116 # Returns the style byte at the position.
 
 117 get int GetStyleAt=2010(position pos,)
 
 119 # Redoes the next action on the undo history.
 
 120 fun void Redo=2011(,)
 
 122 # Choose between collecting actions into the undo
 
 123 # history and discarding them.
 
 124 set void SetUndoCollection=2012(bool collectUndo,)
 
 126 # Select all the text in the document.
 
 127 fun void SelectAll=2013(,)
 
 129 # Remember the current position in the undo history as the position
 
 130 # at which the document was saved.
 
 131 fun void SetSavePoint=2014(,)
 
 133 # Retrieve a buffer of cells.
 
 134 # Returns the number of bytes in the buffer not including terminating nulls.
 
 135 fun int GetStyledText=2015(, textrange tr)
 
 137 # Are there any redoable actions in the undo history?
 
 138 fun bool CanRedo=2016(,)
 
 140 # Retrieve the line number at which a particular marker is located.
 
 141 fun int MarkerLineFromHandle=2017(int handle,)
 
 144 fun void MarkerDeleteHandle=2018(int handle,)
 
 146 # Is undo history being collected?
 
 147 get bool GetUndoCollection=2019(,)
 
 151 val SCWS_VISIBLEALWAYS=1
 
 152 val SCWS_VISIBLEAFTERINDENT=2
 
 154 # Are white space characters currently visible?
 
 155 # Returns one of SCWS_* constants.
 
 156 get int GetViewWS=2020(,)
 
 158 # Make white space characters invisible, always visible or visible outside indentation.
 
 159 set void SetViewWS=2021(int viewWS,)
 
 161 # Find the position from a point within the window.
 
 162 fun int PositionFromPoint=2022(int x, int y)
 
 164 # Find the position from a point within the window but return
 
 165 # INVALID_POSITION if not close to text.
 
 166 fun int PositionFromPointClose=2023(int x, int y)
 
 168 # Set caret to start of a line and ensure it is visible.
 
 169 fun void GotoLine=2024(int line,)
 
 171 # Set caret to a position and ensure it is visible.
 
 172 fun void GotoPos=2025(position pos,)
 
 174 # Set the selection anchor to a position. The anchor is the opposite
 
 175 # end of the selection from the caret.
 
 176 set void SetAnchor=2026(position posAnchor,)
 
 178 # Retrieve the text of the line containing the caret.
 
 179 # Returns the index of the caret on the line.
 
 180 fun int GetCurLine=2027(int length, stringresult text)
 
 182 # Retrieve the position of the last correctly styled character.
 
 183 get position GetEndStyled=2028(,)
 
 185 enu EndOfLine=SC_EOL_
 
 190 # Convert all line endings in the document to one mode.
 
 191 fun void ConvertEOLs=2029(int eolMode,)
 
 193 # Retrieve the current end of line mode - one of CRLF, CR, or LF.
 
 194 get int GetEOLMode=2030(,)
 
 196 # Set the current end of line mode.
 
 197 set void SetEOLMode=2031(int eolMode,)
 
 199 # Set the current styling position to pos and the styling mask to mask.
 
 200 # The styling mask can be used to protect some bits in each styling byte from modification.
 
 201 fun void StartStyling=2032(position pos, int mask)
 
 203 # Change style from current styling position for length characters to a style
 
 204 # and move the current styling position to after this newly styled segment.
 
 205 fun void SetStyling=2033(int length, int style)
 
 207 # Is drawing done first into a buffer or direct to the screen?
 
 208 get bool GetBufferedDraw=2034(,)
 
 210 # If drawing is buffered then each line of text is drawn into a bitmap buffer
 
 211 # before drawing it to the screen to avoid flicker.
 
 212 set void SetBufferedDraw=2035(bool buffered,)
 
 214 # Change the visible size of a tab to be a multiple of the width of a space character.
 
 215 set void SetTabWidth=2036(int tabWidth,)
 
 217 # Retrieve the visible size of a tab.
 
 218 get int GetTabWidth=2121(,)
 
 220 # The SC_CP_UTF8 value can be used to enter Unicode mode.
 
 221 # This is the same value as CP_UTF8 in Windows
 
 224 # The SC_CP_DBCS value can be used to indicate a DBCS mode for GTK+.
 
 227 # Set the code page used to interpret the bytes of the document as characters.
 
 228 # The SC_CP_UTF8 value can be used to enter Unicode mode.
 
 229 set void SetCodePage=2037(int codePage,)
 
 231 # In palette mode, Scintilla uses the environment's palette calls to display
 
 232 # more colours. This may lead to ugly displays.
 
 233 set void SetUsePalette=2039(bool usePalette,)
 
 235 enu MarkerSymbol=SC_MARK_
 
 238 val SC_MARK_ROUNDRECT=1
 
 240 val SC_MARK_SMALLRECT=3
 
 241 val SC_MARK_SHORTARROW=4
 
 243 val SC_MARK_ARROWDOWN=6
 
 247 # Shapes used for outlining column.
 
 249 val SC_MARK_LCORNER=10
 
 250 val SC_MARK_TCORNER=11
 
 251 val SC_MARK_BOXPLUS=12
 
 252 val SC_MARK_BOXPLUSCONNECTED=13
 
 253 val SC_MARK_BOXMINUS=14
 
 254 val SC_MARK_BOXMINUSCONNECTED=15
 
 255 val SC_MARK_LCORNERCURVE=16
 
 256 val SC_MARK_TCORNERCURVE=17
 
 257 val SC_MARK_CIRCLEPLUS=18
 
 258 val SC_MARK_CIRCLEPLUSCONNECTED=19
 
 259 val SC_MARK_CIRCLEMINUS=20
 
 260 val SC_MARK_CIRCLEMINUSCONNECTED=21
 
 262 # Invisible mark that only sets the line background color.
 
 263 val SC_MARK_BACKGROUND=22
 
 264 val SC_MARK_DOTDOTDOT=23
 
 265 val SC_MARK_ARROWS=24
 
 266 val SC_MARK_PIXMAP=25
 
 268 val SC_MARK_CHARACTER=10000
 
 270 enu MarkerOutline=SC_MARKNUM_
 
 271 # Markers used for outlining column.
 
 272 val SC_MARKNUM_FOLDEREND=25
 
 273 val SC_MARKNUM_FOLDEROPENMID=26
 
 274 val SC_MARKNUM_FOLDERMIDTAIL=27
 
 275 val SC_MARKNUM_FOLDERTAIL=28
 
 276 val SC_MARKNUM_FOLDERSUB=29
 
 277 val SC_MARKNUM_FOLDER=30
 
 278 val SC_MARKNUM_FOLDEROPEN=31
 
 280 val SC_MASK_FOLDERS=0xFE000000
 
 282 # Set the symbol used for a particular marker number.
 
 283 fun void MarkerDefine=2040(int markerNumber, int markerSymbol)
 
 285 # Set the foreground colour used for a particular marker number.
 
 286 fun void MarkerSetFore=2041(int markerNumber, colour fore)
 
 288 # Set the background colour used for a particular marker number.
 
 289 fun void MarkerSetBack=2042(int markerNumber, colour back)
 
 291 # Add a marker to a line, returning an ID which can be used to find or delete the marker.
 
 292 fun int MarkerAdd=2043(int line, int markerNumber)
 
 294 # Delete a marker from a line.
 
 295 fun void MarkerDelete=2044(int line, int markerNumber)
 
 297 # Delete all markers with a particular number from all lines.
 
 298 fun void MarkerDeleteAll=2045(int markerNumber,)
 
 300 # Get a bit mask of all the markers set on a line.
 
 301 fun int MarkerGet=2046(int line,)
 
 303 # Find the next line after lineStart that includes a marker in mask.
 
 304 fun int MarkerNext=2047(int lineStart, int markerMask)
 
 306 # Find the previous line before lineStart that includes a marker in mask.
 
 307 fun int MarkerPrevious=2048(int lineStart, int markerMask)
 
 309 # Define a marker from a pixmap.
 
 310 fun void MarkerDefinePixmap=2049(int markerNumber, string pixmap)
 
 312 enu MarginType=SC_MARGIN_
 
 313 val SC_MARGIN_SYMBOL=0
 
 314 val SC_MARGIN_NUMBER=1
 
 316 # Set a margin to be either numeric or symbolic.
 
 317 set void SetMarginTypeN=2240(int margin, int marginType)
 
 319 # Retrieve the type of a margin.
 
 320 get int GetMarginTypeN=2241(int margin,)
 
 322 # Set the width of a margin to a width expressed in pixels.
 
 323 set void SetMarginWidthN=2242(int margin, int pixelWidth)
 
 325 # Retrieve the width of a margin in pixels.
 
 326 get int GetMarginWidthN=2243(int margin,)
 
 328 # Set a mask that determines which markers are displayed in a margin.
 
 329 set void SetMarginMaskN=2244(int margin, int mask)
 
 331 # Retrieve the marker mask of a margin.
 
 332 get int GetMarginMaskN=2245(int margin,)
 
 334 # Make a margin sensitive or insensitive to mouse clicks.
 
 335 set void SetMarginSensitiveN=2246(int margin, bool sensitive)
 
 337 # Retrieve the mouse click sensitivity of a margin.
 
 338 get bool GetMarginSensitiveN=2247(int margin,)
 
 340 # Styles in range 32..37 are predefined for parts of the UI and are not used as normal styles.
 
 341 # Styles 38 and 39 are for future use.
 
 342 enu StylesCommon=STYLE_
 
 344 val STYLE_LINENUMBER=33
 
 345 val STYLE_BRACELIGHT=34
 
 346 val STYLE_BRACEBAD=35
 
 347 val STYLE_CONTROLCHAR=36
 
 348 val STYLE_INDENTGUIDE=37
 
 349 val STYLE_LASTPREDEFINED=39
 
 352 # Character set identifiers are used in StyleSetCharacterSet.
 
 353 # The values are the same as the Windows *_CHARSET values.
 
 354 enu CharacterSet=SC_CHARSET_
 
 355 val SC_CHARSET_ANSI=0
 
 356 val SC_CHARSET_DEFAULT=1
 
 357 val SC_CHARSET_BALTIC=186
 
 358 val SC_CHARSET_CHINESEBIG5=136
 
 359 val SC_CHARSET_EASTEUROPE=238
 
 360 val SC_CHARSET_GB2312=134
 
 361 val SC_CHARSET_GREEK=161
 
 362 val SC_CHARSET_HANGUL=129
 
 363 val SC_CHARSET_MAC=77
 
 364 val SC_CHARSET_OEM=255
 
 365 val SC_CHARSET_RUSSIAN=204
 
 366 val SC_CHARSET_SHIFTJIS=128
 
 367 val SC_CHARSET_SYMBOL=2
 
 368 val SC_CHARSET_TURKISH=162
 
 369 val SC_CHARSET_JOHAB=130
 
 370 val SC_CHARSET_HEBREW=177
 
 371 val SC_CHARSET_ARABIC=178
 
 372 val SC_CHARSET_VIETNAMESE=163
 
 373 val SC_CHARSET_THAI=222
 
 375 # Clear all the styles and make equivalent to the global default style.
 
 376 set void StyleClearAll=2050(,)
 
 378 # Set the foreground colour of a style.
 
 379 set void StyleSetFore=2051(int style, colour fore)
 
 381 # Set the background colour of a style.
 
 382 set void StyleSetBack=2052(int style, colour back)
 
 384 # Set a style to be bold or not.
 
 385 set void StyleSetBold=2053(int style, bool bold)
 
 387 # Set a style to be italic or not.
 
 388 set void StyleSetItalic=2054(int style, bool italic)
 
 390 # Set the size of characters of a style.
 
 391 set void StyleSetSize=2055(int style, int sizePoints)
 
 393 # Set the font of a style.
 
 394 set void StyleSetFont=2056(int style, string fontName)
 
 396 # Set a style to have its end of line filled or not.
 
 397 set void StyleSetEOLFilled=2057(int style, bool filled)
 
 399 # Reset the default style to its state at startup
 
 400 fun void StyleResetDefault=2058(,)
 
 402 # Set a style to be underlined or not.
 
 403 set void StyleSetUnderline=2059(int style, bool underline)
 
 405 enu CaseVisible=SC_CASE_
 
 409 # Set a style to be mixed case, or to force upper or lower case.
 
 410 set void StyleSetCase=2060(int style, int caseForce)
 
 412 # Set the character set of the font in a style.
 
 413 set void StyleSetCharacterSet=2066(int style, int characterSet)
 
 415 # Set a style to be a hotspot or not.
 
 416 set void StyleSetHotSpot=2409(int style, bool hotspot)
 
 418 # Set the foreground colour of the selection and whether to use this setting.
 
 419 fun void SetSelFore=2067(bool useSetting, colour fore)
 
 421 # Set the background colour of the selection and whether to use this setting.
 
 422 fun void SetSelBack=2068(bool useSetting, colour back)
 
 424 # Set the foreground colour of the caret.
 
 425 set void SetCaretFore=2069(colour fore,)
 
 427 # When key+modifier combination km is pressed perform msg.
 
 428 fun void AssignCmdKey=2070(keymod km, int msg)
 
 430 # When key+modifier combination km do nothing.
 
 431 fun void ClearCmdKey=2071(keymod km,)
 
 433 # Drop all key mappings.
 
 434 fun void ClearAllCmdKeys=2072(,)
 
 436 # Set the styles for a segment of the document.
 
 437 fun void SetStylingEx=2073(int length, string styles)
 
 439 # Set a style to be visible or not.
 
 440 set void StyleSetVisible=2074(int style, bool visible)
 
 442 # Get the time in milliseconds that the caret is on and off.
 
 443 get int GetCaretPeriod=2075(,)
 
 445 # Get the time in milliseconds that the caret is on and off. 0 = steady on.
 
 446 set void SetCaretPeriod=2076(int periodMilliseconds,)
 
 448 # Set the set of characters making up words for when moving or selecting by word.
 
 449 set void SetWordChars=2077(, string characters)
 
 451 # Start a sequence of actions that is undone and redone as a unit.
 
 453 fun void BeginUndoAction=2078(,)
 
 455 # End a sequence of actions that is undone and redone as a unit.
 
 456 fun void EndUndoAction=2079(,)
 
 458 enu IndicatorStyle=INDIC_
 
 471 # Set an indicator to plain, squiggle or TT.
 
 472 set void IndicSetStyle=2080(int indic, int style)
 
 474 # Retrieve the style of an indicator.
 
 475 get int IndicGetStyle=2081(int indic,)
 
 477 # Set the foreground colour of an indicator.
 
 478 set void IndicSetFore=2082(int indic, colour fore)
 
 480 # Retrieve the foreground colour of an indicator.
 
 481 get colour IndicGetFore=2083(int indic,)
 
 483 # Set the foreground colour of all whitespace and whether to use this setting.
 
 484 fun void SetWhitespaceFore=2084(bool useSetting, colour fore)
 
 486 # Set the background colour of all whitespace and whether to use this setting.
 
 487 fun void SetWhitespaceBack=2085(bool useSetting, colour back)
 
 489 # Divide each styling byte into lexical class bits (default: 5) and indicator
 
 490 # bits (default: 3). If a lexer requires more than 32 lexical states, then this
 
 491 # is used to expand the possible states.
 
 492 set void SetStyleBits=2090(int bits,)
 
 494 # Retrieve number of bits in style bytes used to hold the lexical state.
 
 495 get int GetStyleBits=2091(,)
 
 497 # Used to hold extra styling information for each line.
 
 498 set void SetLineState=2092(int line, int state)
 
 500 # Retrieve the extra styling information for a line.
 
 501 get int GetLineState=2093(int line,)
 
 503 # Retrieve the last line number that has line state.
 
 504 get int GetMaxLineState=2094(,)
 
 506 # Is the background of the line containing the caret in a different colour?
 
 507 get bool GetCaretLineVisible=2095(,)
 
 509 # Display the background of the line containing the caret in a different colour.
 
 510 set void SetCaretLineVisible=2096(bool show,)
 
 512 # Get the colour of the background of the line containing the caret.
 
 513 get colour GetCaretLineBack=2097(,)
 
 515 # Set the colour of the background of the line containing the caret.
 
 516 set void SetCaretLineBack=2098(colour back,)
 
 518 # Set a style to be changeable or not (read only).
 
 519 # Experimental feature, currently buggy.
 
 520 set void StyleSetChangeable=2099(int style, bool changeable)
 
 522 # Display a auto-completion list.
 
 523 # The lenEntered parameter indicates how many characters before
 
 524 # the caret should be used to provide context.
 
 525 fun void AutoCShow=2100(int lenEntered, string itemList)
 
 527 # Remove the auto-completion list from the screen.
 
 528 fun void AutoCCancel=2101(,)
 
 530 # Is there an auto-completion list visible?
 
 531 fun bool AutoCActive=2102(,)
 
 533 # Retrieve the position of the caret when the auto-completion list was displayed.
 
 534 fun position AutoCPosStart=2103(,)
 
 536 # User has selected an item so remove the list and insert the selection.
 
 537 fun void AutoCComplete=2104(,)
 
 539 # Define a set of character that when typed cancel the auto-completion list.
 
 540 fun void AutoCStops=2105(, string characterSet)
 
 542 # Change the separator character in the string setting up an auto-completion list.
 
 543 # Default is space but can be changed if items contain space.
 
 544 set void AutoCSetSeparator=2106(int separatorCharacter,)
 
 546 # Retrieve the auto-completion list separator character.
 
 547 get int AutoCGetSeparator=2107(,)
 
 549 # Select the item in the auto-completion list that starts with a string.
 
 550 fun void AutoCSelect=2108(, string text)
 
 552 # Should the auto-completion list be cancelled if the user backspaces to a
 
 553 # position before where the box was created.
 
 554 set void AutoCSetCancelAtStart=2110(bool cancel,)
 
 556 # Retrieve whether auto-completion cancelled by backspacing before start.
 
 557 get bool AutoCGetCancelAtStart=2111(,)
 
 559 # Define a set of characters that when typed will cause the autocompletion to
 
 560 # choose the selected item.
 
 561 set void AutoCSetFillUps=2112(, string characterSet)
 
 563 # Should a single item auto-completion list automatically choose the item.
 
 564 set void AutoCSetChooseSingle=2113(bool chooseSingle,)
 
 566 # Retrieve whether a single item auto-completion list automatically choose the item.
 
 567 get bool AutoCGetChooseSingle=2114(,)
 
 569 # Set whether case is significant when performing auto-completion searches.
 
 570 set void AutoCSetIgnoreCase=2115(bool ignoreCase,)
 
 572 # Retrieve state of ignore case flag.
 
 573 get bool AutoCGetIgnoreCase=2116(,)
 
 575 # Display a list of strings and send notification when user chooses one.
 
 576 fun void UserListShow=2117(int listType, string itemList)
 
 578 # Set whether or not autocompletion is hidden automatically when nothing matches.
 
 579 set void AutoCSetAutoHide=2118(bool autoHide,)
 
 581 # Retrieve whether or not autocompletion is hidden automatically when nothing matches.
 
 582 get bool AutoCGetAutoHide=2119(,)
 
 584 # Set whether or not autocompletion deletes any word characters
 
 585 # after the inserted text upon completion.
 
 586 set void AutoCSetDropRestOfWord=2270(bool dropRestOfWord,)
 
 588 # Retrieve whether or not autocompletion deletes any word characters
 
 589 # after the inserted text upon completion.
 
 590 get bool AutoCGetDropRestOfWord=2271(,)
 
 592 # Register an XPM image for use in autocompletion lists.
 
 593 fun void RegisterImage=2405(int type, string xpmData)
 
 595 # Clear all the registered XPM images.
 
 596 fun void ClearRegisteredImages=2408(,)
 
 598 # Retrieve the auto-completion list type-separator character.
 
 599 get int AutoCGetTypeSeparator=2285(,)
 
 601 # Change the type-separator character in the string setting up an auto-completion list.
 
 602 # Default is '?' but can be changed if items contain '?'.
 
 603 set void AutoCSetTypeSeparator=2286(int separatorCharacter,)
 
 605 # Set the number of spaces used for one level of indentation.
 
 606 set void SetIndent=2122(int indentSize,)
 
 608 # Retrieve indentation size.
 
 609 get int GetIndent=2123(,)
 
 611 # Indentation will only use space characters if useTabs is false, otherwise
 
 612 # it will use a combination of tabs and spaces.
 
 613 set void SetUseTabs=2124(bool useTabs,)
 
 615 # Retrieve whether tabs will be used in indentation.
 
 616 get bool GetUseTabs=2125(,)
 
 618 # Change the indentation of a line to a number of columns.
 
 619 set void SetLineIndentation=2126(int line, int indentSize)
 
 621 # Retrieve the number of columns that a line is indented.
 
 622 get int GetLineIndentation=2127(int line,)
 
 624 # Retrieve the position before the first non indentation character on a line.
 
 625 get position GetLineIndentPosition=2128(int line,)
 
 627 # Retrieve the column number of a position, taking tab width into account.
 
 628 get int GetColumn=2129(position pos,)
 
 630 # Show or hide the horizontal scroll bar.
 
 631 set void SetHScrollBar=2130(bool show,)
 
 633 # Is the horizontal scroll bar visible?
 
 634 get bool GetHScrollBar=2131(,)
 
 636 # Show or hide indentation guides.
 
 637 set void SetIndentationGuides=2132(bool show,)
 
 639 # Are the indentation guides visible?
 
 640 get bool GetIndentationGuides=2133(,)
 
 642 # Set the highlighted indentation guide column.
 
 643 # 0 = no highlighted guide.
 
 644 set void SetHighlightGuide=2134(int column,)
 
 646 # Get the highlighted indentation guide column.
 
 647 get int GetHighlightGuide=2135(,)
 
 649 # Get the position after the last visible characters on a line.
 
 650 get int GetLineEndPosition=2136(int line,)
 
 652 # Get the code page used to interpret the bytes of the document as characters.
 
 653 get int GetCodePage=2137(,)
 
 655 # Get the foreground colour of the caret.
 
 656 get colour GetCaretFore=2138(,)
 
 659 get bool GetUsePalette=2139(,)
 
 662 get bool GetReadOnly=2140(,)
 
 664 # Sets the position of the caret.
 
 665 set void SetCurrentPos=2141(position pos,)
 
 667 # Sets the position that starts the selection - this becomes the anchor.
 
 668 set void SetSelectionStart=2142(position pos,)
 
 670 # Returns the position at the start of the selection.
 
 671 get position GetSelectionStart=2143(,)
 
 673 # Sets the position that ends the selection - this becomes the currentPosition.
 
 674 set void SetSelectionEnd=2144(position pos,)
 
 676 # Returns the position at the end of the selection.
 
 677 get position GetSelectionEnd=2145(,)
 
 679 # Sets the print magnification added to the point size of each style for printing.
 
 680 set void SetPrintMagnification=2146(int magnification,)
 
 682 # Returns the print magnification.
 
 683 get int GetPrintMagnification=2147(,)
 
 685 enu PrintOption=SC_PRINT_
 
 686 # PrintColourMode - use same colours as screen.
 
 687 val SC_PRINT_NORMAL=0
 
 688 # PrintColourMode - invert the light value of each style for printing.
 
 689 val SC_PRINT_INVERTLIGHT=1
 
 690 # PrintColourMode - force black text on white background for printing.
 
 691 val SC_PRINT_BLACKONWHITE=2
 
 692 # PrintColourMode - text stays coloured, but all background is forced to be white for printing.
 
 693 val SC_PRINT_COLOURONWHITE=3
 
 694 # PrintColourMode - only the default-background is forced to be white for printing.
 
 695 val SC_PRINT_COLOURONWHITEDEFAULTBG=4
 
 697 # Modify colours when printing for clearer printed text.
 
 698 set void SetPrintColourMode=2148(int mode,)
 
 700 # Returns the print colour mode.
 
 701 get int GetPrintColourMode=2149(,)
 
 703 enu FindOption=SCFIND_
 
 704 val SCFIND_WHOLEWORD=2
 
 705 val SCFIND_MATCHCASE=4
 
 706 val SCFIND_WORDSTART=0x00100000
 
 707 val SCFIND_REGEXP=0x00200000
 
 708 val SCFIND_POSIX=0x00400000
 
 710 # Find some text in the document.
 
 711 fun position FindText=2150(int flags, findtext ft)
 
 713 # On Windows, will draw the document into a display context such as a printer.
 
 714 fun void FormatRange=2151(bool draw, formatrange fr)
 
 716 # Retrieve the display line at the top of the display.
 
 717 get int GetFirstVisibleLine=2152(,)
 
 719 # Retrieve the contents of a line.
 
 720 # Returns the length of the line.
 
 721 fun int GetLine=2153(int line, stringresult text)
 
 723 # Returns the number of lines in the document. There is always at least one.
 
 724 get int GetLineCount=2154(,)
 
 726 # Sets the size in pixels of the left margin.
 
 727 set void SetMarginLeft=2155(, int pixelWidth)
 
 729 # Returns the size in pixels of the left margin.
 
 730 get int GetMarginLeft=2156(,)
 
 732 # Sets the size in pixels of the right margin.
 
 733 set void SetMarginRight=2157(, int pixelWidth)
 
 735 # Returns the size in pixels of the right margin.
 
 736 get int GetMarginRight=2158(,)
 
 738 # Is the document different from when it was last saved?
 
 739 get bool GetModify=2159(,)
 
 741 # Select a range of text.
 
 742 fun void SetSel=2160(position start, position end)
 
 744 # Retrieve the selected text.
 
 745 # Return the length of the text.
 
 746 fun int GetSelText=2161(,stringresult text)
 
 748 # Retrieve a range of text.
 
 749 # Return the length of the text.
 
 750 fun int GetTextRange=2162(, textrange tr)
 
 752 # Draw the selection in normal style or with selection highlighted.
 
 753 fun void HideSelection=2163(bool normal,)
 
 755 # Retrieve the x value of the point in the window where a position is displayed.
 
 756 fun int PointXFromPosition=2164(, position pos)
 
 758 # Retrieve the y value of the point in the window where a position is displayed.
 
 759 fun int PointYFromPosition=2165(, position pos)
 
 761 # Retrieve the line containing a position.
 
 762 fun int LineFromPosition=2166(position pos,)
 
 764 # Retrieve the position at the start of a line.
 
 765 fun int PositionFromLine=2167(int line,)
 
 767 # Scroll horizontally and vertically.
 
 768 fun void LineScroll=2168(int columns, int lines)
 
 770 # Ensure the caret is visible.
 
 771 fun void ScrollCaret=2169(,)
 
 773 # Replace the selected text with the argument text.
 
 774 fun void ReplaceSel=2170(, string text)
 
 776 # Set to read only or read write.
 
 777 set void SetReadOnly=2171(bool readOnly,)
 
 780 fun void Null=2172(,)
 
 782 # Will a paste succeed?
 
 783 fun bool CanPaste=2173(,)
 
 785 # Are there any undoable actions in the undo history?
 
 786 fun bool CanUndo=2174(,)
 
 788 # Delete the undo history.
 
 789 fun void EmptyUndoBuffer=2175(,)
 
 791 # Undo one action in the undo history.
 
 792 fun void Undo=2176(,)
 
 794 # Cut the selection to the clipboard.
 
 797 # Copy the selection to the clipboard.
 
 798 fun void Copy=2178(,)
 
 800 # Paste the contents of the clipboard into the document replacing the selection.
 
 801 fun void Paste=2179(,)
 
 803 # Clear the selection.
 
 804 fun void Clear=2180(,)
 
 806 # Replace the contents of the document with the argument text.
 
 807 fun void SetText=2181(, string text)
 
 809 # Retrieve all the text in the document.
 
 810 # Returns number of characters retrieved.
 
 811 fun int GetText=2182(int length, stringresult text)
 
 813 # Retrieve the number of characters in the document.
 
 814 get int GetTextLength=2183(,)
 
 816 # Retrieve a pointer to a function that processes messages for this Scintilla.
 
 817 get int GetDirectFunction=2184(,)
 
 819 # Retrieve a pointer value to use as the first argument when calling
 
 820 # the function returned by GetDirectFunction.
 
 821 get int GetDirectPointer=2185(,)
 
 823 # Set to overtype (true) or insert mode.
 
 824 set void SetOvertype=2186(bool overtype,)
 
 826 # Returns true if overtype mode is active otherwise false is returned.
 
 827 get bool GetOvertype=2187(,)
 
 829 # Set the width of the insert mode caret.
 
 830 set void SetCaretWidth=2188(int pixelWidth,)
 
 832 # Returns the width of the insert mode caret.
 
 833 get int GetCaretWidth=2189(,)
 
 835 # Sets the position that starts the target which is used for updating the
 
 836 # document without affecting the scroll position.
 
 837 set void SetTargetStart=2190(position pos,)
 
 839 # Get the position that starts the target.
 
 840 get position GetTargetStart=2191(,)
 
 842 # Sets the position that ends the target which is used for updating the
 
 843 # document without affecting the scroll position.
 
 844 set void SetTargetEnd=2192(position pos,)
 
 846 # Get the position that ends the target.
 
 847 get position GetTargetEnd=2193(,)
 
 849 # Replace the target text with the argument text.
 
 850 # Text is counted so it can contain nulls.
 
 851 # Returns the length of the replacement text.
 
 852 fun int ReplaceTarget=2194(int length, string text)
 
 854 # Replace the target text with the argument text after \d processing.
 
 855 # Text is counted so it can contain nulls.
 
 856 # Looks for \d where d is between 1 and 9 and replaces these with the strings
 
 857 # matched in the last search operation which were surrounded by \( and \).
 
 858 # Returns the length of the replacement text including any change
 
 859 # caused by processing the \d patterns.
 
 860 fun int ReplaceTargetRE=2195(int length, string text)
 
 862 # Search for a counted string in the target and set the target to the found
 
 863 # range. Text is counted so it can contain nulls.
 
 864 # Returns length of range or -1 for failure in which case target is not moved.
 
 865 fun int SearchInTarget=2197(int length, string text)
 
 867 # Set the search flags used by SearchInTarget.
 
 868 set void SetSearchFlags=2198(int flags,)
 
 870 # Get the search flags used by SearchInTarget.
 
 871 get int GetSearchFlags=2199(,)
 
 873 # Show a call tip containing a definition near position pos.
 
 874 fun void CallTipShow=2200(position pos, string definition)
 
 876 # Remove the call tip from the screen.
 
 877 fun void CallTipCancel=2201(,)
 
 879 # Is there an active call tip?
 
 880 fun bool CallTipActive=2202(,)
 
 882 # Retrieve the position where the caret was before displaying the call tip.
 
 883 fun position CallTipPosStart=2203(,)
 
 885 # Highlight a segment of the definition.
 
 886 fun void CallTipSetHlt=2204(int start, int end)
 
 888 # Set the background colour for the call tip.
 
 889 set void CallTipSetBack=2205(colour back,)
 
 891 # Set the foreground colour for the call tip.
 
 892 set void CallTipSetFore=2206(colour fore,)
 
 894 # Set the foreground colour for the highlighted part of the call tip.
 
 895 set void CallTipSetForeHlt=2207(colour fore,)
 
 897 # Find the display line of a document line taking hidden lines into account.
 
 898 fun int VisibleFromDocLine=2220(int line,)
 
 900 # Find the document line of a display line taking hidden lines into account.
 
 901 fun int DocLineFromVisible=2221(int lineDisplay,)
 
 903 enu FoldLevel=SC_FOLDLEVEL
 
 904 val SC_FOLDLEVELBASE=0x400
 
 905 val SC_FOLDLEVELWHITEFLAG=0x1000
 
 906 val SC_FOLDLEVELHEADERFLAG=0x2000
 
 907 val SC_FOLDLEVELBOXHEADERFLAG=0x4000
 
 908 val SC_FOLDLEVELBOXFOOTERFLAG=0x8000
 
 909 val SC_FOLDLEVELCONTRACTED=0x10000
 
 910 val SC_FOLDLEVELUNINDENT=0x20000
 
 911 val SC_FOLDLEVELNUMBERMASK=0x0FFF
 
 913 # Set the fold level of a line.
 
 914 # This encodes an integer level along with flags indicating whether the
 
 915 # line is a header and whether it is effectively white space.
 
 916 set void SetFoldLevel=2222(int line, int level)
 
 918 # Retrieve the fold level of a line.
 
 919 get int GetFoldLevel=2223(int line,)
 
 921 # Find the last child line of a header line.
 
 922 get int GetLastChild=2224(int line, int level)
 
 924 # Find the parent line of a child line.
 
 925 get int GetFoldParent=2225(int line,)
 
 927 # Make a range of lines visible.
 
 928 fun void ShowLines=2226(int lineStart, int lineEnd)
 
 930 # Make a range of lines invisible.
 
 931 fun void HideLines=2227(int lineStart, int lineEnd)
 
 934 get bool GetLineVisible=2228(int line,)
 
 936 # Show the children of a header line.
 
 937 set void SetFoldExpanded=2229(int line, bool expanded)
 
 939 # Is a header line expanded?
 
 940 get bool GetFoldExpanded=2230(int line,)
 
 942 # Switch a header line between expanded and contracted.
 
 943 fun void ToggleFold=2231(int line,)
 
 945 # Ensure a particular line is visible by expanding any header line hiding it.
 
 946 fun void EnsureVisible=2232(int line,)
 
 948 enu FoldFlag=SC_FOLDFLAG_
 
 949 val SC_FOLDFLAG_LINEBEFORE_EXPANDED=0x0002
 
 950 val SC_FOLDFLAG_LINEBEFORE_CONTRACTED=0x0004
 
 951 val SC_FOLDFLAG_LINEAFTER_EXPANDED=0x0008
 
 952 val SC_FOLDFLAG_LINEAFTER_CONTRACTED=0x0010
 
 953 val SC_FOLDFLAG_LEVELNUMBERS=0x0040
 
 954 val SC_FOLDFLAG_BOX=0x0001
 
 956 # Set some style options for folding.
 
 957 fun void SetFoldFlags=2233(int flags,)
 
 959 # Ensure a particular line is visible by expanding any header line hiding it.
 
 960 # Use the currently set visibility policy to determine which range to display.
 
 961 fun void EnsureVisibleEnforcePolicy=2234(int line,)
 
 963 # Sets whether a tab pressed when caret is within indentation indents.
 
 964 set void SetTabIndents=2260(bool tabIndents,)
 
 966 # Does a tab pressed when caret is within indentation indent?
 
 967 get bool GetTabIndents=2261(,)
 
 969 # Sets whether a backspace pressed when caret is within indentation unindents.
 
 970 set void SetBackSpaceUnIndents=2262(bool bsUnIndents,)
 
 972 # Does a backspace pressed when caret is within indentation unindent?
 
 973 get bool GetBackSpaceUnIndents=2263(,)
 
 975 val SC_TIME_FOREVER=10000000
 
 977 # Sets the time the mouse must sit still to generate a mouse dwell event.
 
 978 set void SetMouseDwellTime=2264(int periodMilliseconds,)
 
 980 # Retrieve the time the mouse must sit still to generate a mouse dwell event.
 
 981 get int GetMouseDwellTime=2265(,)
 
 983 # Get position of start of word.
 
 984 fun int WordStartPosition=2266(position pos, bool onlyWordCharacters)
 
 986 # Get position of end of word.
 
 987 fun int WordEndPosition=2267(position pos, bool onlyWordCharacters)
 
 993 # Sets whether text is word wrapped.
 
 994 set void SetWrapMode=2268(int mode,)
 
 996 # Retrieve whether text is word wrapped.
 
 997 get int GetWrapMode=2269(,)
 
 999 enu LineCache=SC_CACHE_
 
1001 val SC_CACHE_CARET=1
 
1003 val SC_CACHE_DOCUMENT=3
 
1005 # Sets the degree of caching of layout information.
 
1006 set void SetLayoutCache=2272(int mode,)
 
1008 # Retrieve the degree of caching of layout information.
 
1009 get int GetLayoutCache=2273(,)
 
1011 # Sets the document width assumed for scrolling.
 
1012 set void SetScrollWidth=2274(int pixelWidth,)
 
1014 # Retrieve the document width assumed for scrolling.
 
1015 get int GetScrollWidth=2275(,)
 
1017 # Measure the pixel width of some text in a particular style.
 
1018 # Nul terminated text argument.
 
1019 # Does not handle tab or control characters.
 
1020 fun int TextWidth=2276(int style, string text)
 
1022 # Sets the scroll range so that maximum scroll position has
 
1023 # the last line at the bottom of the view (default).
 
1024 # Setting this to false allows scrolling one page below the last line.
 
1025 set void SetEndAtLastLine=2277(bool endAtLastLine,)
 
1027 # Retrieve whether the maximum scroll position has the last
 
1028 # line at the bottom of the view.
 
1029 get int GetEndAtLastLine=2278(,)
 
1031 # Retrieve the height of a particular line of text in pixels.
 
1032 fun int TextHeight=2279(int line,)
 
1034 # Show or hide the vertical scroll bar.
 
1035 set void SetVScrollBar=2280(bool show,)
 
1037 # Is the vertical scroll bar visible?
 
1038 get bool GetVScrollBar=2281(,)
 
1040 # Append a string to the end of the document without changing the selection.
 
1041 fun void AppendText=2282(int length, string text)
 
1043 # Is drawing done in two phases with backgrounds drawn before foregrounds?
 
1044 get bool GetTwoPhaseDraw=2283(,)
 
1046 # In twoPhaseDraw mode, drawing is performed in two phases, first the background
 
1047 # and then the foreground. This avoids chopping off characters that overlap the next run.
 
1048 set void SetTwoPhaseDraw=2284(bool twoPhase,)
 
1050 # Make the target range start and end be the same as the selection range start and end.
 
1051 fun void TargetFromSelection=2287(,)
 
1053 # Join the lines in the target.
 
1054 fun void LinesJoin=2288(,)
 
1056 # Split the lines in the target into lines that are less wide than pixelWidth
 
1058 fun void LinesSplit=2289(int pixelWidth,)
 
1060 # Set the colours used as a chequerboard pattern in the fold margin
 
1061 fun void SetFoldMarginColour=2290(bool useSetting, colour back)
 
1062 fun void SetFoldMarginHiColour=2291(bool useSetting, colour fore)
 
1064 ## New messages go here
 
1066 ## Start of key messages
 
1067 # Move caret down one line.
 
1068 fun void LineDown=2300(,)
 
1070 # Move caret down one line extending selection to new caret position.
 
1071 fun void LineDownExtend=2301(,)
 
1073 # Move caret up one line.
 
1074 fun void LineUp=2302(,)
 
1076 # Move caret up one line extending selection to new caret position.
 
1077 fun void LineUpExtend=2303(,)
 
1079 # Move caret left one character.
 
1080 fun void CharLeft=2304(,)
 
1082 # Move caret left one character extending selection to new caret position.
 
1083 fun void CharLeftExtend=2305(,)
 
1085 # Move caret right one character.
 
1086 fun void CharRight=2306(,)
 
1088 # Move caret right one character extending selection to new caret position.
 
1089 fun void CharRightExtend=2307(,)
 
1091 # Move caret left one word.
 
1092 fun void WordLeft=2308(,)
 
1094 # Move caret left one word extending selection to new caret position.
 
1095 fun void WordLeftExtend=2309(,)
 
1097 # Move caret right one word.
 
1098 fun void WordRight=2310(,)
 
1100 # Move caret right one word extending selection to new caret position.
 
1101 fun void WordRightExtend=2311(,)
 
1103 # Move caret to first position on line.
 
1104 fun void Home=2312(,)
 
1106 # Move caret to first position on line extending selection to new caret position.
 
1107 fun void HomeExtend=2313(,)
 
1109 # Move caret to last position on line.
 
1110 fun void LineEnd=2314(,)
 
1112 # Move caret to last position on line extending selection to new caret position.
 
1113 fun void LineEndExtend=2315(,)
 
1115 # Move caret to first position in document.
 
1116 fun void DocumentStart=2316(,)
 
1118 # Move caret to first position in document extending selection to new caret position.
 
1119 fun void DocumentStartExtend=2317(,)
 
1121 # Move caret to last position in document.
 
1122 fun void DocumentEnd=2318(,)
 
1124 # Move caret to last position in document extending selection to new caret position.
 
1125 fun void DocumentEndExtend=2319(,)
 
1127 # Move caret one page up.
 
1128 fun void PageUp=2320(,)
 
1130 # Move caret one page up extending selection to new caret position.
 
1131 fun void PageUpExtend=2321(,)
 
1133 # Move caret one page down.
 
1134 fun void PageDown=2322(,)
 
1136 # Move caret one page down extending selection to new caret position.
 
1137 fun void PageDownExtend=2323(,)
 
1139 # Switch from insert to overtype mode or the reverse.
 
1140 fun void EditToggleOvertype=2324(,)
 
1142 # Cancel any modes such as call tip or auto-completion list display.
 
1143 fun void Cancel=2325(,)
 
1145 # Delete the selection or if no selection, the character before the caret.
 
1146 fun void DeleteBack=2326(,)
 
1148 # If selection is empty or all on one line replace the selection with a tab character.
 
1149 # If more than one line selected, indent the lines.
 
1150 fun void Tab=2327(,)
 
1152 # Dedent the selected lines.
 
1153 fun void BackTab=2328(,)
 
1155 # Insert a new line, may use a CRLF, CR or LF depending on EOL mode.
 
1156 fun void NewLine=2329(,)
 
1158 # Insert a Form Feed character.
 
1159 fun void FormFeed=2330(,)
 
1161 # Move caret to before first visible character on line.
 
1162 # If already there move to first character on line.
 
1163 fun void VCHome=2331(,)
 
1165 # Like VCHome but extending selection to new caret position.
 
1166 fun void VCHomeExtend=2332(,)
 
1168 # Magnify the displayed text by increasing the sizes by 1 point.
 
1169 fun void ZoomIn=2333(,)
 
1171 # Make the displayed text smaller by decreasing the sizes by 1 point.
 
1172 fun void ZoomOut=2334(,)
 
1174 # Delete the word to the left of the caret.
 
1175 fun void DelWordLeft=2335(,)
 
1177 # Delete the word to the right of the caret.
 
1178 fun void DelWordRight=2336(,)
 
1180 # Cut the line containing the caret.
 
1181 fun void LineCut=2337(,)
 
1183 # Delete the line containing the caret.
 
1184 fun void LineDelete=2338(,)
 
1186 # Switch the current line with the previous.
 
1187 fun void LineTranspose=2339(,)
 
1189 # Duplicate the current line.
 
1190 fun void LineDuplicate=2404(,)
 
1192 # Transform the selection to lower case.
 
1193 fun void LowerCase=2340(,)
 
1195 # Transform the selection to upper case.
 
1196 fun void UpperCase=2341(,)
 
1198 # Scroll the document down, keeping the caret visible.
 
1199 fun void LineScrollDown=2342(,)
 
1201 # Scroll the document up, keeping the caret visible.
 
1202 fun void LineScrollUp=2343(,)
 
1204 # Delete the selection or if no selection, the character before the caret.
 
1205 # Will not delete the character before at the start of a line.
 
1206 fun void DeleteBackNotLine=2344(,)
 
1208 # Move caret to first position on display line.
 
1209 fun void HomeDisplay=2345(,)
 
1211 # Move caret to first position on display line extending selection to
 
1212 # new caret position.
 
1213 fun void HomeDisplayExtend=2346(,)
 
1215 # Move caret to last position on display line.
 
1216 fun void LineEndDisplay=2347(,)
 
1218 # Move caret to last position on display line extending selection to new
 
1220 fun void LineEndDisplayExtend=2348(,)
 
1222 # These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)?
 
1223 # except they behave differently when word-wrap is enabled:
 
1224 # They go first to the start / end of the display line, like (Home|LineEnd)Display
 
1225 # The difference is that, the cursor is already at the point, it goes on to the start
 
1226 # or end of the document line, as appropriate for (Home|LineEnd|VCHome)Extend.
 
1228 fun void HomeWrap=2349(,)
 
1229 fun void HomeWrapExtend=2450(,)
 
1230 fun void LineEndWrap=2451(,)
 
1231 fun void LineEndWrapExtend=2452(,)
 
1232 fun void VCHomeWrap=2453(,)
 
1233 fun void VCHomeWrapExtend=2454(,)
 
1235 # Copy the line containing the caret.
 
1236 fun void LineCopy=2455(,)
 
1238 # Move the caret inside current view if it's not there already.
 
1239 fun void MoveCaretInsideView=2401(,)
 
1241 # How many characters are on a line, not including end of line characters?
 
1242 fun int LineLength=2350(int line,)
 
1244 # Highlight the characters at two positions.
 
1245 fun void BraceHighlight=2351(position pos1, position pos2)
 
1247 # Highlight the character at a position indicating there is no matching brace.
 
1248 fun void BraceBadLight=2352(position pos,)
 
1250 # Find the position of a matching brace or INVALID_POSITION if no match.
 
1251 fun position BraceMatch=2353(position pos,)
 
1253 # Are the end of line characters visible?
 
1254 get bool GetViewEOL=2355(,)
 
1256 # Make the end of line characters visible or invisible.
 
1257 set void SetViewEOL=2356(bool visible,)
 
1259 # Retrieve a pointer to the document object.
 
1260 get int GetDocPointer=2357(,)
 
1262 # Change the document object used.
 
1263 set void SetDocPointer=2358(,int pointer)
 
1265 # Set which document modification events are sent to the container.
 
1266 set void SetModEventMask=2359(int mask,)
 
1268 enu EdgeVisualStyle=EDGE_
 
1271 val EDGE_BACKGROUND=2
 
1273 # Retrieve the column number which text should be kept within.
 
1274 get int GetEdgeColumn=2360(,)
 
1276 # Set the column number of the edge.
 
1277 # If text goes past the edge then it is highlighted.
 
1278 set void SetEdgeColumn=2361(int column,)
 
1280 # Retrieve the edge highlight mode.
 
1281 get int GetEdgeMode=2362(,)
 
1283 # The edge may be displayed by a line (EDGE_LINE) or by highlighting text that
 
1284 # goes beyond it (EDGE_BACKGROUND) or not displayed at all (EDGE_NONE).
 
1285 set void SetEdgeMode=2363(int mode,)
 
1287 # Retrieve the colour used in edge indication.
 
1288 get colour GetEdgeColour=2364(,)
 
1290 # Change the colour used in edge indication.
 
1291 set void SetEdgeColour=2365(colour edgeColour,)
 
1293 # Sets the current caret position to be the search anchor.
 
1294 fun void SearchAnchor=2366(,)
 
1296 # Find some text starting at the search anchor.
 
1297 # Does not ensure the selection is visible.
 
1298 fun int SearchNext=2367(int flags, string text)
 
1300 # Find some text starting at the search anchor and moving backwards.
 
1301 # Does not ensure the selection is visible.
 
1302 fun int SearchPrev=2368(int flags, string text)
 
1304 # Retrieves the number of lines completely visible.
 
1305 get int LinesOnScreen=2370(,)
 
1307 # Set whether a pop up menu is displayed automatically when the user presses
 
1308 # the wrong mouse button.
 
1309 fun void UsePopUp=2371(bool allowPopUp,)
 
1311 # Is the selection rectangular? The alternative is the more common stream selection.
 
1312 get bool SelectionIsRectangle=2372(,)
 
1314 # Set the zoom level. This number of points is added to the size of all fonts.
 
1315 # It may be positive to magnify or negative to reduce.
 
1316 set void SetZoom=2373(int zoom,)
 
1317 # Retrieve the zoom level.
 
1318 get int GetZoom=2374(,)
 
1320 # Create a new document object.
 
1321 # Starts with reference count of 1 and not selected into editor.
 
1322 fun int CreateDocument=2375(,)
 
1323 # Extend life of document.
 
1324 fun void AddRefDocument=2376(, int doc)
 
1325 # Release a reference to the document, deleting document if it fades to black.
 
1326 fun void ReleaseDocument=2377(, int doc)
 
1328 # Get which document modification events are sent to the container.
 
1329 get int GetModEventMask=2378(,)
 
1331 # Change internal focus flag.
 
1332 set void SetFocus=2380(bool focus,)
 
1333 # Get internal focus flag.
 
1334 get bool GetFocus=2381(,)
 
1336 # Change error status - 0 = OK.
 
1337 set void SetStatus=2382(int statusCode,)
 
1339 get int GetStatus=2383(,)
 
1341 # Set whether the mouse is captured when its button is pressed.
 
1342 set void SetMouseDownCaptures=2384(bool captures,)
 
1343 # Get whether mouse gets captured.
 
1344 get bool GetMouseDownCaptures=2385(,)
 
1346 enu CursorShape=SC_CURSOR
 
1347 val SC_CURSORNORMAL=-1
 
1349 # Sets the cursor to one of the SC_CURSOR* values.
 
1350 set void SetCursor=2386(int cursorType,)
 
1352 get int GetCursor=2387(,)
 
1354 # Change the way control characters are displayed:
 
1355 # If symbol is < 32, keep the drawn way, else, use the given character.
 
1356 set void SetControlCharSymbol=2388(int symbol,)
 
1357 # Get the way control characters are displayed.
 
1358 get int GetControlCharSymbol=2389(,)
 
1360 # Move to the previous change in capitalisation.
 
1361 fun void WordPartLeft=2390(,)
 
1362 # Move to the previous change in capitalisation extending selection
 
1363 # to new caret position.
 
1364 fun void WordPartLeftExtend=2391(,)
 
1365 # Move to the change next in capitalisation.
 
1366 fun void WordPartRight=2392(,)
 
1367 # Move to the next change in capitalisation extending selection
 
1368 # to new caret position.
 
1369 fun void WordPartRightExtend=2393(,)
 
1371 # Constants for use with SetVisiblePolicy, similar to SetCaretPolicy.
 
1372 val VISIBLE_SLOP=0x01
 
1373 val VISIBLE_STRICT=0x04
 
1374 # Set the way the display area is determined when a particular line
 
1375 # is to be moved to by Find, FindNext, GotoLine, etc.
 
1376 fun void SetVisiblePolicy=2394(int visiblePolicy, int visibleSlop)
 
1378 # Delete back from the current position to the start of the line.
 
1379 fun void DelLineLeft=2395(,)
 
1381 # Delete forwards from the current position to the end of the line.
 
1382 fun void DelLineRight=2396(,)
 
1384 # Get and Set the xOffset (ie, horizonal scroll position).
 
1385 set void SetXOffset=2397(int newOffset,)
 
1386 get int GetXOffset=2398(,)
 
1388 # Set the last x chosen value to be the caret x position
 
1389 fun void ChooseCaretX=2399(,)
 
1391 # Set the focus to this Scintilla widget.
 
1393 fun void GrabFocus=2400(,)
 
1395 enu CaretPolicy = CARET_
 
1396 # Caret policy, used by SetXCaretPolicy and SetYCaretPolicy.
 
1397 # If CARET_SLOP is set, we can define a slop value: caretSlop.
 
1398 # This value defines an unwanted zone (UZ) where the caret is... unwanted.
 
1399 # This zone is defined as a number of pixels near the vertical margins,
 
1400 # and as a number of lines near the horizontal margins.
 
1401 # By keeping the caret away from the edges, it is seen within its context,
 
1402 # so it is likely that the identifier that the caret is on can be completely seen,
 
1403 # and that the current line is seen with some of the lines following it which are
 
1404 # often dependent on that line.
 
1406 # If CARET_STRICT is set, the policy is enforced... strictly.
 
1407 # The caret is centred on the display if slop is not set,
 
1408 # and cannot go in the UZ if slop is set.
 
1409 val CARET_STRICT=0x04
 
1410 # If CARET_JUMPS is set, the display is moved more energetically
 
1411 # so the caret can move in the same direction longer before the policy is applied again.
 
1412 val CARET_JUMPS=0x10
 
1413 # If CARET_EVEN is not set, instead of having symmetrical UZs,
 
1414 # the left and bottom UZs are extended up to right and top UZs respectively.
 
1415 # This way, we favour the displaying of useful information: the begining of lines,
 
1416 # where most code reside, and the lines after the caret, eg. the body of a function.
 
1419 # Set the way the caret is kept visible when going sideway.
 
1420 # The exclusion zone is given in pixels.
 
1421 fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop)
 
1423 # Set the way the line the caret is on is kept visible.
 
1424 # The exclusion zone is given in lines.
 
1425 fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop)
 
1427 # Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
 
1428 set void SetPrintWrapMode=2406(int mode,)
 
1430 # Is printing line wrapped.
 
1431 get int GetPrintWrapMode=2407(,)
 
1433 # Set a fore colour for active hotspots.
 
1434 set void SetHotspotActiveFore=2410(bool useSetting, colour fore)
 
1436 # Set a back colour for active hotspots.
 
1437 set void SetHotspotActiveBack=2411(bool useSetting, colour back)
 
1439 # Enable / Disable underlining active hotspots.
 
1440 set void SetHotspotActiveUnderline=2412(bool underline,)
 
1442 # Move caret between paragraphs (delimited by empty lines)
 
1443 fun void ParaDown=2413(,)
 
1444 fun void ParaDownExtend=2414(,)
 
1445 fun void ParaUp=2415(,)
 
1446 fun void ParaUpExtend=2416(,)
 
1448 # Given a valid document position, return the previous position taking code
 
1449 # page into account. Returns 0 if passed 0.
 
1450 fun position PositionBefore=2417(position pos,)
 
1452 # Given a valid document position, return the next position taking code
 
1453 # page into account. Maximum value returned is the last position in the document.
 
1454 fun position PositionAfter=2418(position pos,)
 
1456 # Copy a range of text to the clipboard. Positions are clipped into the document.
 
1457 fun void CopyRange=2419(position start, position end)
 
1459 # Copy argument text to the clipboard.
 
1460 fun void CopyText=2420(int length, string text)
 
1462 # Start notifying the container of all key presses and commands.
 
1463 fun void StartRecord=3001(,)
 
1465 # Stop notifying the container of all key presses and commands.
 
1466 fun void StopRecord=3002(,)
 
1468 # Set the lexing language of the document.
 
1469 set void SetLexer=4001(int lexer,)
 
1471 # Retrieve the lexing language of the document.
 
1472 get int GetLexer=4002(,)
 
1474 # Colourise a segment of the document using the current lexing language.
 
1475 fun void Colourise=4003(position start, position end)
 
1477 # Set up a value that may be used by a lexer for some optional feature.
 
1478 set void SetProperty=4004(string key, string value)
 
1480 # Maximum value of keywordSet parameter of SetKeyWords.
 
1481 val KEYWORDSET_MAX=8
 
1483 # Set up the key words used by the lexer.
 
1484 set void SetKeyWords=4005(int keywordSet, string keyWords)
 
1486 # Set the lexing language of the document based on string name.
 
1487 set void SetLexerLanguage=4006(, string language)
 
1489 # Load a lexer library (dll / so)
 
1490 fun void LoadLexerLibrary=4007(, string path)
 
1493 # Type of modification and the action which caused the modification.
 
1494 # These are defined as a bit mask to make it easy to specify which notifications are wanted.
 
1495 # One bit is set from each of SC_MOD_* and SC_PERFORMED_*.
 
1496 enu ModificationFlags=SC_MOD_ SC_PERFORMED_ SC_LAST
 
1497 val SC_MOD_INSERTTEXT=0x1
 
1498 val SC_MOD_DELETETEXT=0x2
 
1499 val SC_MOD_CHANGESTYLE=0x4
 
1500 val SC_MOD_CHANGEFOLD=0x8
 
1501 val SC_PERFORMED_USER=0x10
 
1502 val SC_PERFORMED_UNDO=0x20
 
1503 val SC_PERFORMED_REDO=0x40
 
1504 val SC_LASTSTEPINUNDOREDO=0x100
 
1505 val SC_MOD_CHANGEMARKER=0x200
 
1506 val SC_MOD_BEFOREINSERT=0x400
 
1507 val SC_MOD_BEFOREDELETE=0x800
 
1508 val SC_MODEVENTMASKALL=0xF77
 
1510 # For compatibility, these go through the COMMAND notification rather than NOTIFY
 
1511 # and should have had exactly the same values as the EN_* constants.
 
1512 # Unfortunately the SETFOCUS and KILLFOCUS are flipped over from EN_*
 
1513 # As clients depend on these constants, this will not be changed.
 
1515 val SCEN_SETFOCUS=512
 
1516 val SCEN_KILLFOCUS=256
 
1518 # Symbolic key codes and modifier flags.
 
1519 # ASCII and other printable characters below 256.
 
1520 # Extended keys above 300.
 
1538 val SCK_SUBTRACT=311
 
1546 ################################################
 
1549 val SCLEX_CONTAINER=0
 
1558 val SCLEX_PROPERTIES=9
 
1559 val SCLEX_ERRORLIST=10
 
1560 val SCLEX_MAKEFILE=11
 
1573 val SCLEX_EIFFELKW=24
 
1575 val SCLEX_NNCRONTAB=26
 
1576 val SCLEX_BULLANT=27
 
1577 val SCLEX_VBSCRIPT=28
 
1582 val SCLEX_SCRIPTOL=33
 
1584 val SCLEX_CPPNOCASE=35
 
1585 val SCLEX_FORTRAN=36
 
1590 val SCLEX_ESCRIPT=41
 
1595 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a
 
1596 # value assigned in sequence from SCLEX_AUTOMATIC+1.
 
1597 val SCLEX_AUTOMATIC=1000
 
1598 # Lexical states for SCLEX_PYTHON
 
1599 lex Python=SCLEX_PYTHON SCE_P_
 
1600 lex Ruby=SCLEX_RUBY SCE_P_
 
1602 val SCE_P_COMMENTLINE=1
 
1605 val SCE_P_CHARACTER=4
 
1608 val SCE_P_TRIPLEDOUBLE=7
 
1609 val SCE_P_CLASSNAME=8
 
1611 val SCE_P_OPERATOR=10
 
1612 val SCE_P_IDENTIFIER=11
 
1613 val SCE_P_COMMENTBLOCK=12
 
1614 val SCE_P_STRINGEOL=13
 
1615 # Lexical states for SCLEX_CPP
 
1616 lex Cpp=SCLEX_CPP SCE_C_
 
1617 lex SQL=SCLEX_SQL SCE_C_
 
1618 lex Pascal=SCLEX_PASCAL SCE_C_
 
1619 lex TCL=SCLEX_TCL SCE_C_
 
1620 lex BullAnt=SCLEX_BULLANT SCE_C_
 
1623 val SCE_C_COMMENTLINE=2
 
1624 val SCE_C_COMMENTDOC=3
 
1628 val SCE_C_CHARACTER=7
 
1630 val SCE_C_PREPROCESSOR=9
 
1631 val SCE_C_OPERATOR=10
 
1632 val SCE_C_IDENTIFIER=11
 
1633 val SCE_C_STRINGEOL=12
 
1634 val SCE_C_VERBATIM=13
 
1636 val SCE_C_COMMENTLINEDOC=15
 
1638 val SCE_C_COMMENTDOCKEYWORD=17
 
1639 val SCE_C_COMMENTDOCKEYWORDERROR=18
 
1640 val SCE_C_GLOBALCLASS=19
 
1641 # Lexical states for SCLEX_HTML, SCLEX_XML
 
1642 lex HTML=SCLEX_HTML SCE_H
 
1643 lex XML=SCLEX_XML SCE_H
 
1644 lex ASP=SCLEX_ASP SCE_H
 
1645 lex PHP=SCLEX_PHP SCE_H
 
1648 val SCE_H_TAGUNKNOWN=2
 
1649 val SCE_H_ATTRIBUTE=3
 
1650 val SCE_H_ATTRIBUTEUNKNOWN=4
 
1652 val SCE_H_DOUBLESTRING=6
 
1653 val SCE_H_SINGLESTRING=7
 
1659 val SCE_H_XMLSTART=12
 
1665 val SCE_H_QUESTION=18
 
1669 val SCE_H_XCCOMMENT=20
 
1671 val SCE_H_SGML_DEFAULT=21
 
1672 val SCE_H_SGML_COMMAND=22
 
1673 val SCE_H_SGML_1ST_PARAM=23
 
1674 val SCE_H_SGML_DOUBLESTRING=24
 
1675 val SCE_H_SGML_SIMPLESTRING=25
 
1676 val SCE_H_SGML_ERROR=26
 
1677 val SCE_H_SGML_SPECIAL=27
 
1678 val SCE_H_SGML_ENTITY=28
 
1679 val SCE_H_SGML_COMMENT=29
 
1680 val SCE_H_SGML_1ST_PARAM_COMMENT=30
 
1681 val SCE_H_SGML_BLOCK_DEFAULT=31
 
1682 # Embedded Javascript
 
1684 val SCE_HJ_DEFAULT=41
 
1685 val SCE_HJ_COMMENT=42
 
1686 val SCE_HJ_COMMENTLINE=43
 
1687 val SCE_HJ_COMMENTDOC=44
 
1688 val SCE_HJ_NUMBER=45
 
1690 val SCE_HJ_KEYWORD=47
 
1691 val SCE_HJ_DOUBLESTRING=48
 
1692 val SCE_HJ_SINGLESTRING=49
 
1693 val SCE_HJ_SYMBOLS=50
 
1694 val SCE_HJ_STRINGEOL=51
 
1697 val SCE_HJA_START=55
 
1698 val SCE_HJA_DEFAULT=56
 
1699 val SCE_HJA_COMMENT=57
 
1700 val SCE_HJA_COMMENTLINE=58
 
1701 val SCE_HJA_COMMENTDOC=59
 
1702 val SCE_HJA_NUMBER=60
 
1704 val SCE_HJA_KEYWORD=62
 
1705 val SCE_HJA_DOUBLESTRING=63
 
1706 val SCE_HJA_SINGLESTRING=64
 
1707 val SCE_HJA_SYMBOLS=65
 
1708 val SCE_HJA_STRINGEOL=66
 
1709 val SCE_HJA_REGEX=67
 
1712 val SCE_HB_DEFAULT=71
 
1713 val SCE_HB_COMMENTLINE=72
 
1714 val SCE_HB_NUMBER=73
 
1716 val SCE_HB_STRING=75
 
1717 val SCE_HB_IDENTIFIER=76
 
1718 val SCE_HB_STRINGEOL=77
 
1720 val SCE_HBA_START=80
 
1721 val SCE_HBA_DEFAULT=81
 
1722 val SCE_HBA_COMMENTLINE=82
 
1723 val SCE_HBA_NUMBER=83
 
1725 val SCE_HBA_STRING=85
 
1726 val SCE_HBA_IDENTIFIER=86
 
1727 val SCE_HBA_STRINGEOL=87
 
1730 val SCE_HP_DEFAULT=91
 
1731 val SCE_HP_COMMENTLINE=92
 
1732 val SCE_HP_NUMBER=93
 
1733 val SCE_HP_STRING=94
 
1734 val SCE_HP_CHARACTER=95
 
1736 val SCE_HP_TRIPLE=97
 
1737 val SCE_HP_TRIPLEDOUBLE=98
 
1738 val SCE_HP_CLASSNAME=99
 
1739 val SCE_HP_DEFNAME=100
 
1740 val SCE_HP_OPERATOR=101
 
1741 val SCE_HP_IDENTIFIER=102
 
1743 val SCE_HPA_START=105
 
1744 val SCE_HPA_DEFAULT=106
 
1745 val SCE_HPA_COMMENTLINE=107
 
1746 val SCE_HPA_NUMBER=108
 
1747 val SCE_HPA_STRING=109
 
1748 val SCE_HPA_CHARACTER=110
 
1749 val SCE_HPA_WORD=111
 
1750 val SCE_HPA_TRIPLE=112
 
1751 val SCE_HPA_TRIPLEDOUBLE=113
 
1752 val SCE_HPA_CLASSNAME=114
 
1753 val SCE_HPA_DEFNAME=115
 
1754 val SCE_HPA_OPERATOR=116
 
1755 val SCE_HPA_IDENTIFIER=117
 
1757 val SCE_HPHP_DEFAULT=118
 
1758 val SCE_HPHP_HSTRING=119
 
1759 val SCE_HPHP_SIMPLESTRING=120
 
1760 val SCE_HPHP_WORD=121
 
1761 val SCE_HPHP_NUMBER=122
 
1762 val SCE_HPHP_VARIABLE=123
 
1763 val SCE_HPHP_COMMENT=124
 
1764 val SCE_HPHP_COMMENTLINE=125
 
1765 val SCE_HPHP_HSTRING_VARIABLE=126
 
1766 val SCE_HPHP_OPERATOR=127
 
1767 # Lexical states for SCLEX_PERL
 
1768 lex Perl=SCLEX_PERL SCE_PL_
 
1769 val SCE_PL_DEFAULT=0
 
1771 val SCE_PL_COMMENTLINE=2
 
1776 val SCE_PL_CHARACTER=7
 
1777 val SCE_PL_PUNCTUATION=8
 
1778 val SCE_PL_PREPROCESSOR=9
 
1779 val SCE_PL_OPERATOR=10
 
1780 val SCE_PL_IDENTIFIER=11
 
1781 val SCE_PL_SCALAR=12
 
1784 val SCE_PL_SYMBOLTABLE=15
 
1786 val SCE_PL_REGSUBST=18
 
1787 val SCE_PL_LONGQUOTE=19
 
1788 val SCE_PL_BACKTICKS=20
 
1789 val SCE_PL_DATASECTION=21
 
1790 val SCE_PL_HERE_DELIM=22
 
1791 val SCE_PL_HERE_Q=23
 
1792 val SCE_PL_HERE_QQ=24
 
1793 val SCE_PL_HERE_QX=25
 
1794 val SCE_PL_STRING_Q=26
 
1795 val SCE_PL_STRING_QQ=27
 
1796 val SCE_PL_STRING_QX=28
 
1797 val SCE_PL_STRING_QR=29
 
1798 val SCE_PL_STRING_QW=30
 
1799 # Lexical states for SCLEX_VB, SCLEX_VBSCRIPT
 
1800 lex VB=SCLEX_VB SCE_B_
 
1801 lex VBScript=SCLEX_VBSCRIPT SCE_B_
 
1807 val SCE_B_PREPROCESSOR=5
 
1808 val SCE_B_OPERATOR=6
 
1809 val SCE_B_IDENTIFIER=7
 
1811 # Lexical states for SCLEX_PROPERTIES
 
1812 lex Properties=SCLEX_PROPERTIES SCE_PROPS_
 
1813 val SCE_PROPS_DEFAULT=0
 
1814 val SCE_PROPS_COMMENT=1
 
1815 val SCE_PROPS_SECTION=2
 
1816 val SCE_PROPS_ASSIGNMENT=3
 
1817 val SCE_PROPS_DEFVAL=4
 
1818 # Lexical states for SCLEX_LATEX
 
1819 lex LaTeX=SCLEX_LATEX SCE_L_
 
1825 # Lexical states for SCLEX_LUA
 
1826 lex Lua=SCLEX_LUA SCE_LUA_
 
1827 val SCE_LUA_DEFAULT=0
 
1828 val SCE_LUA_COMMENT=1
 
1829 val SCE_LUA_COMMENTLINE=2
 
1830 val SCE_LUA_COMMENTDOC=3
 
1831 val SCE_LUA_NUMBER=4
 
1833 val SCE_LUA_STRING=6
 
1834 val SCE_LUA_CHARACTER=7
 
1835 val SCE_LUA_LITERALSTRING=8
 
1836 val SCE_LUA_PREPROCESSOR=9
 
1837 val SCE_LUA_OPERATOR=10
 
1838 val SCE_LUA_IDENTIFIER=11
 
1839 val SCE_LUA_STRINGEOL=12
 
1840 val SCE_LUA_WORD2=13
 
1841 val SCE_LUA_WORD3=14
 
1842 val SCE_LUA_WORD4=15
 
1843 val SCE_LUA_WORD5=16
 
1844 val SCE_LUA_WORD6=17
 
1845 val SCE_LUA_WORD7=18
 
1846 val SCE_LUA_WORD8=19
 
1847 # Lexical states for SCLEX_ERRORLIST
 
1848 lex ErrorList=SCLEX_ERRORLIST SCE_ERR_
 
1849 val SCE_ERR_DEFAULT=0
 
1850 val SCE_ERR_PYTHON=1
 
1854 val SCE_ERR_BORLAND=5
 
1859 val SCE_ERR_DIFF_CHANGED=10
 
1860 val SCE_ERR_DIFF_ADDITION=11
 
1861 val SCE_ERR_DIFF_DELETION=12
 
1862 val SCE_ERR_DIFF_MESSAGE=13
 
1866 # Lexical states for SCLEX_BATCH
 
1867 lex Batch=SCLEX_BATCH SCE_BAT_
 
1868 val SCE_BAT_DEFAULT=0
 
1869 val SCE_BAT_COMMENT=1
 
1873 val SCE_BAT_COMMAND=5
 
1874 val SCE_BAT_IDENTIFIER=6
 
1875 val SCE_BAT_OPERATOR=7
 
1876 # Lexical states for SCLEX_MAKEFILE
 
1877 lex MakeFile=SCLEX_MAKEFILE SCE_MAKE_
 
1878 val SCE_MAKE_DEFAULT=0
 
1879 val SCE_MAKE_COMMENT=1
 
1880 val SCE_MAKE_PREPROCESSOR=2
 
1881 val SCE_MAKE_IDENTIFIER=3
 
1882 val SCE_MAKE_OPERATOR=4
 
1883 val SCE_MAKE_TARGET=5
 
1884 val SCE_MAKE_IDEOL=9
 
1885 # Lexical states for SCLEX_DIFF
 
1886 lex Diff=SCLEX_DIFF SCE_DIFF_
 
1887 val SCE_DIFF_DEFAULT=0
 
1888 val SCE_DIFF_COMMENT=1
 
1889 val SCE_DIFF_COMMAND=2
 
1890 val SCE_DIFF_HEADER=3
 
1891 val SCE_DIFF_POSITION=4
 
1892 val SCE_DIFF_DELETED=5
 
1893 val SCE_DIFF_ADDED=6
 
1894 # Lexical states for SCLEX_CONF (Apache Configuration Files Lexer)
 
1895 lex Conf=SCLEX_CONF SCE_CONF_
 
1896 val SCE_CONF_DEFAULT=0
 
1897 val SCE_CONF_COMMENT=1
 
1898 val SCE_CONF_NUMBER=2
 
1899 val SCE_CONF_IDENTIFIER=3
 
1900 val SCE_CONF_EXTENSION=4
 
1901 val SCE_CONF_PARAMETER=5
 
1902 val SCE_CONF_STRING=6
 
1903 val SCE_CONF_OPERATOR=7
 
1905 val SCE_CONF_DIRECTIVE=9
 
1906 # Lexical states for SCLEX_AVE, Avenue
 
1907 lex Avenue=SCLEX_AVE SCE_AVE_
 
1908 val SCE_AVE_DEFAULT=0
 
1909 val SCE_AVE_COMMENT=1
 
1910 val SCE_AVE_NUMBER=2
 
1912 val SCE_AVE_STRING=6
 
1914 val SCE_AVE_STRINGEOL=8
 
1915 val SCE_AVE_IDENTIFIER=9
 
1916 val SCE_AVE_OPERATOR=10
 
1917 val SCE_AVE_WORD1=11
 
1918 val SCE_AVE_WORD2=12
 
1919 val SCE_AVE_WORD3=13
 
1920 val SCE_AVE_WORD4=14
 
1921 val SCE_AVE_WORD5=15
 
1922 val SCE_AVE_WORD6=16
 
1923 # Lexical states for SCLEX_ADA
 
1924 lex Ada=SCLEX_ADA SCE_ADA_
 
1925 val SCE_ADA_DEFAULT=0
 
1927 val SCE_ADA_IDENTIFIER=2
 
1928 val SCE_ADA_NUMBER=3
 
1929 val SCE_ADA_DELIMITER=4
 
1930 val SCE_ADA_CHARACTER=5
 
1931 val SCE_ADA_CHARACTEREOL=6
 
1932 val SCE_ADA_STRING=7
 
1933 val SCE_ADA_STRINGEOL=8
 
1935 val SCE_ADA_COMMENTLINE=10
 
1936 val SCE_ADA_ILLEGAL=11
 
1937 # Lexical states for SCLEX_BAAN
 
1938 lex Baan=SCLEX_BAAN SCE_BAAN_
 
1939 val SCE_BAAN_DEFAULT=0
 
1940 val SCE_BAAN_COMMENT=1
 
1941 val SCE_BAAN_COMMENTDOC=2
 
1942 val SCE_BAAN_NUMBER=3
 
1944 val SCE_BAAN_STRING=5
 
1945 val SCE_BAAN_PREPROCESSOR=6
 
1946 val SCE_BAAN_OPERATOR=7
 
1947 val SCE_BAAN_IDENTIFIER=8
 
1948 val SCE_BAAN_STRINGEOL=9
 
1949 val SCE_BAAN_WORD2=10
 
1950 # Lexical states for SCLEX_LISP
 
1951 lex Lisp=SCLEX_LISP SCE_LISP_
 
1952 val SCE_LISP_DEFAULT=0
 
1953 val SCE_LISP_COMMENT=1
 
1954 val SCE_LISP_NUMBER=2
 
1955 val SCE_LISP_KEYWORD=3
 
1956 val SCE_LISP_STRING=6
 
1957 val SCE_LISP_STRINGEOL=8
 
1958 val SCE_LISP_IDENTIFIER=9
 
1959 val SCE_LISP_OPERATOR=10
 
1960 # Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW
 
1961 lex Eiffel=SCLEX_EIFFEL SCE_EIFFEL_
 
1962 lex EiffelKW=SCLEX_EIFFELKW SCE_EIFFEL_
 
1963 val SCE_EIFFEL_DEFAULT=0
 
1964 val SCE_EIFFEL_COMMENTLINE=1
 
1965 val SCE_EIFFEL_NUMBER=2
 
1966 val SCE_EIFFEL_WORD=3
 
1967 val SCE_EIFFEL_STRING=4
 
1968 val SCE_EIFFEL_CHARACTER=5
 
1969 val SCE_EIFFEL_OPERATOR=6
 
1970 val SCE_EIFFEL_IDENTIFIER=7
 
1971 val SCE_EIFFEL_STRINGEOL=8
 
1972 # Lexical states for SCLEX_NNCRONTAB (nnCron crontab Lexer)
 
1973 lex NNCronTab=SCLEX_NNCRONTAB SCE_NNCRONTAB_
 
1974 val SCE_NNCRONTAB_DEFAULT=0
 
1975 val SCE_NNCRONTAB_COMMENT=1
 
1976 val SCE_NNCRONTAB_TASK=2
 
1977 val SCE_NNCRONTAB_SECTION=3
 
1978 val SCE_NNCRONTAB_KEYWORD=4
 
1979 val SCE_NNCRONTAB_MODIFIER=5
 
1980 val SCE_NNCRONTAB_ASTERISK=6
 
1981 val SCE_NNCRONTAB_NUMBER=7
 
1982 val SCE_NNCRONTAB_STRING=8
 
1983 val SCE_NNCRONTAB_ENVIRONMENT=9
 
1984 val SCE_NNCRONTAB_IDENTIFIER=10
 
1985 # Lexical states for SCLEX_MATLAB
 
1986 lex MatLab=SCLEX_MATLAB SCE_MATLAB_
 
1987 val SCE_MATLAB_DEFAULT=0
 
1988 val SCE_MATLAB_COMMENT=1
 
1989 val SCE_MATLAB_COMMAND=2
 
1990 val SCE_MATLAB_NUMBER=3
 
1991 val SCE_MATLAB_KEYWORD=4
 
1992 val SCE_MATLAB_STRING=5
 
1993 val SCE_MATLAB_OPERATOR=6
 
1994 val SCE_MATLAB_IDENTIFIER=7
 
1995 # Lexical states for SCLEX_SCRIPTOL
 
1996 lex Sol=SCLEX_SCRIPTOL SCE_SCRIPTOL_
 
1997 val SCE_SCRIPTOL_DEFAULT=0
 
1998 val SCE_SCRIPTOL_COMMENT=1
 
1999 val SCE_SCRIPTOL_COMMENTLINE=2
 
2000 val SCE_SCRIPTOL_COMMENTDOC=3
 
2001 val SCE_SCRIPTOL_NUMBER=4
 
2002 val SCE_SCRIPTOL_WORD=5
 
2003 val SCE_SCRIPTOL_STRING=6
 
2004 val SCE_SCRIPTOL_CHARACTER=7
 
2005 val SCE_SCRIPTOL_UUID=8
 
2006 val SCE_SCRIPTOL_PREPROCESSOR=9
 
2007 val SCE_SCRIPTOL_OPERATOR=10
 
2008 val SCE_SCRIPTOL_IDENTIFIER=11
 
2009 val SCE_SCRIPTOL_STRINGEOL=12
 
2010 val SCE_SCRIPTOL_VERBATIM=13
 
2011 val SCE_SCRIPTOL_REGEX=14
 
2012 val SCE_SCRIPTOL_COMMENTLINEDOC=15
 
2013 val SCE_SCRIPTOL_WORD2=16
 
2014 val SCE_SCRIPTOL_COMMENTDOCKEYWORD=17
 
2015 val SCE_SCRIPTOL_COMMENTDOCKEYWORDERROR=18
 
2016 val SCE_SCRIPTOL_COMMENTBASIC=19
 
2017 # Lexical states for SCLEX_ASM
 
2018 lex Asm=SCLEX_ASM SCE_ASM_
 
2019 val SCE_ASM_DEFAULT=0
 
2020 val SCE_ASM_COMMENT=1
 
2021 val SCE_ASM_NUMBER=2
 
2022 val SCE_ASM_STRING=3
 
2023 val SCE_ASM_OPERATOR=4
 
2024 val SCE_ASM_IDENTIFIER=5
 
2025 val SCE_ASM_CPUINSTRUCTION=6
 
2026 val SCE_ASM_MATHINSTRUCTION=7
 
2027 val SCE_ASM_REGISTER=8
 
2028 val SCE_ASM_DIRECTIVE=9
 
2029 val SCE_ASM_DIRECTIVEOPERAND=10
 
2030 # Lexical states for SCLEX_FORTRAN
 
2031 lex Fortran=SCLEX_FORTRAN SCE_F_
 
2032 lex F77=SCLEX_F77 SCE_F_
 
2038 val SCE_F_STRINGEOL=5
 
2039 val SCE_F_OPERATOR=6
 
2040 val SCE_F_IDENTIFIER=7
 
2044 val SCE_F_PREPROCESSOR=11
 
2045 val SCE_F_OPERATOR2=12
 
2047 val SCE_F_CONTINUATION=14
 
2048 # Lexical states for SCLEX_CSS
 
2049 lex CSS=SCLEX_CSS SCE_CSS_
 
2050 val SCE_CSS_DEFAULT=0
 
2053 val SCE_CSS_PSEUDOCLASS=3
 
2054 val SCE_CSS_UNKNOWN_PSEUDOCLASS=4
 
2055 val SCE_CSS_OPERATOR=5
 
2056 val SCE_CSS_IDENTIFIER=6
 
2057 val SCE_CSS_UNKNOWN_IDENTIFIER=7
 
2059 val SCE_CSS_COMMENT=9
 
2061 val SCE_CSS_IMPORTANT=11
 
2062 val SCE_CSS_DIRECTIVE=12
 
2063 val SCE_CSS_DOUBLESTRING=13
 
2064 val SCE_CSS_SINGLESTRING=14
 
2065 # Lexical states for SCLEX_POV
 
2066 lex POV=SCLEX_POV SCE_POV_
 
2067 val SCE_POV_DEFAULT=0
 
2068 val SCE_POV_COMMENT=1
 
2069 val SCE_POV_COMMENTLINE=2
 
2070 val SCE_POV_NUMBER=3
 
2071 val SCE_POV_OPERATOR=4
 
2072 val SCE_POV_IDENTIFIER=5
 
2073 val SCE_POV_STRING=6
 
2074 val SCE_POV_STRINGEOL=7
 
2075 val SCE_POV_DIRECTIVE=8
 
2076 val SCE_POV_BADDIRECTIVE=9
 
2077 val SCE_POV_WORD2=10
 
2078 val SCE_POV_WORD3=11
 
2079 val SCE_POV_WORD4=12
 
2080 val SCE_POV_WORD5=13
 
2081 val SCE_POV_WORD6=14
 
2082 val SCE_POV_WORD7=15
 
2083 val SCE_POV_WORD8=16
 
2084 # Lexical states for SCLEX_LOUT
 
2085 lex LOUT=SCLEX_LOUT SCE_LOUT_
 
2086 val SCE_LOUT_DEFAULT=0
 
2087 val SCE_LOUT_COMMENT=1
 
2088 val SCE_LOUT_NUMBER=2
 
2090 val SCE_LOUT_WORD2=4
 
2091 val SCE_LOUT_WORD3=5
 
2092 val SCE_LOUT_WORD4=6
 
2093 val SCE_LOUT_STRING=7
 
2094 val SCE_LOUT_OPERATOR=8
 
2095 val SCE_LOUT_IDENTIFIER=9
 
2096 val SCE_LOUT_STRINGEOL=10
 
2097 # Lexical states for SCLEX_ESCRIPT
 
2098 lex ESCRIPT=SCLEX_ESCRIPT SCE_ESCRIPT_
 
2099 val SCE_ESCRIPT_DEFAULT=0
 
2100 val SCE_ESCRIPT_COMMENT=1
 
2101 val SCE_ESCRIPT_COMMENTLINE=2
 
2102 val SCE_ESCRIPT_COMMENTDOC=3
 
2103 val SCE_ESCRIPT_NUMBER=4
 
2104 val SCE_ESCRIPT_WORD=5
 
2105 val SCE_ESCRIPT_STRING=6
 
2106 val SCE_ESCRIPT_OPERATOR=7
 
2107 val SCE_ESCRIPT_IDENTIFIER=8
 
2108 val SCE_ESCRIPT_BRACE=9
 
2109 val SCE_ESCRIPT_WORD2=10
 
2110 val SCE_ESCRIPT_WORD3=11
 
2111 # Lexical states for SCLEX_PS
 
2112 lex PS=SCLEX_PS SCE_PS_
 
2113 val SCE_PS_DEFAULT=0
 
2114 val SCE_PS_COMMENT=1
 
2115 val SCE_PS_DSC_COMMENT=2
 
2116 val SCE_PS_DSC_VALUE=3
 
2119 val SCE_PS_KEYWORD=6
 
2120 val SCE_PS_LITERAL=7
 
2121 val SCE_PS_IMMEVAL=8
 
2122 val SCE_PS_PAREN_ARRAY=9
 
2123 val SCE_PS_PAREN_DICT=10
 
2124 val SCE_PS_PAREN_PROC=11
 
2126 val SCE_PS_HEXSTRING=13
 
2127 val SCE_PS_BASE85STRING=14
 
2128 val SCE_PS_BADSTRINGCHAR=15
 
2129 # Lexical states for SCLEX_NSIS
 
2130 lex NSIS=SCLEX_NSIS SCE_NSIS_
 
2131 val SCE_NSIS_DEFAULT=0
 
2132 val SCE_NSIS_COMMENT=1
 
2133 val SCE_NSIS_STRINGDQ=2
 
2134 val SCE_NSIS_STRINGLQ=3
 
2135 val SCE_NSIS_STRINGRQ=4
 
2136 val SCE_NSIS_FUNCTION=5
 
2137 val SCE_NSIS_VARIABLE=6
 
2138 val SCE_NSIS_LABEL=7
 
2139 val SCE_NSIS_USERDEFINED=8
 
2140 val SCE_NSIS_SECTIONDEF=9
 
2141 val SCE_NSIS_SUBSECTIONDEF=10
 
2142 val SCE_NSIS_IFDEFINEDEF=11
 
2143 val SCE_NSIS_MACRODEF=12
 
2144 val SCE_NSIS_STRINGVAR=13
 
2145 # Lexical states for SCLEX_MMIXAL
 
2146 lex MMIXAL=SCLEX_MMIXAL SCE_MMIXAL_
 
2147 val SCE_MMIXAL_LEADWS=0
 
2148 val SCE_MMIXAL_COMMENT=1
 
2149 val SCE_MMIXAL_LABEL=2
 
2150 val SCE_MMIXAL_OPCODE=3
 
2151 val SCE_MMIXAL_OPCODE_PRE=4
 
2152 val SCE_MMIXAL_OPCODE_VALID=5
 
2153 val SCE_MMIXAL_OPCODE_UNKNOWN=6
 
2154 val SCE_MMIXAL_OPCODE_POST=7
 
2155 val SCE_MMIXAL_OPERANDS=8
 
2156 val SCE_MMIXAL_NUMBER=9
 
2157 val SCE_MMIXAL_REF=10
 
2158 val SCE_MMIXAL_CHAR=11
 
2159 val SCE_MMIXAL_STRING=12
 
2160 val SCE_MMIXAL_REGISTER=13
 
2161 val SCE_MMIXAL_HEX=14
 
2162 val SCE_MMIXAL_OPERATOR=15
 
2163 val SCE_MMIXAL_SYMBOL=16
 
2164 val SCE_MMIXAL_INCLUDE=17
 
2168 evt void StyleNeeded=2000(int position)
 
2169 evt void CharAdded=2001(int ch)
 
2170 evt void SavePointReached=2002(void)
 
2171 evt void SavePointLeft=2003(void)
 
2172 evt void ModifyAttemptRO=2004(void)
 
2173 # GTK+ Specific to work around focus and accelerator problems:
 
2174 evt void Key=2005(int ch, int modifiers)
 
2175 evt void DoubleClick=2006(void)
 
2176 evt void UpdateUI=2007(void)
 
2177 evt void Modified=2008(int position, int modificationType, string text, int length, int linesAdded, int line, int foldLevelNow, int foldLevelPrev)
 
2178 evt void MacroRecord=2009(int message, int wParam, int lParam)
 
2179 evt void MarginClick=2010(int modifiers, int position, int margin)
 
2180 evt void NeedShown=2011(int position, int length)
 
2181 evt void Painted=2013(void)
 
2182 evt void UserListSelection=2014(int listType, string text)
 
2183 evt void URIDropped=2015(string text)
 
2184 evt void DwellStart=2016(int position)
 
2185 evt void DwellEnd=2017(int position)
 
2186 evt void Zoom=2018(void)
 
2187 evt void HotSpotClick=2019(int modifiers, int position)
 
2188 evt void HotSpotDoubleClick=2020(int modifiers, int position)
 
2189 evt void CallTipClick=2021(int position)
 
2193 # CARET_POLICY changed in 1.47
 
2194 fun void SetCaretPolicy=2369(int caretPolicy, int caretSlop)
 
2195 val CARET_CENTER=0x02
 
2196 val CARET_XEVEN=0x08
 
2197 val CARET_XJUMPS=0x10
 
2199 # The old name for SCN_UPDATEUI
 
2200 val SCN_CHECKBRACE=2007
 
2201 evt void PosChanged=2012(int position)