diff options
author | nyamatongwe <unknown> | 2003-09-20 04:06:28 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-09-20 04:06:28 +0000 |
commit | 280d4662920a6b6042a90dad59df43815d946e24 (patch) | |
tree | 1d7513ea2ef6a89856a07ab48745346095df7284 /src/Editor.h | |
parent | 8b01a8c965414fa2ed7a86ced041bc515df31e82 (diff) | |
download | scintilla-mirror-280d4662920a6b6042a90dad59df43815d946e24.tar.gz |
Patch from Naba to perform incremental wrapping in idle time.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Editor.h b/src/Editor.h index d0dfcccc1..24bc20765 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -345,8 +345,8 @@ protected: // ScintillaBase subclass needs access to much of Editor void DropCaret(); void InvalidateCaret(); - void NeedWrapping(int docLineStartWrapping=0); - bool WrapLines(); + void NeedWrapping(int docLineStartWrapping = 0, int docLineEndWrapping = 0x7ffffff); + bool WrapLines(bool fullWrap, int priorityWrapLineStart); void LinesJoin(); void LinesSplit(int pixelWidth); @@ -466,7 +466,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void Tick(); bool Idle(); virtual void SetTicking(bool on) = 0; - virtual void SetIdle(bool on) = 0; + virtual bool SetIdle(bool) { return false; } virtual void SetMouseCapture(bool on) = 0; virtual bool HaveMouseCapture() = 0; void SetFocusState(bool focusState); |