diff options
| author | Zufu Liu <unknown> | 2019-03-31 07:37:35 +1100 |
|---|---|---|
| committer | Zufu Liu <unknown> | 2019-03-31 07:37:35 +1100 |
| commit | db60a2ad9b3f20522e0292fdeccb7e40116bd8dc (patch) | |
| tree | a91ab3225eb1af52787e72e7ddb7b4ee1d0a0d5c /include | |
| parent | 6eb45911a83ed5dd0039c61933c574202a754238 (diff) | |
| download | scintilla-mirror-db60a2ad9b3f20522e0292fdeccb7e40116bd8dc.tar.gz | |
Feature [feature-requests:#1272]. Add FoldDisplayTextGetStyle to match
FoldDisplayTextSetStyle.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 5 |
2 files changed, 5 insertions, 1 deletions
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 |
