From 08380e9276505735f618a2a48de8d5de4807997f Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sat, 11 Apr 2009 19:32:21 +0200 Subject: Removed MainView events.. --- src/mainview.cpp | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'src/mainview.cpp') 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(); -- cgit v1.2.1