diff options
| author | nyamatongwe <devnull@localhost> | 2001-08-08 09:42:13 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-08-08 09:42:13 +0000 |
| commit | feb80a2c787c3d9b46557acb3b8317e6e3dc5d22 (patch) | |
| tree | 10dc90bddd4c576ac9483d3e670b4abc8ce92347 /src/Editor.h | |
| parent | 46ade7fb100ba43e6814a9b5297afa6c491cb244 (diff) | |
| download | scintilla-mirror-feb80a2c787c3d9b46557acb3b8317e6e3dc5d22.tar.gz | |
Added mouse dwell feature.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 0338467aa..5fdbbfae7 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -104,6 +104,9 @@ protected: // ScintillaBase subclass needs access to much of Editor Point lastClick; unsigned int lastClickTime; + int dwellDelay; + int ticksToDwell; + bool dwelling; enum { selChar, selWord, selLine } selectionType; Point ptMouseLast; bool firstExpose; @@ -259,6 +262,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void NotifyPainted(); bool NotifyMarginClick(Point pt, bool shift, bool ctrl, bool alt); void NotifyNeedShown(int pos, int len); + void NotifyDwelling(Point pt, bool state); void NotifyModifyAttempt(Document *document, void *userData); void NotifySavePoint(Document *document, void *userData, bool atSavePoint); |
