2014-02-07 22:48:30 +01:00
|
|
|
/* ============================================================
|
|
|
|
* 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 BOOKMARKSMODEL_H
|
|
|
|
#define BOOKMARKSMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
|
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
|
|
|
class Bookmarks;
|
|
|
|
class BookmarkItem;
|
|
|
|
|
|
|
|
class QT_QUPZILLA_EXPORT BookmarksModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum Roles {
|
|
|
|
TypeRole = Qt::UserRole + 1,
|
|
|
|
UrlRole = Qt::UserRole + 2,
|
|
|
|
TitleRole = Qt::UserRole + 3,
|
|
|
|
DescriptionRole = Qt::UserRole + 4,
|
|
|
|
KeywordRole = Qt::UserRole + 5,
|
2014-02-09 13:34:52 +01:00
|
|
|
VisitCountRole = Qt::UserRole + 6,
|
|
|
|
ExpandedRole = Qt::UserRole + 7,
|
|
|
|
SidebarExpandedRole = Qt::UserRole + 8,
|
2014-02-07 22:48:30 +01:00
|
|
|
MaxRole = ExpandedRole
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit BookmarksModel(Bookmarks* bookmarks, QObject* parent = 0);
|
|
|
|
|
|
|
|
void addBookmark(BookmarkItem* parent, int row, BookmarkItem* item);
|
|
|
|
void removeBookmark(BookmarkItem* item);
|
|
|
|
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
int rowCount(const QModelIndex &parent) const;
|
|
|
|
int columnCount(const QModelIndex &parent) const;
|
|
|
|
bool hasChildren(const QModelIndex &parent) const;
|
|
|
|
|
|
|
|
Qt::DropActions supportedDropActions() const;
|
|
|
|
QStringList mimeTypes() const;
|
|
|
|
QMimeData* mimeData(const QModelIndexList &indexes) const;
|
|
|
|
bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
|
|
|
|
|
|
|
|
QModelIndex parent(const QModelIndex &child) const;
|
|
|
|
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
QModelIndex index(BookmarkItem* item) const;
|
|
|
|
|
2014-02-08 18:14:38 +01:00
|
|
|
BookmarkItem* item(const QModelIndex &index) const;
|
|
|
|
|
2014-02-07 22:48:30 +01:00
|
|
|
private slots:
|
|
|
|
void bookmarkChanged(BookmarkItem* item);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Bookmarks* m_bookmarks;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BOOKMARKSMODEL_H
|