diff options
Diffstat (limited to 'src/Selection.h')
-rw-r--r-- | src/Selection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Selection.h b/src/Selection.h index 28db77445..c0d785870 100644 --- a/src/Selection.h +++ b/src/Selection.h @@ -163,6 +163,7 @@ public: Sci::Position MainCaret() const noexcept; Sci::Position MainAnchor() const noexcept; SelectionRange &Rectangular() noexcept; + SelectionRange RectangularCopy() const noexcept; SelectionSegment Limits() const noexcept; // This is for when you want to move the caret in response to a // user direction command - for rectangular selections, use the range @@ -202,6 +203,7 @@ public: Ranges RangesCopy() const { return ranges; } + void SetRanges(const Ranges &rangesToSet); }; } |