2019-04-18 15:03:01 +02:00
|
|
|
/* This file was part of Clementine.
|
|
|
|
Copyright 2012, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
Strawberry 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MOODBARCONTROLLER_H
|
|
|
|
#define MOODBARCONTROLLER_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QByteArray>
|
2020-02-09 02:29:35 +01:00
|
|
|
#include <QString>
|
2019-04-18 15:03:01 +02:00
|
|
|
#include <QUrl>
|
|
|
|
|
|
|
|
class Application;
|
|
|
|
class MoodbarPipeline;
|
|
|
|
class Song;
|
|
|
|
|
|
|
|
class MoodbarController : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-01-26 16:48:04 +01:00
|
|
|
explicit MoodbarController(Application *app, QObject *parent = nullptr);
|
2019-04-18 15:03:01 +02:00
|
|
|
|
2021-01-25 22:35:56 +01:00
|
|
|
void ReloadSettings();
|
|
|
|
|
2019-04-18 15:03:01 +02:00
|
|
|
signals:
|
2021-01-26 16:48:04 +01:00
|
|
|
void CurrentMoodbarDataChanged(QByteArray data);
|
2019-04-18 15:03:01 +02:00
|
|
|
|
|
|
|
private slots:
|
2021-01-26 16:48:04 +01:00
|
|
|
void CurrentSongChanged(const Song &song);
|
2019-04-18 15:03:01 +02:00
|
|
|
void PlaybackStopped();
|
2021-01-26 16:48:04 +01:00
|
|
|
void AsyncLoadComplete(MoodbarPipeline *pipeline, const QUrl &url);
|
2019-04-18 15:03:01 +02:00
|
|
|
|
|
|
|
private:
|
2021-01-26 16:48:04 +01:00
|
|
|
Application *app_;
|
2021-01-25 22:35:56 +01:00
|
|
|
bool enabled_;
|
2019-04-18 15:03:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MOODBARCONTROLLER_H
|