aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-08-08 09:42:13 +0000
committernyamatongwe <unknown>2001-08-08 09:42:13 +0000
commitc45e2b3e183b4f75b6570cc5d9eb09e2a0920c37 (patch)
tree10dc90bddd4c576ac9483d3e670b4abc8ce92347 /src/Editor.h
parentab087c899bf0ece12242f065844a26d2bc371da3 (diff)
downloadscintilla-mirror-c45e2b3e183b4f75b6570cc5d9eb09e2a0920c37.tar.gz
Added mouse dwell feature.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h4
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);