2010-10-02 18:23:33 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
#ifndef SONGINFOPROVIDER_H
|
|
|
|
#define SONGINFOPROVIDER_H
|
2010-10-02 18:23:33 +02:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2010-10-09 14:39:49 +02:00
|
|
|
#include "collapsibleinfopane.h"
|
2010-10-10 18:09:20 +02:00
|
|
|
#include "core/song.h"
|
2010-10-09 14:39:49 +02:00
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
class SongInfoProvider : public QObject {
|
2010-10-02 18:23:33 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2010-10-10 18:46:35 +02:00
|
|
|
SongInfoProvider();
|
|
|
|
|
2010-10-10 18:09:20 +02:00
|
|
|
virtual void FetchInfo(int id, const Song& metadata) = 0;
|
2010-12-19 14:58:53 +01:00
|
|
|
virtual void Cancel(int id) {}
|
|
|
|
|
|
|
|
virtual QString name() const;
|
2010-10-02 18:23:33 +02:00
|
|
|
|
2010-10-10 18:46:35 +02:00
|
|
|
bool is_enabled() const { return enabled_; }
|
|
|
|
void set_enabled(bool enabled) { enabled_ = enabled; }
|
|
|
|
|
2010-10-02 18:23:33 +02:00
|
|
|
signals:
|
|
|
|
void ImageReady(int id, const QUrl& url);
|
2010-10-09 14:39:49 +02:00
|
|
|
void InfoReady(int id, const CollapsibleInfoPane::Data& data);
|
2010-10-09 15:34:28 +02:00
|
|
|
void Finished(int id);
|
2010-10-10 18:46:35 +02:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2010-10-10 18:46:35 +02:00
|
|
|
bool enabled_;
|
2010-10-02 18:23:33 +02:00
|
|
|
};
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
#endif // SONGINFOPROVIDER_H
|