diff options
| author | nyamatongwe <devnull@localhost> | 2000-03-22 12:16:54 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-03-22 12:16:54 +0000 |
| commit | ff69e140ac7634ab8ec4365f97f0adae27692b53 (patch) | |
| tree | 7c44f53d74ea3a4303084e24b5a40e8139bc9a01 /src/Document.h | |
| parent | 06795dc71160ed0b5ff3a2919e6fd9ef7adc8a4c (diff) | |
| download | scintilla-mirror-ff69e140ac7634ab8ec4365f97f0adae27692b53.tar.gz | |
Split UndoHistory out of CellBuffer.
Fixed coalescing of nodes in the undo history.
Added LineCut, LineDelete, LineTranspose, UpperCase and LowerCase keyboard
commands and added keys for them.
Added UUID lexical class to CPP lexer.
Diffstat (limited to 'src/Document.h')
| -rw-r--r-- | src/Document.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 59215c75a..4c212b7bd 100644 --- a/src/Document.h +++ b/src/Document.h @@ -111,7 +111,6 @@ public: undoCollectionType SetUndoCollection(undoCollectionType collectUndo) { return cb.SetUndoCollection(collectUndo); } - void AppendUndoStartAction() { cb.AppendUndoStartAction(); } void BeginUndoAction() { cb.BeginUndoAction(); } void EndUndoAction() { cb.EndUndoAction(); } void SetSavePoint(); @@ -123,6 +122,7 @@ public: void InsertChar(int pos, char ch); void InsertString(int position, const char *s); void InsertString(int position, const char *s, int insertLength); + void ChangeChar(int pos, char ch); void DelChar(int pos); int DelCharBack(int pos); @@ -138,6 +138,7 @@ public: void DeleteAllMarks(int markerNum); int LineFromHandle(int markerHandle) { return cb.LineFromHandle(markerHandle); } int LineStart(int line); + int LineEnd(int line); int LineEndPosition(int position); int VCHomePosition(int position); @@ -154,6 +155,8 @@ public: long FindText(WORD iMessage,WPARAM wParam,LPARAM lParam); int LinesTotal(); + void ChangeCase(Range r, bool makeUpperCase); + void SetWordChars(unsigned char *chars); void SetStylingBits(int bits); void StartStyling(int position, char mask); |
