2012-04-30 16:33:14 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2012-04-30 16:33:14 +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/>.
|
|
|
|
* ============================================================ */
|
2014-05-03 15:08:47 +02:00
|
|
|
#ifndef HISTORYTREEVIEW_H
|
|
|
|
#define HISTORYTREEVIEW_H
|
2012-04-30 16:33:14 +02:00
|
|
|
|
|
|
|
#include <QTreeView>
|
|
|
|
|
|
|
|
class History;
|
|
|
|
class HistoryFilterModel;
|
|
|
|
class HeaderView;
|
|
|
|
|
2014-05-03 15:08:47 +02:00
|
|
|
class HistoryTreeView : public QTreeView
|
2012-04-30 16:33:14 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-05-03 15:08:47 +02:00
|
|
|
enum ViewType {
|
|
|
|
HistoryManagerViewType,
|
|
|
|
HistorySidebarViewType
|
|
|
|
};
|
2012-04-30 16:33:14 +02:00
|
|
|
|
2014-05-03 15:08:47 +02:00
|
|
|
explicit HistoryTreeView(QWidget* parent = 0);
|
|
|
|
|
|
|
|
ViewType viewType() const;
|
|
|
|
void setViewType(ViewType type);
|
|
|
|
|
|
|
|
// Returns empty url if more than one (or zero) urls are selected
|
|
|
|
QUrl selectedUrl() const;
|
2012-04-30 16:33:14 +02:00
|
|
|
|
|
|
|
HeaderView* header() const;
|
|
|
|
|
|
|
|
signals:
|
2014-05-03 15:08:47 +02:00
|
|
|
// Open url in current tab
|
|
|
|
void urlActivated(const QUrl &url);
|
|
|
|
// Open url in new tab
|
|
|
|
void urlCtrlActivated(const QUrl &url);
|
|
|
|
// Open url in new window
|
|
|
|
void urlShiftActivated(const QUrl &url);
|
|
|
|
// Context menu signal with point mapped to global
|
|
|
|
void contextMenuRequested(const QPoint &point);
|
2012-04-30 16:33:14 +02:00
|
|
|
|
|
|
|
public slots:
|
2014-05-03 15:08:47 +02:00
|
|
|
void search(const QString &string);
|
|
|
|
void removeSelectedItems();
|
2012-04-30 16:33:14 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void contextMenuEvent(QContextMenuEvent* event);
|
2014-05-03 15:08:47 +02:00
|
|
|
void mouseMoveEvent(QMouseEvent* event);
|
|
|
|
void mousePressEvent(QMouseEvent* event);
|
|
|
|
void mouseReleaseEvent(QMouseEvent* event);
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent* event);
|
2012-04-30 16:33:14 +02:00
|
|
|
void keyPressEvent(QKeyEvent* event);
|
2014-05-03 15:08:47 +02:00
|
|
|
|
2012-04-30 16:33:14 +02:00
|
|
|
void drawRow(QPainter* painter, const QStyleOptionViewItem &options, const QModelIndex &index) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
History* m_history;
|
2014-05-03 15:08:47 +02:00
|
|
|
HistoryFilterModel* m_filter;
|
2012-04-30 16:33:14 +02:00
|
|
|
HeaderView* m_header;
|
2014-05-03 15:08:47 +02:00
|
|
|
ViewType m_type;
|
2012-04-30 16:33:14 +02:00
|
|
|
};
|
|
|
|
|
2014-05-03 15:08:47 +02:00
|
|
|
#endif // HISTORYTREEVIEW_H
|