]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/scintilla/include/Accessor.h
Use the data scheme to load resources in the WebKitGTK+ implementation, rather than...
[wxWidgets.git] / src / stc / scintilla / include / Accessor.h
index 17c951067221fa0b246dab36e7ee9194da39d462..d9db9c7bfe389d66b678e693febbbf0c90fdcfc1 100644 (file)
@@ -55,6 +55,7 @@ public:
        }
        void SetCodePage(int codePage_) { codePage = codePage_; }
 
+       virtual bool Match(int pos, const char *s)=0;
        virtual char StyleAt(int position)=0;
        virtual int GetLine(int position)=0;
        virtual int LineStart(int line)=0;
@@ -74,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;
 };