aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2015-02-04 08:04:06 +1100
committerNeil <nyamatongwe@gmail.com>2015-02-04 08:04:06 +1100
commitca6e6726ea248cc86dad9a3eddf649abe98add60 (patch)
tree39dd457627c279bf35444c81c2ab69068dde1577 /include/Scintilla.iface
parent2a01e4a708c371b061a9669ea3204a295e835ada (diff)
downloadscintilla-mirror-ca6e6726ea248cc86dad9a3eddf649abe98add60.tar.gz
Implement hover style and colour for indicators.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index fe0b66454..b609c056f 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -633,6 +633,18 @@ set void IndicSetUnder=2510(int indic, bool under)
# Retrieve whether indicator drawn under or over text.
get bool IndicGetUnder=2511(int indic,)
+# Set a hover indicator to plain, squiggle or TT.
+set void IndicSetHoverStyle=2680(int indic, int style)
+
+# Retrieve the hover style of an indicator.
+get int IndicGetHoverStyle=2681(int indic,)
+
+# Set the foreground hover colour of an indicator.
+set void IndicSetHoverFore=2682(int indic, colour fore)
+
+# Retrieve the foreground hover colour of an indicator.
+get colour IndicGetHoverFore=2683(int indic,)
+
# Set the foreground colour of all whitespace and whether to use this setting.
fun void SetWhitespaceFore=2084(bool useSetting, colour fore)