mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
[Bookmarks] Added BookmarksTreeView class
This commit is contained in:
parent
da970b274d
commit
181de48f68
171
src/lib/bookmarks/bookmarkstreeview.cpp
Normal file
171
src/lib/bookmarks/bookmarkstreeview.cpp
Normal file
|
@ -0,0 +1,171 @@
|
|||
/* ============================================================
|
||||
* QupZilla - WebKit based browser
|
||||
* Copyright (C) 2014 David Rosca <nowrep@gmail.com>
|
||||
*
|
||||
* 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/>.
|
||||
* ============================================================ */
|
||||
#include "bookmarkstreeview.h"
|
||||
#include "bookmarksmodel.h"
|
||||
#include "bookmarkitem.h"
|
||||
#include "bookmarks.h"
|
||||
#include "mainapplication.h"
|
||||
|
||||
#include <QHeaderView>
|
||||
#include <QMouseEvent>
|
||||
|
||||
BookmarksTreeView::BookmarksTreeView(QWidget* parent)
|
||||
: QTreeView(parent)
|
||||
, m_bookmarks(mApp->bookmarks())
|
||||
, m_model(m_bookmarks->model())
|
||||
{
|
||||
setModel(m_model);
|
||||
setDragEnabled(true);
|
||||
setAcceptDrops(true);
|
||||
setDropIndicatorShown(true);
|
||||
setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||
header()->resizeSections(QHeaderView::ResizeToContents);
|
||||
|
||||
restoreExpandedState(QModelIndex());
|
||||
|
||||
connect(this, SIGNAL(expanded(QModelIndex)), this, SLOT(indexExpanded(QModelIndex)));
|
||||
connect(this, SIGNAL(collapsed(QModelIndex)), this, SLOT(indexCollapsed(QModelIndex)));
|
||||
connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection,QItemSelection)), this, SLOT(selectionChanged()));
|
||||
|
||||
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(createContextMenu(QPoint)));
|
||||
}
|
||||
|
||||
QList<BookmarkItem*> BookmarksTreeView::selectedBookmarks() const
|
||||
{
|
||||
QList<BookmarkItem*> items;
|
||||
|
||||
foreach (const QModelIndex &index, selectionModel()->selectedRows()) {
|
||||
BookmarkItem* item = m_model->item(index);
|
||||
items.append(item);
|
||||
}
|
||||
|
||||
return items;
|
||||
}
|
||||
|
||||
void BookmarksTreeView::indexExpanded(const QModelIndex &parent)
|
||||
{
|
||||
BookmarkItem* item = m_model->item(parent);
|
||||
item->setExpanded(true);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::indexCollapsed(const QModelIndex &parent)
|
||||
{
|
||||
BookmarkItem* item = m_model->item(parent);
|
||||
item->setExpanded(false);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::selectionChanged()
|
||||
{
|
||||
emit bookmarksSelected(selectedBookmarks());
|
||||
}
|
||||
|
||||
void BookmarksTreeView::createContextMenu(const QPoint &point)
|
||||
{
|
||||
QModelIndex index = indexAt(point);
|
||||
BookmarkItem* item = index.isValid() ? m_model->item(index) : 0;
|
||||
emit contextMenuRequested(item);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::restoreExpandedState(const QModelIndex &parent)
|
||||
{
|
||||
for (int i = 0; i < m_model->rowCount(parent); ++i) {
|
||||
QModelIndex index = m_model->index(i, 0, parent);
|
||||
BookmarkItem* item = m_model->item(index);
|
||||
setExpanded(index, item->isExpanded());
|
||||
restoreExpandedState(index);
|
||||
}
|
||||
}
|
||||
|
||||
void BookmarksTreeView::rowsInserted(const QModelIndex &parent, int start, int end)
|
||||
{
|
||||
restoreExpandedState(parent);
|
||||
QTreeView::rowsInserted(parent, start, end);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::mousePressEvent(QMouseEvent* event)
|
||||
{
|
||||
QModelIndex index = indexAt(event->pos());
|
||||
|
||||
if (index.isValid()) {
|
||||
BookmarkItem* item = m_model->item(index);
|
||||
Qt::MouseButtons buttons = event->buttons();
|
||||
Qt::KeyboardModifiers modifiers = QApplication::keyboardModifiers();
|
||||
|
||||
if (buttons == Qt::LeftButton && modifiers == Qt::ShiftModifier) {
|
||||
emit bookmarkShiftActivated(item);
|
||||
}
|
||||
else if (buttons == Qt::MiddleButton || modifiers == Qt::ControlModifier) {
|
||||
emit bookmarkCtrlActivated(item);
|
||||
}
|
||||
}
|
||||
|
||||
QTreeView::mousePressEvent(event);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::mouseDoubleClickEvent(QMouseEvent* event)
|
||||
{
|
||||
QModelIndex index = indexAt(event->pos());
|
||||
|
||||
if (index.isValid()) {
|
||||
BookmarkItem* item = m_model->item(index);
|
||||
Qt::MouseButtons buttons = event->buttons();
|
||||
Qt::KeyboardModifiers modifiers = QApplication::keyboardModifiers();
|
||||
|
||||
if (buttons == Qt::LeftButton && modifiers == Qt::NoModifier) {
|
||||
emit bookmarkActivated(item);
|
||||
}
|
||||
else if (buttons == Qt::LeftButton && modifiers == Qt::ShiftModifier) {
|
||||
emit bookmarkShiftActivated(item);
|
||||
}
|
||||
}
|
||||
|
||||
QTreeView::mouseDoubleClickEvent(event);
|
||||
}
|
||||
|
||||
void BookmarksTreeView::keyPressEvent(QKeyEvent* event)
|
||||
{
|
||||
if (selectionModel()->selectedRows().count() == 1) {
|
||||
QModelIndex index = selectionModel()->selectedRows().first();
|
||||
BookmarkItem* item = m_model->item(index);
|
||||
|
||||
switch (event->key()) {
|
||||
case Qt::Key_Return:
|
||||
case Qt::Key_Enter:
|
||||
if (item->type() == BookmarkItem::Folder && event->modifiers() == Qt::NoModifier) {
|
||||
setExpanded(index, !isExpanded(index));
|
||||
}
|
||||
else {
|
||||
Qt::KeyboardModifiers modifiers = event->modifiers();
|
||||
|
||||
if (modifiers == Qt::NoModifier) {
|
||||
emit bookmarkActivated(item);
|
||||
}
|
||||
else if (modifiers == Qt::ControlModifier) {
|
||||
emit bookmarkCtrlActivated(item);
|
||||
}
|
||||
else if (modifiers == Qt::ShiftModifier) {
|
||||
emit bookmarkShiftActivated(item);
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
QTreeView::keyPressEvent(event);
|
||||
}
|
68
src/lib/bookmarks/bookmarkstreeview.h
Normal file
68
src/lib/bookmarks/bookmarkstreeview.h
Normal file
|
@ -0,0 +1,68 @@
|
|||
/* ============================================================
|
||||
* QupZilla - WebKit based browser
|
||||
* Copyright (C) 2014 David Rosca <nowrep@gmail.com>
|
||||
*
|
||||
* 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/>.
|
||||
* ============================================================ */
|
||||
#ifndef BOOKMARKSTREEVIEW_H
|
||||
#define BOOKMARKSTREEVIEW_H
|
||||
|
||||
#include <QTreeView>
|
||||
|
||||
#include "qz_namespace.h"
|
||||
|
||||
class Bookmarks;
|
||||
class BookmarkItem;
|
||||
class BookmarksModel;
|
||||
|
||||
class QT_QUPZILLA_EXPORT BookmarksTreeView : public QTreeView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit BookmarksTreeView(QWidget* parent = 0);
|
||||
|
||||
QList<BookmarkItem*> selectedBookmarks() const;
|
||||
|
||||
signals:
|
||||
// Open bookmark in current tab
|
||||
void bookmarkActivated(BookmarkItem* item);
|
||||
// Open bookmark in new tab
|
||||
void bookmarkCtrlActivated(BookmarkItem* item);
|
||||
// Open bookmark in new window
|
||||
void bookmarkShiftActivated(BookmarkItem* item);
|
||||
|
||||
void contextMenuRequested(BookmarkItem* item);
|
||||
void bookmarksSelected(QList<BookmarkItem*> items);
|
||||
|
||||
private slots:
|
||||
void indexExpanded(const QModelIndex &parent);
|
||||
void indexCollapsed(const QModelIndex &parent);
|
||||
|
||||
void selectionChanged();
|
||||
void createContextMenu(const QPoint &point);
|
||||
|
||||
private:
|
||||
void restoreExpandedState(const QModelIndex &parent);
|
||||
void rowsInserted(const QModelIndex &parent, int start, int end);
|
||||
|
||||
void mousePressEvent(QMouseEvent* event);
|
||||
void mouseDoubleClickEvent(QMouseEvent* event);
|
||||
void keyPressEvent(QKeyEvent* event);
|
||||
|
||||
Bookmarks* m_bookmarks;
|
||||
BookmarksModel* m_model;
|
||||
|
||||
};
|
||||
|
||||
#endif // BOOKMARKSTREEVIEW_H
|
Loading…
Reference in New Issue
Block a user