/* This file is part of Clementine. Copyright 2011, Paweł Bara Copyright 2011, David Sansome Copyright 2014, Krzysztof Sobiecki Copyright 2014, John Maguire 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 . */ #ifndef COVERS_COVERPROVIDER_H_ #define COVERS_COVERPROVIDER_H_ #include #include "albumcoverfetcher.h" #include "coverproviders.h" class QNetworkReply; // Each implementation of this interface downloads covers from one online // service. There are no limitations on what this service might be - last.fm, // Amazon, Google Images - you name it. class CoverProvider : public QObject { Q_OBJECT public: explicit CoverProvider(const QString& name, const bool& fetchall, QObject* parent); // A name (very short description) of this provider, like "last.fm". QString name() const { return name_; } bool fetchall() const { return fetchall_; } // Starts searching for covers matching the given query text. Returns true // if the query has been started, or false if an error occurred. The provider // should remember the ID and emit it along with the result when it finishes. virtual bool StartSearch(const QString& artist, const QString& album, int id) = 0; virtual void CancelSearch(int id) {} signals: void SearchFinished(int id, const QList& results); private: QString name_; bool fetchall_; }; #endif // COVERS_COVERPROVIDER_H_