diff options
author | nyamatongwe <unknown> | 2001-08-08 09:42:13 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-08-08 09:42:13 +0000 |
commit | c45e2b3e183b4f75b6570cc5d9eb09e2a0920c37 (patch) | |
tree | 10dc90bddd4c576ac9483d3e670b4abc8ce92347 /src/Editor.h | |
parent | ab087c899bf0ece12242f065844a26d2bc371da3 (diff) | |
download | scintilla-mirror-c45e2b3e183b4f75b6570cc5d9eb09e2a0920c37.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); |