New context with albums and lyrics +++ much more
* Added new lyrics provider with lyrics from AudD and API Seeds * New improved context widget with albums and lyrics * Fixed playing and context widget getting stuck in play mode when there was an error * Changed icons for artists in collection, tidal and cover manager * Removed "search" icon from "Search automatically" checkbox (right click) that looked ugly * Removed some unused widgets from the src/widgets directory * Fixed initial size of window and side panel * Fixed saving window size correctly
This commit is contained in:
69
src/lyrics/lyricsfetchersearch.h
Normal file
69
src/lyrics/lyricsfetchersearch.h
Normal file
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2018, 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 LYRICSFETCHERSEARCH_H
|
||||
#define LYRICSFETCHERSEARCH_H
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <QtGlobal>
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QMap>
|
||||
|
||||
#include "lyricsfetcher.h"
|
||||
|
||||
class LyricsProvider;
|
||||
class LyricsProviders;
|
||||
|
||||
class LyricsFetcherSearch : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
LyricsFetcherSearch(const LyricsSearchRequest &request, QObject *parent);
|
||||
|
||||
void Start(LyricsProviders *cover_providers);
|
||||
void Cancel();
|
||||
|
||||
signals:
|
||||
void SearchFinished(quint64, const LyricsSearchResults &results);
|
||||
void LyricsFetched(quint64, const QString &lyrics);
|
||||
|
||||
private slots:
|
||||
void ProviderSearchFinished(quint64 id, const QList<LyricsSearchResult> &results);
|
||||
void TerminateSearch();
|
||||
|
||||
private:
|
||||
void AllProvidersFinished();
|
||||
|
||||
void SendBestImage();
|
||||
|
||||
private:
|
||||
static const int kSearchTimeoutMs;
|
||||
|
||||
LyricsSearchRequest request_;
|
||||
LyricsSearchResults results_;
|
||||
QMap<int, LyricsProvider*> pending_requests_;
|
||||
bool cancel_requested_;
|
||||
|
||||
};
|
||||
|
||||
#endif // LYRICSFETCHERSEARCH_H
|
||||
Reference in New Issue
Block a user