diff options
author | Justin Dailey <unknown> | 2017-07-04 09:54:16 +1000 |
---|---|---|
committer | Justin Dailey <unknown> | 2017-07-04 09:54:16 +1000 |
commit | 8918bc9ca9d996d87f30a38fadfe3ae1dd180a5d (patch) | |
tree | 249481119f27d48e9908c00723274699b20322d1 /qt/ScintillaEditBase/ScintillaQt.h | |
parent | 3352a72bcb283ed42d40b7903e058d7170a3db28 (diff) | |
download | scintilla-mirror-8918bc9ca9d996d87f30a38fadfe3ae1dd180a5d.tar.gz |
Dropping files fires the SCN_URIDROPPED notification instead of inserting text.
Diffstat (limited to 'qt/ScintillaEditBase/ScintillaQt.h')
-rw-r--r-- | qt/ScintillaEditBase/ScintillaQt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt/ScintillaEditBase/ScintillaQt.h b/qt/ScintillaEditBase/ScintillaQt.h index e4471572b..fa6992c7c 100644 --- a/qt/ScintillaEditBase/ScintillaQt.h +++ b/qt/ScintillaEditBase/ScintillaQt.h @@ -120,6 +120,7 @@ private: void NotifyChange() override; void NotifyFocus(bool focus) override; void NotifyParent(SCNotification scn) override; + void NotifyURIDropped(const char *uri); int timers[tickDwell+1]; bool FineTickerRunning(TickReason reason) override; void FineTickerStart(TickReason reason, int millis, int tolerance) override; @@ -151,6 +152,7 @@ protected: void DragMove(const Point &point); void DragLeave(); void Drop(const Point &point, const QMimeData *data, bool move); + void DropUrls(const QMimeData *data); void timerEvent(QTimerEvent *event) override; |