diff options
author | nyamatongwe <unknown> | 2010-10-11 21:40:17 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-10-11 21:40:17 +1100 |
commit | 66c09167ac82b63f4584ffd28ad425194811595b (patch) | |
tree | 7ac755258f485f98c53e4fe7423831d5a24040c1 /src/Editor.h | |
parent | 54cd02b4bbe654fea892975d46cd9071a7fc891e (diff) | |
download | scintilla-mirror-66c09167ac82b63f4584ffd28ad425194811595b.tar.gz |
Feature request #3082409 implemented for SCN_HOTSPOTRELEASECLICK event.
Contributed by Farshid Lashkari.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 3f36c9088..17683c63a 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -197,6 +197,7 @@ protected: // ScintillaBase subclass needs access to much of Editor bool dropWentOutside; SelectionPosition posDrag; SelectionPosition posDrop; + int hotSpotClickPos; int lastXChosen; int lineAnchor; int originalAnchorPos; @@ -417,6 +418,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void NotifyDoubleClick(Point pt, bool shift, bool ctrl, bool alt); void NotifyHotSpotClicked(int position, bool shift, bool ctrl, bool alt); void NotifyHotSpotDoubleClicked(int position, bool shift, bool ctrl, bool alt); + void NotifyHotSpotReleaseClick(int position, bool shift, bool ctrl, bool alt); void NotifyUpdateUI(); void NotifyPainted(); void NotifyIndicatorClick(bool click, int position, bool shift, bool ctrl, bool alt); |