]> git.saurik.com Git - wxWidgets.git/blob - contrib/src/stc/scintilla/src/LineMarker.h
f22241bb193dc0ade12242e718714eaf0116d920
[wxWidgets.git] / contrib / src / stc / scintilla / src / LineMarker.h
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