aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Indicator.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-04-23 02:26:06 +0000
committernyamatongwe <unknown>2007-04-23 02:26:06 +0000
commitbde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8 (patch)
tree7799078040df57b7f5ce1072d768e476a7187041 /src/Indicator.h
parent7baad7314df72e0c2f548482df1c288a2587d3cd (diff)
downloadscintilla-mirror-bde8aef4ff5e6bd93c3b2bbd8fd7de80bccbbdb8.tar.gz
Added setting to allow each indicator to be drawn either under or
over text.
Diffstat (limited to 'src/Indicator.h')
-rw-r--r--src/Indicator.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Indicator.h b/src/Indicator.h
index 716db1051..cebc22d80 100644
--- a/src/Indicator.h
+++ b/src/Indicator.h
@@ -13,8 +13,9 @@
class Indicator {
public:
int style;
+ bool under;
ColourPair fore;
- Indicator() : style(INDIC_PLAIN), fore(ColourDesired(0,0,0)) {
+ Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)) {
}
void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
};