summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtWebView.cpp')
-rw-r--r--Swift/QtUI/QtWebView.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/Swift/QtUI/QtWebView.cpp b/Swift/QtUI/QtWebView.cpp
index a97357d..93ecc18 100644
--- a/Swift/QtUI/QtWebView.cpp
+++ b/Swift/QtUI/QtWebView.cpp
@@ -9,10 +9,10 @@
#include <QKeyEvent>
#include <QFocusEvent>
+#include <QMenu>
namespace Swift {
QtWebView::QtWebView(QWidget* parent) : QWebView(parent) {
-
}
void QtWebView::keyPressEvent(QKeyEvent* event) {
@@ -31,6 +31,19 @@ void QtWebView::keyPressEvent(QKeyEvent* event) {
delete translatedEvent;
}
+void QtWebView::dragEnterEvent(QDragEnterEvent *event) {
+
+}
+
+void QtWebView::contextMenuEvent(QContextMenuEvent* ev) {
+ QAction* copyLinkAction = pageAction(QWebPage::CopyLinkToClipboard);
+ if (copyLinkAction) {
+ QMenu menu(this);
+ menu.addAction(copyLinkAction);
+ menu.exec(ev->globalPos());
+ }
+}
+
void QtWebView::focusInEvent(QFocusEvent* event) {
QWebView::focusInEvent(event);
emit gotFocus();