diff options
author | Tse Kit Yam <me@kytse.com> | 2016-11-29 14:14:21 +1100 |
---|---|---|
committer | Tse Kit Yam <me@kytse.com> | 2016-11-29 14:14:21 +1100 |
commit | 4ae76e455aec66826a284356d63cc2b5995c0b2f (patch) | |
tree | c0466475514dee0da647dfa800cb1ccfc4647f0e /include/Scintilla.h | |
parent | 6bed4e4aa02025e1bd0c294a44c9371fb6b176f1 (diff) | |
download | scintilla-mirror-4ae76e455aec66826a284356d63cc2b5995c0b2f.tar.gz |
Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 056b2e276..bfc1455c9 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -192,6 +192,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define STYLE_CONTROLCHAR 36 #define STYLE_INDENTGUIDE 37 #define STYLE_CALLTIP 38 +#define STYLE_FOLDDISPLAYTEXT 39 #define STYLE_LASTPREDEFINED 39 #define STYLE_MAX 255 #define SC_CHARSET_ANSI 0 @@ -485,6 +486,11 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCI_SETFOLDEXPANDED 2229 #define SCI_GETFOLDEXPANDED 2230 #define SCI_TOGGLEFOLD 2231 +#define SCI_TOGGLEFOLDSHOWTEXT 2700 +#define SC_FOLDDISPLAYTEXT_HIDDEN 0 +#define SC_FOLDDISPLAYTEXT_STANDARD 1 +#define SC_FOLDDISPLAYTEXT_BOXED 2 +#define SCI_FOLDDISPLAYTEXTSETSTYLE 2701 #define SC_FOLDACTION_CONTRACT 0 #define SC_FOLDACTION_EXPAND 1 #define SC_FOLDACTION_TOGGLE 2 |