diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 20:04:26 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 20:04:26 +0200 |
commit | b4830656dbe996fa6d209ed8171cecb68c1331e1 (patch) | |
tree | 1c386805d3db52d75d40386e3c821475237b0306 /src/mainview.cpp | |
parent | pedantic (diff) | |
parent | Removed MainView events.. (diff) | |
download | rekonq-b4830656dbe996fa6d209ed8171cecb68c1331e1.tar.xz |
Merge branch 'NoMainViewEvents'
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 6a7ed495..185d0a41 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -606,46 +606,6 @@ void MainView::aboutToShowRecentTriggeredAction(QAction *action) } -void MainView::mouseDoubleClickEvent(QMouseEvent *event) -{ - if (!childAt(event->pos()) - // Remove the line below when QTabWidget does not have a one pixel frame - && event->pos().y() < (tabBar()->y() + tabBar()->height())) - { - newWebView(); - return; - } - KTabWidget::mouseDoubleClickEvent(event); -} - - -void MainView::contextMenuEvent(QContextMenuEvent *event) -{ - if (!childAt(event->pos())) - { - m_tabBar->contextMenuRequested(event->pos()); - return; - } - KTabWidget::contextMenuEvent(event); -} - - -void MainView::mouseReleaseEvent(QMouseEvent *event) -{ - if (event->button() == Qt::MidButton && !childAt(event->pos()) - // Remove the line below when QTabWidget does not have a one pixel frame - && event->pos().y() < (tabBar()->y() + tabBar()->height())) - { - KUrl url(QApplication::clipboard()->text(QClipboard::Selection)); - if (!url.isEmpty() && url.isValid() && !url.scheme().isEmpty()) - { - WebView *webView = newWebView(); - webView->setUrl(url); - } - } -} - - void MainView::loadUrlInCurrentTab(const KUrl &url) { WebView *webView = currentWebView(); |