diff options
| author | nyamatongwe <devnull@localhost> | 2010-10-11 21:40:17 +1100 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2010-10-11 21:40:17 +1100 |
| commit | 5aa2382ca73cf034ede533063c9b9a65187215a6 (patch) | |
| tree | 5f470759272be5f60a67d9d755971e74189aff26 /src/Editor.h | |
| parent | 09ed1fc514d1b922d2b00fca4798521f946dd348 (diff) | |
| download | scintilla-mirror-5aa2382ca73cf034ede533063c9b9a65187215a6.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); |
