2011-04-27 09:05:54 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2013-03-06 09:05:41 +01:00
|
|
|
* Copyright (C) 2010-2013 David Rosca <nowrep@gmail.com>
|
2011-04-27 09:05:54 +02: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-04-20 21:39:35 +02:00
|
|
|
#include "historysidebar.h"
|
|
|
|
#include "ui_historysidebar.h"
|
|
|
|
#include "qupzilla.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "tabwidget.h"
|
2012-04-30 16:33:14 +02:00
|
|
|
#include "tabbedwebview.h"
|
2012-01-21 23:19:38 +01:00
|
|
|
#include "mainapplication.h"
|
2011-04-25 20:56:45 +02:00
|
|
|
#include "historymodel.h"
|
2012-08-10 21:16:43 +02:00
|
|
|
#include "qzsettings.h"
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2011-12-12 21:14:43 +01:00
|
|
|
HistorySideBar::HistorySideBar(QupZilla* mainClass, QWidget* parent)
|
|
|
|
: QWidget(parent)
|
2011-11-06 17:01:23 +01:00
|
|
|
, ui(new Ui::HistorySideBar)
|
|
|
|
, p_QupZilla(mainClass)
|
2011-04-20 21:39:35 +02:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
ui->historyTree->setColumnHidden(1, true);
|
|
|
|
ui->historyTree->setColumnHidden(2, true);
|
|
|
|
ui->historyTree->setColumnHidden(3, true);
|
|
|
|
ui->historyTree->setSelectionMode(QAbstractItemView::SingleSelection);
|
2011-04-20 21:39:35 +02:00
|
|
|
|
2013-03-06 09:05:41 +01:00
|
|
|
connect(ui->historyTree, SIGNAL(openLink(QUrl,HistoryView::OpenBehavior)), this, SLOT(openLink(QUrl,HistoryView::OpenBehavior)));
|
2012-04-30 16:33:14 +02:00
|
|
|
connect(ui->search, SIGNAL(textEdited(QString)), ui->historyTree->filterModel(), SLOT(setFilterFixedString(QString)));
|
2011-10-28 17:52:42 +02:00
|
|
|
}
|
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
void HistorySideBar::openLink(const QUrl &url, HistoryView::OpenBehavior openIn)
|
2011-04-20 21:39:35 +02:00
|
|
|
{
|
2012-04-30 16:33:14 +02:00
|
|
|
if (openIn == HistoryView::OpenInNewTab) {
|
2012-08-10 21:16:43 +02:00
|
|
|
p_QupZilla->tabWidget()->addView(url, qzSettings->newTabPosition);
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-04-30 16:33:14 +02:00
|
|
|
p_QupZilla->weView()->load(url);
|
2011-04-25 20:56:45 +02:00
|
|
|
}
|
2011-04-20 21:39:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HistorySideBar::~HistorySideBar()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|