strawberry-audio-player-win.../src/settings/scrobblersettingspage.h

79 lines
2.3 KiB
C
Raw Normal View History

/*
* Strawberry Music Player
2021-03-20 21:14:47 +01:00
* Copyright 2018-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 SCROBBLERSETTINGSPAGE_H
#define SCROBBLERSETTINGSPAGE_H
#include <memory>
#include "settingspage.h"
2018-12-26 15:05:32 +01:00
#include <QObject>
#include <QString>
#include "core/shared_ptr.h"
2020-02-09 02:29:35 +01:00
class SettingsDialog;
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;
static const char *kSettingsGroup;
2020-06-15 21:55:05 +02:00
void Load() override;
void Save() override;
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());
void LibreFM_Login();
void LibreFM_Logout();
2021-06-20 19:04:08 +02:00
void LibreFM_AuthenticationComplete(const bool success, const QString &error = QString());
void ListenBrainz_Login();
void ListenBrainz_Logout();
2021-06-20 19:04:08 +02:00
void ListenBrainz_AuthenticationComplete(const bool success, const QString &error = QString());
private:
SharedPtr<AudioScrobbler> scrobbler_;
SharedPtr<LastFMScrobbler> lastfmscrobbler_;
SharedPtr<LibreFMScrobbler> librefmscrobbler_;
SharedPtr<ListenBrainzScrobbler> listenbrainzscrobbler_;
2021-06-12 20:53:23 +02:00
Ui_ScrobblerSettingsPage *ui_;
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);
};
#endif // SCROBBLERSETTINGSPAGE_H