aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-03-22 12:16:54 +0000
committernyamatongwe <unknown>2000-03-22 12:16:54 +0000
commit8215e26730058344bf706cafd76048703a283151 (patch)
tree7c44f53d74ea3a4303084e24b5a40e8139bc9a01 /src/Editor.h
parente20515d797effa6a135a714a90841c55f89c6111 (diff)
downloadscintilla-mirror-8215e26730058344bf706cafd76048703a283151.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/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 16bcd4b22..d1281be5a 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -228,6 +228,8 @@ protected: // ScintillaBase subclass needs access to much of Editor
#endif
void PageMove(int direction, bool extend=false);
+ void ChangeCaseOfSelection(bool makeUpperCase);
+ void LineTranspose();
virtual int KeyCommand(UINT iMessage);
virtual int KeyDefault(int /* key */, int /*modifiers*/);
int KeyDown(int key, bool shift, bool ctrl, bool alt);