]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/LineMarker.h
fix for a typo (== instead of =)
[wxWidgets.git] / src / stc / scintilla / src / LineMarker.h
1 // Scintilla source code edit control
2 /** @file LineMarker.h
3 ** Defines the look of a line marker in the margin .
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 LINEMARKER_H
9 #define LINEMARKER_H
10
11 /**
12 */
13 class LineMarker {
14 public:
15 int markType;
16 ColourPair fore;
17 ColourPair back;
18 LineMarker() {
19 markType = SC_MARK_CIRCLE;
20 fore = Colour(0,0,0);
21 back = Colour(0xff,0xff,0xff);
22 }
23 void Draw(Surface *surface, PRectangle &rc, Font &fontForCharacter);
24 };
25
26 #endif