Files
cantata/models/playqueuemodel.h

132 lines
4.3 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2013 Craig Drummond <craig.p.drummond@gmail.com>
*
*/
/*
* Copyright (c) 2008 Sander Knopper (sander AT knopper DOT tk) and
* Roeland Douma (roeland AT rullzer DOT com)
*
* This file is part of QtMPC.
*
* QtMPC 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) any later version.
*
* QtMPC 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 QtMPC. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PLAYQUEUEMODEL_H
#define PLAYQUEUEMODEL_H
#include <QList>
#include <QStringList>
#include <QSet>
#include <QAbstractItemModel>
#include "song.h"
#include "mpdstatus.h"
#include "config.h"
class StreamFetcher;
class PlayQueueModel : public QAbstractItemModel
{
Q_OBJECT
public:
enum Columns
{
COL_STATUS,
COL_TRACK,
COL_DISC,
COL_TITLE,
COL_ARTIST,
COL_ALBUM,
COL_LENGTH,
COL_YEAR,
COL_GENRE,
COL_PRIO,
COL_COUNT
};
static const QLatin1String constMoveMimeType;
static const QLatin1String constFileNameMimeType;
static const QLatin1String constUriMimeType;
static void encode(QMimeData &mimeData, const QString &mime, const QStringList &values);
static QStringList decode(const QMimeData &mimeData, const QString &mime);
static QString headerText(int col);
PlayQueueModel(QObject *parent = 0);
~PlayQueueModel();
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const;
QModelIndex parent(const QModelIndex &idx) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &) const { return COL_COUNT; }
QVariant data(const QModelIndex &, int) const;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
void updateCurrentSong(quint32 id);
qint32 getIdByRow(qint32 row) const;
qint32 getSongId(const QString &file) const;
// qint32 getPosByRow(qint32 row) const;
qint32 getRowById(qint32 id) const;
Song getSongByRow(const qint32 row) const;
Qt::DropActions supportedDropActions() const;
Qt::ItemFlags flags(const QModelIndex &index) 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);
QSet<qint32> getSongIdSet();
QStringList filenames();
void clear();
qint32 currentSong() const { return currentSongId; }
qint32 currentSongRow() const;
void setState(MPDState st);
void update(const QList<Song> &songList);
void setStopAfterTrack(qint32 track);
void clearStopAfterTrack() { setStopAfterTrack(-1); }
public Q_SLOTS:
void addItems(const QStringList &items, int row, bool replace, quint8 priority);
void addItems(const QStringList &items, bool replace, quint8 priority) { addItems(items, -1, replace, priority); }
void addFiles(const QStringList &filenames, int row, bool replace, quint8 priority);
void prioritySet(const QList<qint32> &ids, quint8 priority);
void stats();
private Q_SLOTS:
void stopAfterCurrentChanged(bool afterCurrent);
Q_SIGNALS:
void stop(bool afterCurrent);
void clearStopAfter();
void filesAdded(const QStringList filenames, const quint32 row, const quint32 size, bool replace, quint8 priority);
void move(const QList<quint32> &items, const quint32 row, const quint32 size);
void statsUpdated(int songs, quint32 time);
void fetchingStreams();
void streamsFetched();
private:
QList<Song> songs;
QSet<qint32> ids;
qint32 currentSongId;
mutable qint32 currentSongRowNum;
StreamFetcher *fetcher;
MPDState mpdState;
quint32 dropAdjust;
bool stopAfterCurrent;
qint32 stopAfterTrackId;
};
#endif