diff options
Diffstat (limited to 'scintilla/src/CellBuffer.h')
-rw-r--r-- | scintilla/src/CellBuffer.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scintilla/src/CellBuffer.h b/scintilla/src/CellBuffer.h index 3e5da88..37bc58c 100644 --- a/scintilla/src/CellBuffer.h +++ b/scintilla/src/CellBuffer.h @@ -142,6 +142,10 @@ private: LineVector lv;
+ /// Actions without undo
+ void BasicInsertString(int position, const char *s, int insertLength);
+ void BasicDeleteChars(int position, int deleteLength);
+
public:
CellBuffer();
@@ -151,6 +155,7 @@ public: char CharAt(int position) const;
void GetCharRange(char *buffer, int position, int lengthRetrieve) const;
char StyleAt(int position) const;
+ void GetStyleRange(unsigned char *buffer, int position, int lengthRetrieve) const;
const char *BufferPointer();
int Length() const;
@@ -178,10 +183,6 @@ public: void SetSavePoint();
bool IsSavePoint();
- /// Actions without undo
- void BasicInsertString(int position, const char *s, int insertLength);
- void BasicDeleteChars(int position, int deleteLength);
-
bool SetUndoCollection(bool collectUndo);
bool IsCollectingUndo() const;
void BeginUndoAction();
|