]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/scintilla/src/Indicator.h
2472cedc14cd3f64c8625d2a030d7dd0940de0e9
[wxWidgets.git] / contrib / src / stc / scintilla / src / Indicator.h
1 // Scintilla source code edit control
2 // Indicator.h - defines the style of indicators which are text decorations such as underlining
3 // Copyright 1998-2000 by Neil Hodgson <neilh@scintilla.org>
4 // The License.txt file describes the conditions under which this software may be distributed.
5
6 #ifndef INDICATOR_H
7 #define INDICATOR_H
8
9 class Indicator {
10 public:
11 int style;
12 ColourPair fore;
13 Indicator() : style(INDIC_PLAIN), fore(Colour(0,0,0)) {
14 }
15 void Draw(Surface *surface, PRectangle &rc);
16 };
17
18 #endif