diff options
author | nyamatongwe <devnull@localhost> | 2009-04-12 09:32:53 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-04-12 09:32:53 +0000 |
commit | fdc473e497d27721441a9a9177354ea6e1fa15fc (patch) | |
tree | 20390b4aacfaa851b870a4236d2d33bf40f9c65c /src/ViewStyle.h | |
parent | a20c48b229b1b80dbce7d3c359def6a789002fca (diff) | |
download | scintilla-mirror-fdc473e497d27721441a9a9177354ea6e1fa15fc.tar.gz |
Annotations and text margins added.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index 3f8b856b9..5390848e5 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -104,6 +104,9 @@ public: bool extraFontFlag; int extraAscent; int extraDescent; + int marginStyleOffset; + int annotationVisible; + int annotationStyleOffset; ViewStyle(); ViewStyle(const ViewStyle &source); @@ -117,6 +120,7 @@ public: void ClearStyles(); void SetStyleFontName(int styleIndex, const char *name); bool ProtectionActive() const; + bool ValidStyle(size_t styleIndex) const; }; #ifdef SCI_NAMESPACE |