diff options
author | nyamatongwe <devnull@localhost> | 2011-05-21 10:18:24 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-05-21 10:18:24 +1000 |
commit | 9ed1465a78cc69038d8a5655e6e1dba9c4258e5b (patch) | |
tree | 54b0eaa941abfd1540faab5db91980548c0f12f0 /src/Editor.h | |
parent | ea7aa404479ca0981b5f55b8863858585b61b603 (diff) | |
download | scintilla-mirror-9ed1465a78cc69038d8a5655e6e1dba9c4258e5b.tar.gz |
Move Selected Lines Up / Down. Feature #3304850.
From Olivier Dagenais.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index ef3fb78f0..5c01ee83d 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -335,6 +335,9 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void ScrollText(int linesToMove); void HorizontalScrollTo(int xPos); void VerticalCentreCaret(); + void MoveSelectedLines(int lineDelta); + void MoveSelectedLinesUp(); + void MoveSelectedLinesDown(); void MoveCaretInsideView(bool ensureVisible=true); int DisplayFromPosition(int pos); |