2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2018-08-29 21:42:24 +02:00
|
|
|
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
|
2018-02-27 18:06:05 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
#ifndef LYRICSPROVIDER_H
|
|
|
|
#define LYRICSPROVIDER_H
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QObject>
|
2018-08-29 21:42:24 +02:00
|
|
|
#include <QList>
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QString>
|
|
|
|
|
2019-06-23 18:34:03 +02:00
|
|
|
#include "lyricsfetcher.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
class LyricsProvider : public QObject {
|
2018-02-27 18:06:05 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2019-06-23 16:45:00 +02:00
|
|
|
public:
|
2018-08-29 21:42:24 +02:00
|
|
|
explicit LyricsProvider(const QString &name, QObject *parent);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-06-23 16:45:00 +02:00
|
|
|
typedef QPair<QString, QString> Param;
|
|
|
|
typedef QList<Param> ParamList;
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
QString name() const { return name_; }
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-06-23 18:34:03 +02:00
|
|
|
virtual bool StartSearch(const QString &artist, const QString &album, const QString &title, const quint64 id) = 0;
|
|
|
|
virtual void CancelSearch(const quint64 id) {}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-06-23 16:45:00 +02:00
|
|
|
signals:
|
2019-06-23 18:34:03 +02:00
|
|
|
void SearchFinished(const quint64 id, const LyricsSearchResults &results);
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2019-06-23 16:45:00 +02:00
|
|
|
private:
|
2018-08-29 21:42:24 +02:00
|
|
|
QString name_;
|
|
|
|
|
2018-02-27 18:06:05 +01:00
|
|
|
};
|
|
|
|
|
2018-08-29 21:42:24 +02:00
|
|
|
#endif // LYRICSPROVIDER_H
|