1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-04 21:35:03 +02:00

64 lines
1.7 KiB
C++
Raw Normal View History

2016-12-10 22:39:53 +00:00
#include "foldermodel.h"
using namespace jop;
2016-12-29 20:19:00 +01:00
FolderModel::FolderModel(Database &database) : QAbstractListModel(), folderCollection_(database, 0, "title") {
connect(&folderCollection_, SIGNAL(changed(int,int,const QStringList&)), this, SLOT(folderCollection_changed(int,int,const QStringList&)));
2016-12-10 22:39:53 +00:00
}
int FolderModel::rowCount(const QModelIndex & parent) const {
Q_UNUSED(parent);
2016-12-29 20:19:00 +01:00
return folderCollection_.count();
2016-12-10 22:39:53 +00:00
}
// NOTE: to lazy load - send back "Loading..." if item not currently loaded
// queue the item for loading.
// Then batch load them a bit later.
QVariant FolderModel::data(const QModelIndex & index, int role) const {
2016-12-29 20:19:00 +01:00
Folder folder = folderCollection_.at(index.row());
2016-12-10 22:39:53 +00:00
if (role == Qt::DisplayRole) {
return QVariant(folder.title());
}
2016-12-11 16:09:39 +00:00
if (role == IdRole) {
return QVariant(folder.id());
}
2016-12-10 22:39:53 +00:00
return QVariant();
}
2016-12-29 20:19:00 +01:00
bool FolderModel::setData(const QModelIndex &index, const QVariant &value, int role) {
Folder folder = folderCollection_.at(index.row());
if (role == Qt::EditRole) {
QStringList fields;
fields << "title";
VariantVector values;
values << value;
folderCollection_.update(folder.id(), fields, values);
return true;
}
qWarning() << "Unsupported role" << role;
return false;
}
bool FolderModel::setData(int index, const QVariant &value, int role) {
return setData(this->index(index), value, role);
}
2016-12-10 22:39:53 +00:00
QHash<int, QByteArray> FolderModel::roleNames() const {
QHash<int, QByteArray> roles = QAbstractItemModel::roleNames();
roles[TitleRole] = "title";
2016-12-11 16:09:39 +00:00
roles[IdRole] = "uuid";
roles[RawRole] = "raw";
2016-12-10 22:39:53 +00:00
return roles;
}
2016-12-29 20:19:00 +01:00
void FolderModel::folderCollection_changed(int from, int to, const QStringList& fields) {
QVector<int> roles;
roles << Qt::DisplayRole;
emit dataChanged(this->index(from), this->index(to), roles);
2016-12-10 22:39:53 +00:00
}