2011-04-27 09:05:54 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 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
|
|
|
#ifndef HISTORYSIDEBAR_H
|
|
|
|
#define HISTORYSIDEBAR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
#include <QShortcut>
|
2012-01-21 23:19:38 +01:00
|
|
|
#include <QClipboard>
|
2011-04-20 21:39:35 +02:00
|
|
|
|
2011-04-25 20:56:45 +02:00
|
|
|
#include "historymodel.h"
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class HistorySideBar;
|
2011-04-20 21:39:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class QupZilla;
|
|
|
|
class HistorySideBar : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit HistorySideBar(QupZilla* mainClass, QWidget* parent = 0);
|
|
|
|
~HistorySideBar();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void refreshTable();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void search();
|
|
|
|
void itemDoubleClicked(QTreeWidgetItem* item);
|
|
|
|
void contextMenuRequested(const QPoint &position);
|
|
|
|
void loadInNewTab();
|
|
|
|
void itemControlClicked(QTreeWidgetItem* item);
|
|
|
|
|
2011-10-28 17:52:42 +02:00
|
|
|
void copyAddress();
|
|
|
|
|
2011-04-25 20:56:45 +02:00
|
|
|
void historyEntryAdded(const HistoryModel::HistoryEntry &entry);
|
|
|
|
void historyEntryDeleted(const HistoryModel::HistoryEntry &entry);
|
2011-07-31 13:33:44 +02:00
|
|
|
void historyEntryEdited(const HistoryModel::HistoryEntry &before, const HistoryModel::HistoryEntry &after);
|
2011-04-25 20:56:45 +02:00
|
|
|
|
2011-04-20 21:39:35 +02:00
|
|
|
private:
|
|
|
|
Ui::HistorySideBar* ui;
|
2011-12-09 21:56:01 +01:00
|
|
|
QupZilla* p_QupZilla;
|
2011-04-25 20:56:45 +02:00
|
|
|
HistoryModel* m_historyModel;
|
2011-04-20 21:39:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HISTORYSIDEBAR_H
|