diff options
author | Zufu Liu <unknown> | 2022-07-24 10:00:06 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2022-07-24 10:00:06 +1000 |
commit | 2a922d679ec36743287191fbd9f67a6fef9f7f1b (patch) | |
tree | b5743e169339ff691913b9fd0a5d59455db73498 /src/ContractionState.h | |
parent | 46e54d394dfd76a0d3055850ce8e6f394dfe2ba7 (diff) | |
download | scintilla-mirror-2a922d679ec36743287191fbd9f67a6fef9f7f1b.tar.gz |
Bug [#2340] Simplify expand all folds. Speed up expand line a little.
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 55c390c55..ae753f8d1 100644 --- a/src/ContractionState.h +++ b/src/ContractionState.h @@ -36,6 +36,7 @@ public: virtual bool GetExpanded(Sci::Line lineDoc) const noexcept=0; virtual bool SetExpanded(Sci::Line lineDoc, bool isExpanded)=0; + virtual bool ExpandAll()=0; virtual Sci::Line ContractedNext(Sci::Line lineDocStart) const noexcept =0; virtual int GetHeight(Sci::Line lineDoc) const noexcept=0; |