]>
Commit | Line | Data |
---|---|---|
9ce192d4 | 1 | // Scintilla source code edit control |
65ec6247 RD |
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> | |
9ce192d4 RD |
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 | ||
65ec6247 RD |
11 | /** |
12 | */ | |
9ce192d4 RD |
13 | class Indicator { |
14 | public: | |
15 | int style; | |
16 | ColourPair fore; | |
17 | Indicator() : style(INDIC_PLAIN), fore(Colour(0,0,0)) { | |
18 | } | |
19 | void Draw(Surface *surface, PRectangle &rc); | |
20 | }; | |
21 | ||
22 | #endif |