aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/ScintillaCall.h
diff options
context:
space:
mode:
authorFerdinand Oeinck <unknown>2022-10-04 09:35:06 +1100
committerFerdinand Oeinck <unknown>2022-10-04 09:35:06 +1100
commitf4d5c00424eff7c84b4152b4df4de5c0ba4b12bc (patch)
treee239ae33e6bfb8844a150bb1c25b1b643741211d /include/ScintillaCall.h
parent232fad28e7003fd38e2468258bcfacc61381ef7a (diff)
downloadscintilla-mirror-f4d5c00424eff7c84b4152b4df4de5c0ba4b12bc.tar.gz
Feature [feature-requests:#1453] Added SCI_STYLESETINVISIBLEREPRESENTATION to
make it easier to edit around invisible text. This also allows representing long lexemes with a single character to provide a summarized view.
Diffstat (limited to 'include/ScintillaCall.h')
-rw-r--r--include/ScintillaCall.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ScintillaCall.h b/include/ScintillaCall.h
index 0e79e37db..4b8e3c732 100644
--- a/include/ScintillaCall.h
+++ b/include/ScintillaCall.h
@@ -200,6 +200,9 @@ public:
void StyleSetHotSpot(int style, bool hotspot);
void StyleSetCheckMonospaced(int style, bool checkMonospaced);
bool StyleGetCheckMonospaced(int style);
+ void StyleSetInvisibleRepresentation(int style, const char *representation);
+ int StyleGetInvisibleRepresentation(int style, char *representation);
+ std::string StyleGetInvisibleRepresentation(int style);
void SetElementColour(Scintilla::Element element, ColourAlpha colourElement);
ColourAlpha ElementColour(Scintilla::Element element);
void ResetElementColour(Scintilla::Element element);