~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to scintilla/Indicator.h

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mto: (3.1.1 lenny) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20080502113745-7q62rqhl2ku02ptu
Import upstream version 0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#ifndef INDICATOR_H
9
9
#define INDICATOR_H
10
10
 
 
11
#ifdef SCI_NAMESPACE
 
12
namespace Scintilla {
 
13
#endif
 
14
 
11
15
/**
12
16
 */
13
17
class Indicator {
14
18
public:
15
19
        int style;
 
20
        bool under;
16
21
        ColourPair fore;
17
 
        Indicator() : style(INDIC_PLAIN), fore(ColourDesired(0,0,0)) {
 
22
        Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)) {
18
23
        }
19
24
        void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine);
20
25
};
21
26
 
 
27
#ifdef SCI_NAMESPACE
 
28
}
 
29
#endif
 
30
 
22
31
#endif