mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
97 lines
3.4 KiB
C++
97 lines
3.4 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2005 Daniel Teske <teske@squorn.de>
|
|
Copyright (C) 2010 David Faure <faure@kde.org>
|
|
|
|
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 2 of
|
|
the License, or (at your option) version 3.
|
|
|
|
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 BOOKMARKMODEL_MODEL_H
|
|
#define BOOKMARKMODEL_MODEL_H
|
|
|
|
#include <QtCore/QAbstractItemModel>
|
|
#include "kbookmarkmodel_export.h"
|
|
|
|
class CommandHistory;
|
|
class KBookmarkGroup;
|
|
class KBookmarkManager;
|
|
class KBookmark;
|
|
|
|
class KBOOKMARKMODEL_EXPORT KBookmarkModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
enum ColumnIds
|
|
{
|
|
NameColumnId = 0,
|
|
UrlColumnId = 1,
|
|
CommentColumnId = 2,
|
|
StatusColumnId = 3,
|
|
LastColumnId = 3,
|
|
NoOfColumnIds = LastColumnId+1
|
|
};
|
|
|
|
public:
|
|
KBookmarkModel(const KBookmark& root, CommandHistory* commandHistory, QObject* parent = 0);
|
|
void setRoot(const KBookmark& root);
|
|
|
|
virtual ~KBookmarkModel();
|
|
|
|
KBookmarkManager* bookmarkManager();
|
|
CommandHistory* commandHistory();
|
|
|
|
enum AdditionalRoles {
|
|
// Note: use printf "0x%08X\n" $(($RANDOM*$RANDOM))
|
|
// to define additional roles.
|
|
KBookmarkRole = 0x161BEC30
|
|
};
|
|
|
|
//reimplemented functions
|
|
virtual QVariant data(const QModelIndex &index, int role) const;
|
|
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
virtual QVariant headerData(int section, Qt::Orientation, int role = Qt::DisplayRole) const;
|
|
virtual QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
|
virtual QModelIndex parent(const QModelIndex &index) const;
|
|
virtual bool setData(const QModelIndex &index, const QVariant &value, int role);
|
|
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
virtual void resetModel();
|
|
|
|
QModelIndex indexForBookmark(const KBookmark& bk) const;
|
|
KBookmark bookmarkForIndex(const QModelIndex& index) const;
|
|
void emitDataChanged(const KBookmark& bk);
|
|
|
|
/// Call this before inserting items into the bookmark group
|
|
void beginInsert(const KBookmarkGroup& group, int first, int last);
|
|
/// Call this after item insertion is done
|
|
void endInsert();
|
|
|
|
/// Remove the bookmark
|
|
void removeBookmark(KBookmark bookmark);
|
|
|
|
//drag and drop
|
|
virtual bool dropMimeData(const QMimeData * data, Qt::DropAction action, int row, int column, const QModelIndex & parent);
|
|
virtual QStringList mimeTypes() const;
|
|
virtual QMimeData * mimeData(const QModelIndexList & indexes) const;
|
|
virtual Qt::DropActions supportedDropActions() const;
|
|
|
|
public Q_SLOTS:
|
|
void notifyManagers(const KBookmarkGroup& grp);
|
|
|
|
private:
|
|
class Private;
|
|
Private * const d;
|
|
Q_PRIVATE_SLOT(d, void _kd_slotBookmarksChanged(const QString &groupAddress, const QString &caller = QString()))
|
|
};
|
|
|
|
#endif
|