]> git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/Indicator.h
only declare AddProcessCallback for wxMotif and wxGTK
[wxWidgets.git] / src / stc / scintilla / src / Indicator.h
1 // Scintilla source code edit control
2 /** @file Indicator.h
3 ** Defines the style of indicators which are text decorations such as underlining.
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 INDICATOR_H
9 #define INDICATOR_H
10
11 #ifdef SCI_NAMESPACE
12 namespace Scintilla {
13 #endif
14
15 /**
16 */
17 class Indicator {
18 public:
19 int style;
20 bool under;
21 ColourPair fore;
22 Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)) {
23 }
24 void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
25 };
26
27 #ifdef SCI_NAMESPACE
28 }
29 #endif
30
31 #endif