scintilla: Update scintilla with changeset 3662:1d1c06df8a2f using gtk+3
[anjuta-extras.git] / plugins / scintilla / scintilla / Indicator.h
blobe787b592d713e0cb46d4744fd0a4cb0adcd3057a
1 // Scintilla source code edit control
2 /** @file Indicator.h
3 ** Defines the style of indicators which are text decorations such as underlining.
4 **/
5 // Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef INDICATOR_H
9 #define INDICATOR_H
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
15 /**
17 class Indicator {
18 public:
19 int style;
20 bool under;
21 ColourPair fore;
22 int fillAlpha;
23 int outlineAlpha;
24 Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)), fillAlpha(30), outlineAlpha(50) {
26 void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
29 #ifdef SCI_NAMESPACE
31 #endif
33 #endif