diff options
author | nyamatongwe <devnull@localhost> | 2003-09-20 04:06:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-20 04:06:28 +0000 |
commit | 6b674227b9538e1391b1952e5fb28f355b013b3d (patch) | |
tree | 1d7513ea2ef6a89856a07ab48745346095df7284 /src/Editor.h | |
parent | 3e459e50bf8c119f7964f5838ce557e287b2c89e (diff) | |
download | scintilla-mirror-6b674227b9538e1391b1952e5fb28f355b013b3d.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); |