]>
Commit | Line | Data |
---|---|---|
9ce192d4 RD |
1 | // Scintilla source code edit control |
2 | // LineMarker.h - defines the look of a line marker in the margin | |
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 LINEMARKER_H | |
7 | #define LINEMARKER_H | |
8 | ||
9 | class LineMarker { | |
10 | public: | |
11 | int markType; | |
12 | ColourPair fore; | |
13 | ColourPair back; | |
14 | LineMarker() { | |
15 | markType = SC_MARK_CIRCLE; | |
16 | fore = Colour(0,0,0); | |
17 | back = Colour(0xff,0xff,0xff); | |
18 | } | |
19 | void Draw(Surface *surface, PRectangle &rc); | |
20 | }; | |
21 | ||
22 | #endif |