diff options
author | Neil <nyamatongwe@gmail.com> | 2025-06-01 08:38:14 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-06-01 08:38:14 +1000 |
commit | a180e477ec3efd9d35a4cf32b63ab7354a03371f (patch) | |
tree | 17ed696a646a5acf4305a0795ae56690a04e08b5 /src/ContractionState.h | |
parent | 922a70ac051ac097632bc26e56c23fffb65aa43d (diff) | |
download | scintilla-mirror-a180e477ec3efd9d35a4cf32b63ab7354a03371f.tar.gz |
Add SCI_SCROLLVERTICAL API.
Diffstat (limited to 'src/ContractionState.h')
-rw-r--r-- | src/ContractionState.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ContractionState.h b/src/ContractionState.h index ae753f8d1..a144364d0 100644 --- a/src/ContractionState.h +++ b/src/ContractionState.h @@ -21,6 +21,7 @@ public: virtual Sci::Line LinesInDoc() const noexcept=0; virtual Sci::Line LinesDisplayed() const noexcept=0; virtual Sci::Line DisplayFromDoc(Sci::Line lineDoc) const noexcept=0; + virtual Sci::Line DisplayFromDocSub(Sci::Line lineDoc, Sci::Line lineSub) const noexcept=0; virtual Sci::Line DisplayLastFromDoc(Sci::Line lineDoc) const noexcept=0; virtual Sci::Line DocFromDisplay(Sci::Line lineDisplay) const noexcept=0; |