diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 19:32:21 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-11 19:32:21 +0200 |
commit | 08380e9276505735f618a2a48de8d5de4807997f (patch) | |
tree | 51a106a184b6a03e7c484774cf1ef54f2add17ab | |
parent | Added some functions comment (diff) | |
download | rekonq-08380e9276505735f618a2a48de8d5de4807997f.tar.xz |
Removed MainView events..
-rw-r--r-- | src/mainview.cpp | 40 | ||||
-rw-r--r-- | src/mainview.h | 5 |
2 files changed, 0 insertions, 45 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 3b5db52e..14adaeda 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -599,46 +599,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(); diff --git a/src/mainview.h b/src/mainview.h index 6514c026..cd71ca2c 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -91,11 +91,6 @@ public: */ void showTabBar(); -protected: - void mouseDoubleClickEvent(QMouseEvent *event); - void contextMenuEvent(QContextMenuEvent *event); - void mouseReleaseEvent(QMouseEvent *event); - public slots: /** |