aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LineMarker.h
blob: 25d575cb943212d87813d233ac3bda53a8f54595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Scintilla source code edit control
// LineMarker.h - defines the look of a line marker in the margin 
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.

#ifndef LINEMARKER_H
#define LINEMARKER_H

class LineMarker {
public:
	int markType;
	ColourPair fore;
	ColourPair back;
	LineMarker() {
		markType = SC_MARK_CIRCLE;
		fore = Colour(0,0,0);
		back = Colour(0xff,0xff,0xff);
	}
	void Draw(Surface *surface, PRectangle &rc);
};

#endif