diff options
author | nyamatongwe <unknown> | 2009-04-12 09:32:53 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-04-12 09:32:53 +0000 |
commit | 01355323d119b4c7b74d11f5012099813afa3031 (patch) | |
tree | 20390b4aacfaa851b870a4236d2d33bf40f9c65c /src/ViewStyle.h | |
parent | 001550a0de196eca314eea792bfada74a19773b1 (diff) | |
download | scintilla-mirror-01355323d119b4c7b74d11f5012099813afa3031.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 |