1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-23 02:32:10 +02:00
falkonOfficial/src/lib/history/historymanager.cpp

175 lines
5.4 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
2011-03-03 18:29:20 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#include "historymanager.h"
#include "ui_historymanager.h"
#include "browserwindow.h"
#include "mainapplication.h"
#include "history.h"
#include "tabwidget.h"
#include "tabbedwebview.h"
#include "headerview.h"
#include "qzsettings.h"
#include "iconprovider.h"
2011-03-02 16:57:41 +01:00
#include <QMessageBox>
#include <QClipboard>
HistoryManager::HistoryManager(BrowserWindow* window, QWidget* parent)
: QWidget(parent)
, ui(new Ui::HistoryManager)
, m_window(window)
2011-03-02 16:57:41 +01:00
{
ui->setupUi(this);
ui->historyTree->setViewType(HistoryTreeView::HistoryManagerViewType);
2011-03-02 16:57:41 +01:00
connect(ui->historyTree, SIGNAL(urlActivated(QUrl)), this, SLOT(urlActivated(QUrl)));
connect(ui->historyTree, SIGNAL(urlCtrlActivated(QUrl)), this, SLOT(urlCtrlActivated(QUrl)));
connect(ui->historyTree, SIGNAL(urlShiftActivated(QUrl)), this, SLOT(urlShiftActivated(QUrl)));
connect(ui->historyTree, SIGNAL(contextMenuRequested(QPoint)), this, SLOT(createContextMenu(QPoint)));
connect(ui->deleteB, SIGNAL(clicked()), ui->historyTree, SLOT(removeSelectedItems()));
2011-03-02 16:57:41 +01:00
connect(ui->clearAll, SIGNAL(clicked()), this, SLOT(clearHistory()));
ui->historyTree->setFocus();
2011-03-02 16:57:41 +01:00
}
BrowserWindow* HistoryManager::getWindow()
2011-03-02 16:57:41 +01:00
{
if (!m_window)
m_window = mApp->getWindow();
return m_window.data();
2011-03-02 16:57:41 +01:00
}
void HistoryManager::setMainWindow(BrowserWindow* window)
2011-03-02 16:57:41 +01:00
{
if (window) {
m_window = window;
}
2011-03-02 16:57:41 +01:00
}
void HistoryManager::restoreState(const QByteArray &state)
{
ui->historyTree->header()->restoreState(state);
2011-03-02 16:57:41 +01:00
}
QByteArray HistoryManager::saveState()
2011-07-31 13:33:44 +02:00
{
return ui->historyTree->header()->saveState();
2011-07-31 13:33:44 +02:00
}
2011-03-02 16:57:41 +01:00
void HistoryManager::clearHistory()
{
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
tr("Are you sure to delete all history?"), QMessageBox::Yes | QMessageBox::No);
if (button != QMessageBox::Yes) {
2011-03-02 16:57:41 +01:00
return;
}
2011-03-02 16:57:41 +01:00
mApp->history()->clearHistory();
mApp->history()->optimizeHistory();
2011-03-02 16:57:41 +01:00
}
void HistoryManager::search(const QString &searchText)
2011-03-02 16:57:41 +01:00
{
ui->historyTree->search(searchText);
}
void HistoryManager::urlActivated(const QUrl &url)
{
openUrl(url);
}
void HistoryManager::urlCtrlActivated(const QUrl &url)
{
openUrlInNewTab(url);
}
void HistoryManager::urlShiftActivated(const QUrl &url)
{
openUrlInNewWindow(url);
}
void HistoryManager::openUrl(const QUrl &url)
{
const QUrl u = !url.isEmpty() ? url : ui->historyTree->selectedUrl();
m_window->weView()->load(u);
}
void HistoryManager::openUrlInNewTab(const QUrl &url)
{
const QUrl u = !url.isEmpty() ? url : ui->historyTree->selectedUrl();
m_window->tabWidget()->addView(u, qzSettings->newTabPosition);
}
void HistoryManager::openUrlInNewWindow(const QUrl &url)
{
const QUrl u = !url.isEmpty() ? url : ui->historyTree->selectedUrl();
mApp->createWindow(Qz::BW_NewWindow, u);
}
void HistoryManager::openUrlInNewPrivateWindow(const QUrl &url)
{
const QUrl u = !url.isEmpty() ? url : ui->historyTree->selectedUrl();
mApp->startPrivateBrowsing(u);
}
void HistoryManager::createContextMenu(const QPoint &pos)
{
QMenu menu;
QAction* actNewTab = menu.addAction(IconProvider::newTabIcon(), tr("Open in new tab"));
QAction* actNewWindow = menu.addAction(IconProvider::newWindowIcon(), tr("Open in new window"));
QAction* actNewPrivateWindow = menu.addAction(IconProvider::privateBrowsingIcon(), tr("Open in new private window"));
menu.addSeparator();
QAction* actCopyUrl = menu.addAction(tr("Copy url"), this, SLOT(copyUrl()));
QAction* actCopyTitle = menu.addAction(tr("Copy title"), this, SLOT(copyTitle()));
menu.addSeparator();
QAction* actDelete = menu.addAction(QIcon::fromTheme(QSL("edit-delete")), tr("Delete"));
connect(actNewTab, SIGNAL(triggered()), this, SLOT(openUrlInNewTab()));
connect(actNewWindow, SIGNAL(triggered()), this, SLOT(openUrlInNewWindow()));
connect(actNewPrivateWindow, SIGNAL(triggered()), this, SLOT(openUrlInNewPrivateWindow()));
connect(actDelete, SIGNAL(triggered()), ui->historyTree, SLOT(removeSelectedItems()));
if (ui->historyTree->selectedUrl().isEmpty()) {
actNewTab->setDisabled(true);
actNewWindow->setDisabled(true);
actNewPrivateWindow->setDisabled(true);
actCopyTitle->setDisabled(true);
actCopyUrl->setDisabled(true);
2011-03-02 16:57:41 +01:00
}
menu.exec(pos);
}
void HistoryManager::copyUrl()
{
QApplication::clipboard()->setText(ui->historyTree->selectedUrl().toString());
}
void HistoryManager::copyTitle()
{
QApplication::clipboard()->setText(ui->historyTree->currentIndex().data().toString());
2011-03-02 16:57:41 +01:00
}
HistoryManager::~HistoryManager()
{
delete ui;
}