/* ============================================================ * QupZilla - WebKit based browser * Copyright (C) 2014 David Rosca * * 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 . * ============================================================ */ #ifndef BOOKMARKSMODEL_H #define BOOKMARKSMODEL_H #include #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, ExpandedRole = Qt::UserRole + 6, 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; BookmarkItem* item(const QModelIndex &index) const; #if 0 bool removeRows(int row, int count, const QModelIndex &parent); #endif private slots: void bookmarkChanged(BookmarkItem* item); private: Bookmarks* m_bookmarks; }; #endif // BOOKMARKSMODEL_H