From db60a2ad9b3f20522e0292fdeccb7e40116bd8dc Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Sun, 31 Mar 2019 07:37:35 +1100 Subject: Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to match FoldDisplayTextSetStyle. --- doc/ScintillaDoc.html | 4 +++- include/Scintilla.h | 1 + include/Scintilla.iface | 5 ++++- src/Editor.cxx | 3 +++ test/simpleTests.py | 5 +++++ 5 files changed, 16 insertions(+), 2 deletions(-) diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e91f8ec3b..b9f15e267 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -6012,6 +6012,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ SCI_TOGGLEFOLD(int line)
SCI_TOGGLEFOLDSHOWTEXT(int line, const char *text)
SCI_FOLDDISPLAYTEXTSETSTYLE(int style)
+ SCI_FOLDDISPLAYTEXTGETSTYLE → int
SCI_FOLDLINE(int line, int action)
SCI_FOLDCHILDREN(int line, int action)
SCI_FOLDALL(int action)
@@ -6175,7 +6176,8 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ STYLE_FOLDDISPLAYTEXT style.

SCI_FOLDDISPLAYTEXTSETSTYLE(int style)
- This message changes the appearance of fold text tags.

+ SCI_FOLDDISPLAYTEXTGETSTYLE → int
+ These message changes the appearance of fold text tags.

diff --git a/include/Scintilla.h b/include/Scintilla.h index c8ef2fa37..6187bc612 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -492,6 +492,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_FOLDDISPLAYTEXT_STANDARD 1 #define SC_FOLDDISPLAYTEXT_BOXED 2 #define SCI_FOLDDISPLAYTEXTSETSTYLE 2701 +#define SCI_FOLDDISPLAYTEXTGETSTYLE 2707 #define SC_FOLDACTION_CONTRACT 0 #define SC_FOLDACTION_EXPAND 1 #define SC_FOLDACTION_TOGGLE 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index cf2d01abc..2b69adef3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1233,9 +1233,12 @@ val SC_FOLDDISPLAYTEXT_HIDDEN=0 val SC_FOLDDISPLAYTEXT_STANDARD=1 val SC_FOLDDISPLAYTEXT_BOXED=2 -# Set the style of fold display text +# Set the style of fold display text. set void FoldDisplayTextSetStyle=2701(int style,) +# Get the style of fold display text. +get int FoldDisplayTextGetStyle=2707(,) + enu FoldAction=SC_FOLDACTION_ val SC_FOLDACTION_CONTRACT=0 val SC_FOLDACTION_EXPAND=1 diff --git a/src/Editor.cxx b/src/Editor.cxx index 4bae9b44f..f269326a2 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7201,6 +7201,9 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { Redraw(); break; + case SCI_FOLDDISPLAYTEXTGETSTYLE: + return foldDisplayTextStyle; + case SCI_TOGGLEFOLD: FoldLine(static_cast(wParam), SC_FOLDACTION_TOGGLE); break; diff --git a/test/simpleTests.py b/test/simpleTests.py index 3af25247c..b5260c8a8 100644 --- a/test/simpleTests.py +++ b/test/simpleTests.py @@ -1634,6 +1634,11 @@ class TestStyleAttributes(unittest.TestCase): self.ed.StyleSetHotSpot(self.ed.STYLE_DEFAULT, 1) self.assertEquals(self.ed.StyleGetHotSpot(self.ed.STYLE_DEFAULT), 1) + def testFoldDisplayTextStyle(self): + self.assertEquals(self.ed.FoldDisplayTextGetStyle(), 0) + self.ed.FoldDisplayTextSetStyle(self.ed.SC_FOLDDISPLAYTEXT_BOXED) + self.assertEquals(self.ed.FoldDisplayTextGetStyle(), self.ed.SC_FOLDDISPLAYTEXT_BOXED) + class TestIndices(unittest.TestCase): def setUp(self): self.xite = Xite.xiteFrame -- cgit v1.2.3