]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/Indicator.h
716db1051fe7abd142a5f2d30967eb7b704622e0
[wxWidgets.git] / src / stc / scintilla / src / Indicator.h
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.
7
8 #ifndef INDICATOR_H
9 #define INDICATOR_H
10
11 /**
12 */
13 class Indicator {
14 public:
15 int style;
16 ColourPair fore;
17 Indicator() : style(INDIC_PLAIN), fore(ColourDesired(0,0,0)) {
18 }
19 void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
20 };
21
22 #endif