-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaylistmodel.cpp
226 lines (188 loc) · 7.15 KB
/
playlistmodel.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include "playlistmodel.h"
#include <QFileInfo>
#include <QUrl>
#include <QMediaPlaylist>
#include <QStringListModel>
#include <QMimeData>
#include <QDataStream>
PlaylistModel::PlaylistModel(QObject *parent)
: QAbstractItemModel(parent)
{
// setAcceptDrops(true);
}
PlaylistModel::~PlaylistModel()
{
}
int PlaylistModel::rowCount(const QModelIndex &parent) const
{
return m_playlist && !parent.isValid() ? m_playlist->mediaCount() : 0;
}
int PlaylistModel::columnCount(const QModelIndex &parent) const
{
return !parent.isValid() ? ColumnCount : 0;
}
QModelIndex PlaylistModel::index(int row, int column, const QModelIndex &parent) const
{
return m_playlist && !parent.isValid()
&& row >= 0 && row < m_playlist->mediaCount()
&& column >= 0 && column < ColumnCount
? createIndex(row, column)
: QModelIndex();
}
QModelIndex PlaylistModel::parent(const QModelIndex &child) const
{
Q_UNUSED(child);
return QModelIndex();
}
QVariant PlaylistModel::data(const QModelIndex &index, int role) const
{
if (index.isValid() && role == Qt::DisplayRole) {
QVariant value = m_data[index];
if (!value.isValid() && index.column() == Title) {
QUrl location = m_playlist->media(index.row()).canonicalUrl();
return QFileInfo(location.path()).fileName();
}
return value;
}
return QVariant();
}
QMediaPlaylist *PlaylistModel::playlist() const
{
return m_playlist.data();
}
void PlaylistModel::setPlaylist(QMediaPlaylist *playlist)
{
if (m_playlist) {
disconnect(m_playlist.data(), &QMediaPlaylist::mediaAboutToBeInserted, this, &PlaylistModel::beginInsertItems);
disconnect(m_playlist.data(), &QMediaPlaylist::mediaInserted, this, &PlaylistModel::endInsertItems);
disconnect(m_playlist.data(), &QMediaPlaylist::mediaAboutToBeRemoved, this, &PlaylistModel::beginRemoveItems);
disconnect(m_playlist.data(), &QMediaPlaylist::mediaRemoved, this, &PlaylistModel::endRemoveItems);
disconnect(m_playlist.data(), &QMediaPlaylist::mediaChanged, this, &PlaylistModel::changeItems);
}
beginResetModel();
m_playlist.reset(playlist);
if (m_playlist) {
connect(m_playlist.data(), &QMediaPlaylist::mediaAboutToBeInserted, this, &PlaylistModel::beginInsertItems);
connect(m_playlist.data(), &QMediaPlaylist::mediaInserted, this, &PlaylistModel::endInsertItems);
connect(m_playlist.data(), &QMediaPlaylist::mediaAboutToBeRemoved, this, &PlaylistModel::beginRemoveItems);
connect(m_playlist.data(), &QMediaPlaylist::mediaRemoved, this, &PlaylistModel::endRemoveItems);
connect(m_playlist.data(), &QMediaPlaylist::mediaChanged, this, &PlaylistModel::changeItems);
}
endResetModel();
}
bool PlaylistModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
Q_UNUSED(role);
m_data[index] = value;
emit dataChanged(index, index);
return true;
}
void PlaylistModel::beginInsertItems(int start, int end)
{
qDebug("Inserting items %d, %d", start, end );
m_data.clear();
beginInsertRows(QModelIndex(), start, end);
}
void PlaylistModel::endInsertItems()
{
endInsertRows();
}
void PlaylistModel::beginRemoveItems(int start, int end)
{
qDebug("Deleting items %d, %d", start, end );
m_data.clear();
beginRemoveRows(QModelIndex(), start, end);
}
void PlaylistModel::endRemoveItems()
{
endInsertRows();
}
void PlaylistModel::changeItems(int start, int end)
{
m_data.clear();
emit dataChanged(index(start,0), index(end,ColumnCount));
}
Qt::DropActions PlaylistModel::supportedDropActions() const
{
return Qt::CopyAction | Qt::MoveAction;
}
Qt::ItemFlags PlaylistModel::flags(const QModelIndex &index) const
{
Qt::ItemFlags flags;
if (index.isValid())
flags = Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled;
else
flags = Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled | Qt::ItemIsEnabled;
return flags;
}
QStringList PlaylistModel::mimeTypes() const
{
QStringList types;
types << "video/mp4";
return types;
}
QMimeData *PlaylistModel::mimeData(const QModelIndexList &indexes) const
{
QMimeData *mimeData = new QMimeData();
QByteArray encodedData;
QDataStream stream(&encodedData, QIODevice::WriteOnly);
foreach (QModelIndex index, indexes) {
if (index.isValid()) {
QString text = data(index, Qt::DisplayRole).toString();
stream << text;
}
}
mimeData->setData("video/mp4", encodedData);
return mimeData;
}
bool PlaylistModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent)
{
// qDebug() << "Parent is: " << parent.row() << endl;
//// qDebug() << "New row: " << row << endl;
//// if (action == Qt::IgnoreAction)
//// return true;
//// if (!data->hasFormat("video/mp4"))
//// return false;
////// if (column > 0)
////// return false;
// int beginRow;
// if (row != -1)
// beginRow = row;
// else if (parent.isValid())
// beginRow = parent.row();
// else
// beginRow = rowCount(QModelIndex());
// QByteArray encodedData = data->data("video/mp4");
//// qDebug() << data-
// QDataStream stream(&encodedData, QIODevice::ReadOnly);
// QStringList newItems;
// int rows = 0;
// while (!stream.atEnd()) {
// QString text;
// stream >> text;
// newItems << text;
// ++rows;
// }
// // Rows у нас всегда 1 т.к можем выбрать одну сука за раз
// // beginRow это новая позиция
// qDebug() << "InsertRows (beginRow, rows): " << beginRow << rows << endl;
//// insertRows(beginRow, rows, QModelIndex());
// // В поле text хранится название нового видоса
// foreach (QString text, newItems) {
//// beginMoveRows(QModelIndex(), beginRow, beginRow, QModelIndex(), beginRow);
//// endMoveRows();
//// beginInsertRows(QModelIndex(), beginRow, beginRow+rows-1);
//// endInsertRows();
//// beginInsertRows(parent.parent(), beginRow, beginRow);
//// endInsertRows();
//// changeItems(beginRow, beginRow);
// //insertRow(beginRow, text);
//// QModelIndex idx = index(beginRow, 0, QModelIndex());
//// qDebug() << idx.row();
//// bool flg = setData(idx, text);
// //qDebug() << flg;
//// beginRow++;
// }
// return true;
//// //beginInsertItems(row, row);
}