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.h | |
| parent | 46ade7fb100ba43e6814a9b5297afa6c491cb244 (diff) | |
| download | scintilla-mirror-feb80a2c787c3d9b46557acb3b8317e6e3dc5d22.tar.gz | |
Added mouse dwell feature.
Diffstat (limited to 'include/Scintilla.h')
| -rw-r--r-- | include/Scintilla.h | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/include/Scintilla.h b/include/Scintilla.h index ac7614804..65a95b8e9 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -338,6 +338,9 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_GETTABINDENTS 2261  #define SCI_SETBACKSPACEUNINDENTS 2262  #define SCI_GETBACKSPACEUNINDENTS 2263 +#define SC_TIME_FOREVER 10000000 +#define SCI_SETMOUSEDWELLTIME 2264 +#define SCI_GETMOUSEDWELLTIME 2265  #define SCI_LINEDOWN 2300  #define SCI_LINEDOWNEXTEND 2301  #define SCI_LINEUP 2302 @@ -498,6 +501,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCN_PAINTED 2013  #define SCN_USERLISTSELECTION 2014  #define SCN_URIDROPPED 2015 +#define SCN_DWELLSTART 2016 +#define SCN_DWELLEND 2017  //--Autogenerated -- end of section automatically generated from Scintilla.iface  // Optional module for macro recording @@ -552,7 +557,7 @@ struct NotifyHeader {  struct SCNotification {  	struct NotifyHeader nmhdr; -	int position;	// SCN_STYLENEEDED, SCN_MODIFIED +	int position;	// SCN_STYLENEEDED, SCN_MODIFIED, SCN_DWELLSTART, SCN_DWELLEND  	int ch;		// SCN_CHARADDED, SCN_KEY  	int modifiers;	// SCN_KEY  	int modificationType;	// SCN_MODIFIED @@ -569,6 +574,8 @@ struct SCNotification {  	int foldLevelPrev;	// SCN_MODIFIED  	int margin;		// SCN_MARGINCLICK  	int listType;	// SCN_USERLISTSELECTION +	int x;			// SCN_DWELLSTART, SCN_DWELLEND +	int y;		// SCN_DWELLSTART, SCN_DWELLEND  };  #define SC_MASK_FOLDERS ((1<<SC_MARKNUM_FOLDER) | \ | 
