diff options
| author | Neil <nyamatongwe@gmail.com> | 2016-09-17 11:47:01 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2016-09-17 11:47:01 +1000 | 
| commit | 7758d6ee3d9c2bc4a911ba52bc8a0dbd7a13fecc (patch) | |
| tree | 376a518cc1ab7ea8879ce2903a87e5ea673b077c /include | |
| parent | 7cb08ba9e826c0464a90966b4df64b022a0300a4 (diff) | |
| download | scintilla-mirror-7758d6ee3d9c2bc4a911ba52bc8a0dbd7a13fecc.tar.gz | |
Provide comments for each individual feature instead of group comments as
this helps downstream use.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.iface | 49 | 
1 files changed, 41 insertions, 8 deletions
| diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 0ecae3a28..c43250c92 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1434,8 +1434,9 @@ fun void LinesJoin=2288(,)  # where possible.  fun void LinesSplit=2289(int pixelWidth,) -# Set the colours used as a chequerboard pattern in the fold margin +# Set one of the colours used as a chequerboard pattern in the fold margin  fun void SetFoldMarginColour=2290(bool useSetting, colour back) +# Set the other colour used as a chequerboard pattern in the fold margin  fun void SetFoldMarginHiColour=2291(bool useSetting, colour fore)  ## New messages go here @@ -1599,17 +1600,28 @@ fun void LineEndDisplay=2347(,)  # caret position.  fun void LineEndDisplayExtend=2348(,) -# These are like their namesakes Home(Extend)?, LineEnd(Extend)?, VCHome(Extend)? -# except they behave differently when word-wrap is enabled: -# They go first to the start / end of the display line, like (Home|LineEnd)Display -# The difference is that, the cursor is already at the point, it goes on to the start -# or end of the document line, as appropriate for (Home|LineEnd|VCHome)(Extend)?. - +# Like Home but when word-wrap is enabled goes first to start of display line +# HomeDisplay, then to start of document line Home.  fun void HomeWrap=2349(,) + +# Like HomeExtend but when word-wrap is enabled extends first to start of display line +# HomeDisplayExtend, then to start of document line HomeExtend.  fun void HomeWrapExtend=2450(,) + +# Like LineEnd but when word-wrap is enabled goes first to end of display line +# LineEndDisplay, then to start of document line LineEnd.  fun void LineEndWrap=2451(,) + +# Like LineEndExtend but when word-wrap is enabled extends first to end of display line +# LineEndDisplayExtend, then to start of document line LineEndExtend.  fun void LineEndWrapExtend=2452(,) + +# Like VCHome but when word-wrap is enabled goes first to start of display line +# VCHomeDisplay, then behaves like VCHome.  fun void VCHomeWrap=2453(,) + +# Like VCHomeExtend but when word-wrap is enabled extends first to start of display line +# VCHomeDisplayExtend, then behaves like VCHomeExtend.  fun void VCHomeWrapExtend=2454(,)  # Copy the line containing the caret. @@ -1848,10 +1860,13 @@ set void SetHotspotSingleLine=2421(bool singleLine,)  # Get the HotspotSingleLine property  get bool GetHotspotSingleLine=2497(,) -# Move caret between paragraphs (delimited by empty lines). +# Move caret down one paragraph (delimited by empty lines).  fun void ParaDown=2413(,) +# Extend selection down one paragraph (delimited by empty lines).  fun void ParaDownExtend=2414(,) +# Move caret up one paragraph (delimited by empty lines).  fun void ParaUp=2415(,) +# Extend selection up one paragraph (delimited by empty lines).  fun void ParaUpExtend=2416(,)  # Given a valid document position, return the previous position taking code @@ -2297,13 +2312,21 @@ set void SetMainSelection=2574(int selection,)  # Which selection is the main selection  get int GetMainSelection=2575(,) +# Set the caret position of the nth selection.  set void SetSelectionNCaret=2576(int selection, position pos) +# Return the caret position of the nth selection.  get position GetSelectionNCaret=2577(int selection,) +# Set the anchor position of the nth selection.  set void SetSelectionNAnchor=2578(int selection, position posAnchor) +# Return the anchor position of the nth selection.  get position GetSelectionNAnchor=2579(int selection,) +# Set the virtual space of the caret of the nth selection.  set void SetSelectionNCaretVirtualSpace=2580(int selection, int space) +# Return the virtual space of the caret of the nth selection.  get int GetSelectionNCaretVirtualSpace=2581(int selection,) +# Set the virtual space of the anchor of the nth selection.  set void SetSelectionNAnchorVirtualSpace=2582(int selection, int space) +# Return the virtual space of the anchor of the nth selection.  get int GetSelectionNAnchorVirtualSpace=2583(int selection,)  # Sets the position that starts the selection - this becomes the anchor. @@ -2318,13 +2341,21 @@ set void SetSelectionNEnd=2586(int selection, position pos)  # Returns the position at the end of the selection.  get position GetSelectionNEnd=2587(int selection,) +# Set the caret position of the rectangular selection.  set void SetRectangularSelectionCaret=2588(position pos,) +# Return the caret position of the rectangular selection.  get position GetRectangularSelectionCaret=2589(,) +# Set the anchor position of the rectangular selection.  set void SetRectangularSelectionAnchor=2590(position posAnchor,) +# Return the anchor position of the rectangular selection.  get position GetRectangularSelectionAnchor=2591(,) +# Set the virtual space of the caret of the rectangular selection.  set void SetRectangularSelectionCaretVirtualSpace=2592(int space,) +# Return the virtual space of the caret of the rectangular selection.  get int GetRectangularSelectionCaretVirtualSpace=2593(,) +# Set the virtual space of the anchor of the rectangular selection.  set void SetRectangularSelectionAnchorVirtualSpace=2594(int space,) +# Return the virtual space of the anchor of the rectangular selection.  get int GetRectangularSelectionAnchorVirtualSpace=2595(,)  enu VirtualSpace=SCVS_ @@ -2333,7 +2364,9 @@ val SCVS_RECTANGULARSELECTION=1  val SCVS_USERACCESSIBLE=2  val SCVS_NOWRAPLINESTART=4 +# Set options for virtual space behaviour.  set void SetVirtualSpaceOptions=2596(int virtualSpaceOptions,) +# Return options for virtual space behaviour.  get int GetVirtualSpaceOptions=2597(,)  # On GTK+, allow selecting the modifier key to use for mouse-based | 
