2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 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 "qupzilla.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "mainapplication.h"
|
2012-04-30 16:33:14 +02:00
|
|
|
#include "history.h"
|
2011-07-30 17:57:14 +02:00
|
|
|
#include "browsinglibrary.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "tabwidget.h"
|
2012-04-30 16:33:14 +02:00
|
|
|
#include "tabbedwebview.h"
|
|
|
|
#include "historymodel.h"
|
|
|
|
#include "headerview.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
2011-10-20 17:56:01 +02:00
|
|
|
HistoryManager::HistoryManager(QupZilla* mainClass, QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, ui(new Ui::HistoryManager)
|
|
|
|
, p_QupZilla(mainClass)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
connect(ui->historyTree, SIGNAL(openLink(QUrl, HistoryView::OpenBehavior)), this, SLOT(openLink(QUrl, HistoryView::OpenBehavior)));
|
2011-10-18 21:07:58 +02:00
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
connect(ui->deleteB, SIGNAL(clicked()), ui->historyTree, SLOT(removeItems()));
|
2011-03-02 16:57:41 +01:00
|
|
|
connect(ui->clearAll, SIGNAL(clicked()), this, SLOT(clearHistory()));
|
2011-07-30 17:57:14 +02:00
|
|
|
connect(ui->optimizeDb, SIGNAL(clicked(QPoint)), this, SLOT(optimizeDb()));
|
|
|
|
|
2011-07-29 15:39:43 +02:00
|
|
|
ui->historyTree->setFocus();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QupZilla* HistoryManager::getQupZilla()
|
|
|
|
{
|
2012-01-18 18:36:10 +01:00
|
|
|
if (!p_QupZilla) {
|
2011-03-04 13:59:07 +01:00
|
|
|
p_QupZilla = mApp->getWindow();
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-12-09 21:56:01 +01:00
|
|
|
return p_QupZilla.data();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
void HistoryManager::setMainWindow(QupZilla* window)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (window) {
|
2011-03-02 16:57:41 +01:00
|
|
|
p_QupZilla = window;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
void HistoryManager::restoreState(const QByteArray &state)
|
2011-04-25 20:56:45 +02:00
|
|
|
{
|
2012-04-30 16:33:14 +02:00
|
|
|
ui->historyTree->header()->restoreState(state);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
QByteArray HistoryManager::saveState()
|
2011-07-31 13:33:44 +02:00
|
|
|
{
|
2012-04-30 16:33:14 +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"),
|
2011-11-06 17:01:23 +01:00
|
|
|
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-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
mApp->history()->clearHistory();
|
|
|
|
mApp->history()->optimizeHistory();
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
void HistoryManager::search(const QString &searchText)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2012-04-30 16:33:14 +02:00
|
|
|
ui->historyTree->filterModel()->setFilterFixedString(searchText);
|
2012-02-13 16:59:30 +01:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
void HistoryManager::openLink(const QUrl &url, HistoryView::OpenBehavior openIn)
|
2012-02-13 16:59:30 +01:00
|
|
|
{
|
2012-04-30 16:33:14 +02:00
|
|
|
if (openIn == HistoryView::OpenInNewTab) {
|
|
|
|
getQupZilla()->tabWidget()->addView(url, Qz::NT_NotSelectedTab);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
getQupZilla()->weView()->load(url);
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-30 17:57:14 +02:00
|
|
|
void HistoryManager::optimizeDb()
|
|
|
|
{
|
2011-10-20 17:56:01 +02:00
|
|
|
BrowsingLibrary* b = qobject_cast<BrowsingLibrary*>(parentWidget()->parentWidget());
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!b) {
|
2011-07-30 17:57:14 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-07-30 17:57:14 +02:00
|
|
|
b->optimizeDatabase();
|
|
|
|
}
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
HistoryManager::~HistoryManager()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|