aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-04-07 00:57:03 +0000
committernyamatongwe <unknown>2007-04-07 00:57:03 +0000
commit6d82fda3c167c1ebdc7242f9ee6d42de2a47e838 (patch)
tree855af185b33b67caf44e49c655059ff76782ef35 /include
parentcfc2acb4089acc872b9f06031ca39eef637c149c (diff)
downloadscintilla-mirror-6d82fda3c167c1ebdc7242f9ee6d42de2a47e838.tar.gz
More decoration code, with modifications reported from document to views
although this isn't optimal. Some checking for null changes. Messages documented. Methods for changing indicators in Accessor so can be used by lexers.
Diffstat (limited to 'include')
-rw-r--r--include/Accessor.h1
-rw-r--r--include/WindowAccessor.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Accessor.h b/include/Accessor.h
index 0b2c4baee..d9db9c7bf 100644
--- a/include/Accessor.h
+++ b/include/Accessor.h
@@ -75,4 +75,5 @@ public:
virtual void ColourTo(unsigned int pos, int chAttr)=0;
virtual void SetLevel(int line, int level)=0;
virtual int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0)=0;
+ virtual void IndicatorFill(int start, int end, int indicator, int value)=0;
};
diff --git a/include/WindowAccessor.h b/include/WindowAccessor.h
index 6c16b150f..a55c2c459 100644
--- a/include/WindowAccessor.h
+++ b/include/WindowAccessor.h
@@ -54,4 +54,5 @@ public:
void ColourTo(unsigned int pos, int chAttr);
void SetLevel(int line, int level);
int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
+ void IndicatorFill(int start, int end, int indicator, int value);
};