diff options
author | Neil <nyamatongwe@gmail.com> | 2022-07-22 20:32:53 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-07-22 20:32:53 +1000 |
commit | 6d53881b6c21e7824ba3c83ac175bb233f8ff2a8 (patch) | |
tree | d526fa4e7f5539d5abdeafe7a9af7820778af36c /include/Scintilla.iface | |
parent | e12f8f179666ed70d03c99039565ba63c45f7c7a (diff) | |
download | scintilla-mirror-6d53881b6c21e7824ba3c83ac175bb233f8ff2a8.tar.gz |
Move EditView::hideSelection to (inverted) SelectionAppearance::visible so that
it can differ between screen and print.
Add GetSelectionHidden to allow testing of HideSelection.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r-- | include/Scintilla.iface | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index be3d78692..bfa7f5e93 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1271,6 +1271,9 @@ fun position GetTextRangeFull=2039(, textrangefull tr) # Draw the selection either highlighted or in normal (non-highlighted) style. fun void HideSelection=2163(bool hide,) +#Is the selection visible or hidden? +get bool GetSelectionHidden=2088(,) + # Retrieve the x value of the point in the window where a position is displayed. fun int PointXFromPosition=2164(, position pos) |