From d851d8fe886b2cd8459b63b52043117c9679874e Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 8 Mar 2000 01:42:56 +0000 Subject: no message --- src/Indicator.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Indicator.h (limited to 'src/Indicator.h') diff --git a/src/Indicator.h b/src/Indicator.h new file mode 100644 index 000000000..2472cedc1 --- /dev/null +++ b/src/Indicator.h @@ -0,0 +1,18 @@ +// Scintilla source code edit control +// Indicator.h - defines the style of indicators which are text decorations such as underlining +// Copyright 1998-2000 by Neil Hodgson +// The License.txt file describes the conditions under which this software may be distributed. + +#ifndef INDICATOR_H +#define INDICATOR_H + +class Indicator { +public: + int style; + ColourPair fore; + Indicator() : style(INDIC_PLAIN), fore(Colour(0,0,0)) { + } + void Draw(Surface *surface, PRectangle &rc); +}; + +#endif -- cgit v1.2.3