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 /include/Scintilla.iface | |
| parent | 46ade7fb100ba43e6814a9b5297afa6c491cb244 (diff) | |
| download | scintilla-mirror-feb80a2c787c3d9b46557acb3b8317e6e3dc5d22.tar.gz | |
Added mouse dwell feature.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index abfe7aba9..bb40634f3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -858,6 +858,14 @@ set void SetBackSpaceUnIndents=2262(bool bsUnIndents,) # Does a backspace pressed when caret is within indentation unindent? get bool GetBackSpaceUnIndents=2263(,) +val SC_TIME_FOREVER=10000000 + +# Sets the time the mouse must sit still to generate a mouse dwell event +set void SetMouseDwellTime=2264(int periodMilliseconds,) + +# Retrieve the time the mouse must sit still to generate a mouse dwell event +get int GetMouseDwellTime=2265(,) + ## Start of key messages # Move caret down one line. fun void LineDown=2300(,) @@ -1550,6 +1558,8 @@ evt void PosChanged=2012(int position) evt void Painted=2013(void) evt void UserListSelection=2014(int listType, string text) evt void URIDropped=2015(string text) +evt void DwellStart=2016(int position) +evt void DwellEnd=2017(int position) cat Deprecated |
