strawberry-audio-player-win.../src/lyrics/musixmatchlyricsprovider.h

59 lines
1.7 KiB
C
Raw Normal View History

/*
* Strawberry Music Player
2021-03-20 21:14:47 +01:00
* Copyright 2020-2021, Jonas Kvinge <jonas@jkvinge.net>
*
* 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 MUSIXMATCHLYRICSPROVIDER_H
#define MUSIXMATCHLYRICSPROVIDER_H
#include "config.h"
#include <QtGlobal>
#include <QObject>
#include <QList>
#include <QVariant>
#include <QString>
#include "jsonlyricsprovider.h"
#include "lyricsfetcher.h"
class QNetworkReply;
2020-12-09 18:39:37 +01:00
class NetworkAccessManager;
class MusixmatchLyricsProvider : public JsonLyricsProvider {
Q_OBJECT
public:
2021-08-12 23:00:10 +02:00
explicit MusixmatchLyricsProvider(NetworkAccessManager *network, QObject *parent = nullptr);
2020-06-15 21:55:05 +02:00
~MusixmatchLyricsProvider() override;
2021-10-30 02:21:29 +02:00
bool StartSearch(const QString &artist, const QString &album, const QString &title, const int id) override;
void CancelSearch(const int id) override;
private:
2020-06-15 21:55:05 +02:00
void Error(const QString &error, const QVariant &debug = QVariant()) override;
private slots:
2021-10-30 02:21:29 +02:00
void HandleSearchReply(QNetworkReply *reply, const int id, const QString &artist, const QString &album, const QString &title);
private:
QList<QNetworkReply*> replies_;
};
#endif // MUSIXMATCHLYRICSPROVIDER_H