94 lines
2.8 KiB
C++
94 lines
2.8 KiB
C++
/*
|
|
* Cantata
|
|
*
|
|
* Copyright (c) 2011-2013 Craig Drummond <craig.p.drummond@gmail.com>
|
|
*
|
|
* ----
|
|
*
|
|
* 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) any later version.
|
|
*
|
|
* 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; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
#ifndef ONLINE_SERVICES_MODEL_H
|
|
#define ONLINE_SERVICES_MODEL_H
|
|
|
|
#include <QSet>
|
|
#include "song.h"
|
|
#include "config.h"
|
|
#include "multimusicmodel.h"
|
|
#include "musiclibraryproxymodel.h"
|
|
|
|
class Device;
|
|
class OnlineService;
|
|
class OnlineDevice;
|
|
class MusicLibraryItem;
|
|
|
|
class OnlineServicesModel : public MultiMusicModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static QString constUdiPrefix;
|
|
static OnlineServicesModel * self();
|
|
|
|
OnlineServicesModel(QObject *parent = 0);
|
|
~OnlineServicesModel();
|
|
QModelIndex serviceIndex(const OnlineService *srv) const;
|
|
bool hasChildren(const QModelIndex &index) const;
|
|
bool canFetchMore(const QModelIndex &index) const;
|
|
void fetchMore(const QModelIndex &index);
|
|
QVariant data(const QModelIndex &, int) const;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
void clear();
|
|
OnlineService * service(const QString &name);
|
|
bool isEnabled() const { return enabled; }
|
|
void setEnabled(bool e);
|
|
void stop();
|
|
QMimeData * mimeData(const QModelIndexList &indexes) const;
|
|
void setSearch(const QString &serviceName, const QString &text);
|
|
Device *device(const QString &udi);
|
|
Action * configureAct() const { return configureAction; }
|
|
Action * refreshAct() const { return refreshAction; }
|
|
|
|
public Q_SLOTS:
|
|
void setArtistImage(const Song &song, const QImage &img);
|
|
void setCover(const Song &song, const QImage &img, const QString &fileName);
|
|
void stateChanged(const QString &name, bool state);
|
|
|
|
private:
|
|
OnlineService * addService(const QString &name);
|
|
void removeService(const QString &name);
|
|
void updateItemMenu();
|
|
void load();
|
|
void setBusy(const QString &serviceName, bool b);
|
|
|
|
Q_SIGNALS:
|
|
void error(const QString &text);
|
|
void updated(const QModelIndex &idx);
|
|
void busy(bool);
|
|
|
|
private:
|
|
bool enabled;
|
|
OnlineDevice *dev;
|
|
Action *configureAction;
|
|
Action *refreshAction;
|
|
Action *connectAction;
|
|
Action *disconnectAction;
|
|
QSet<QString> busyServices;
|
|
|
|
friend class OnlineService;
|
|
};
|
|
|
|
#endif
|