-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlaylistBrowserModel.cpp
109 lines (91 loc) · 3.29 KB
/
PlaylistBrowserModel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include <QIODevice>
#include "PlaylistBrowserModel.h"
PlaylistBrowserModel::PlaylistBrowserModel(QObject *parent, DBApi *Api) : QAbstractListModel(parent), DBWidget(nullptr, Api) {
connect(api, SIGNAL(playlistMoved(int,int)), this, SLOT(onPlaylistMoved(int,int)));
connect(api, SIGNAL(playlistCreated()), this, SLOT(onPlaylistCreated()));
connect(api, SIGNAL(playlistRenamed(int)), this, SLOT(onPlaylistRenamed(int)));
connect(api, SIGNAL(playlistRemoved(int)), this, SLOT(onPlaylistRemoved(int)));
}
PlaylistBrowserModel::~PlaylistBrowserModel() {
}
int PlaylistBrowserModel::rowCount(const QModelIndex &parent) const {
return DBAPI->plt_get_count();
}
QVariant PlaylistBrowserModel::data(const QModelIndex &index, int role) const {
if (index.isValid()) {
if (role == Qt::DisplayRole || role == PlaylistNameRole) {
if (index.row() <= rowCount(index)) {
ddb_playlist_t *plt = DBAPI->plt_get_for_idx(index.row());
if (plt) {
char buf[512];
DBAPI->plt_get_title(plt, buf, 512);
DBAPI->plt_unref(plt);
return QVariant(QString(buf));
}
}
}
else {
// TODO implement other roles (playlistItems, playlistLength)
}
}
return QVariant();
}
void PlaylistBrowserModel::onPlaylistMoved(int plt, int before) {
beginResetModel();
endResetModel();
return; // TODO
beginMoveRows(QModelIndex(),plt,plt, QModelIndex(), before);
endMoveRows();
}
void PlaylistBrowserModel::onPlaylistCreated() {
// unsure which row playlist is added, update all
beginResetModel();
endResetModel();
//beginInsertRows()
}
void PlaylistBrowserModel::onPlaylistRenamed(int plt) {
emit dataChanged(index(plt),index(plt));
}
void PlaylistBrowserModel::onPlaylistRemoved(int plt) {
beginRemoveRows(QModelIndex(),plt,plt);
endRemoveRows();
}
Qt::ItemFlags PlaylistBrowserModel::flags(const QModelIndex &index) const {
Qt::ItemFlags defaultFlags = QAbstractItemModel::flags(index);
if (index.isValid()) {
return Qt::ItemIsDragEnabled | defaultFlags;
}
else {
return Qt::ItemIsDropEnabled | defaultFlags;
}
}
Qt::DropActions PlaylistBrowserModel::supportedDropActions() const {
return Qt::MoveAction;
}
bool PlaylistBrowserModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) {
QByteArray encoded = data->data("application/x-qabstractitemmodeldatalist");
QDataStream stream(&encoded, QIODevice::ReadOnly);
// put on end if not valid
if (row == -1) {
row = rowCount(QModelIndex());
}
while (!stream.atEnd()) {
int nrow, ncol;
QMap<int, QVariant> roleDataMap;
stream >> nrow >> ncol >> roleDataMap;
// shift row by one if dropping from above
if (nrow < row) {
row--;
}
api->movePlaylist(nrow,row);
}
return true;
}
QHash<int, QByteArray> PlaylistBrowserModel::roleNames() const {
QHash<int, QByteArray> roles;
roles[Qt::DisplayRole] = "display";
roles[PlaylistNameRole] = "playlistName";
roles[PlaylistItemsRole] = "playlistItems";
roles[PlaylistLengthRole] = "playlistLength";
return roles;
}