diff options
author | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-08-18 10:45:24 +0000 |
commit | 74537dd24ba7943e79652b06f4b752be2035bcea (patch) | |
tree | c5d0492dca4b04bf79e1ef367a7190df8472bc3f /src/Editor.h | |
parent | d15b65e7fba53354b9a044ba5d8232d256b58d5e (diff) | |
download | scintilla-mirror-74537dd24ba7943e79652b06f4b752be2035bcea.tar.gz |
Added in most of Ferdinand Prantl's changes except for regular expression
search.
Some bits not quite done as well.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 5b79f2ede..83967cfd6 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -178,7 +178,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void SetSelection(int currentPos_, int anchor_); void SetSelection(int currentPos_); void SetEmptySelection(int currentPos_); - int MovePositionOutsideChar(int pos, int moveDir, bool checkLineEnd=true); + int MovePositionOutsideChar(int pos, int moveDir, bool checkLineEnd=true); int MovePositionTo(int newPos, bool extend = false); int MovePositionSoVisible(int pos, int moveDir); void SetLastXChosen(); @@ -228,6 +228,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void NotifyParent(SCNotification scn) = 0; virtual void NotifyStyleToNeeded(int endStyleNeeded); void NotifyChar(char ch); + void NotifyMove(int position); void NotifySavePoint(bool isSavePoint); void NotifyModifyAttempt(); virtual void NotifyDoubleClick(Point pt, bool shift); |