2018-12-23 18:54:27 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
2021-03-20 21:14:47 +01:00
|
|
|
* Copyright 2018-2021, Jonas Kvinge <jonas@jkvinge.net>
|
2018-12-23 18:54:27 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SCROBBLERSETTINGSPAGE_H
|
|
|
|
#define SCROBBLERSETTINGSPAGE_H
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2018-12-23 18:54:27 +01:00
|
|
|
#include "settingspage.h"
|
|
|
|
|
2018-12-26 15:05:32 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
|
2023-07-21 05:55:24 +02:00
|
|
|
#include "core/shared_ptr.h"
|
|
|
|
|
2020-02-09 02:29:35 +01:00
|
|
|
class SettingsDialog;
|
2018-12-23 18:54:27 +01:00
|
|
|
class Ui_ScrobblerSettingsPage;
|
|
|
|
class AudioScrobbler;
|
|
|
|
class LastFMScrobbler;
|
|
|
|
class LibreFMScrobbler;
|
|
|
|
class ListenBrainzScrobbler;
|
|
|
|
|
|
|
|
class ScrobblerSettingsPage : public SettingsPage {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-06-20 19:04:08 +02:00
|
|
|
explicit ScrobblerSettingsPage(SettingsDialog *dialog, QWidget *parent = nullptr);
|
2020-06-15 21:55:05 +02:00
|
|
|
~ScrobblerSettingsPage() override;
|
2018-12-23 18:54:27 +01:00
|
|
|
|
|
|
|
static const char *kSettingsGroup;
|
|
|
|
|
2020-06-15 21:55:05 +02:00
|
|
|
void Load() override;
|
|
|
|
void Save() override;
|
2018-12-23 18:54:27 +01:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void LastFM_Login();
|
|
|
|
void LastFM_Logout();
|
2021-06-20 19:04:08 +02:00
|
|
|
void LastFM_AuthenticationComplete(const bool success, const QString &error = QString());
|
2018-12-23 18:54:27 +01:00
|
|
|
void LibreFM_Login();
|
|
|
|
void LibreFM_Logout();
|
2021-06-20 19:04:08 +02:00
|
|
|
void LibreFM_AuthenticationComplete(const bool success, const QString &error = QString());
|
2018-12-23 18:54:27 +01:00
|
|
|
void ListenBrainz_Login();
|
|
|
|
void ListenBrainz_Logout();
|
2021-06-20 19:04:08 +02:00
|
|
|
void ListenBrainz_AuthenticationComplete(const bool success, const QString &error = QString());
|
2018-12-23 18:54:27 +01:00
|
|
|
|
|
|
|
private:
|
2023-07-21 05:55:24 +02:00
|
|
|
SharedPtr<AudioScrobbler> scrobbler_;
|
|
|
|
SharedPtr<LastFMScrobbler> lastfmscrobbler_;
|
|
|
|
SharedPtr<LibreFMScrobbler> librefmscrobbler_;
|
|
|
|
SharedPtr<ListenBrainzScrobbler> listenbrainzscrobbler_;
|
2021-06-12 20:53:23 +02:00
|
|
|
Ui_ScrobblerSettingsPage *ui_;
|
2018-12-23 18:54:27 +01:00
|
|
|
|
|
|
|
bool lastfm_waiting_for_auth_;
|
|
|
|
bool librefm_waiting_for_auth_;
|
|
|
|
bool listenbrainz_waiting_for_auth_;
|
|
|
|
|
2021-06-20 19:04:08 +02:00
|
|
|
void LastFM_RefreshControls(const bool authenticated);
|
|
|
|
void LibreFM_RefreshControls(const bool authenticated);
|
|
|
|
void ListenBrainz_RefreshControls(const bool authenticated);
|
2018-12-23 18:54:27 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCROBBLERSETTINGSPAGE_H
|