2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-03-24 00:11:46 +01:00
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
#ifndef MAGNATUNESETTINGSPAGE_H
|
|
|
|
#define MAGNATUNESETTINGSPAGE_H
|
2010-02-03 19:32:48 +01:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
#include "ui/settingspage.h"
|
2010-02-03 19:32:48 +01:00
|
|
|
|
2011-03-18 15:39:29 +01:00
|
|
|
class QAuthenticator;
|
|
|
|
class QNetworkReply;
|
|
|
|
|
|
|
|
class NetworkAccessManager;
|
2011-08-14 01:07:10 +02:00
|
|
|
class Ui_MagnatuneSettingsPage;
|
2010-02-03 19:32:48 +01:00
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
class MagnatuneSettingsPage : public SettingsPage {
|
2010-02-03 19:32:48 +01:00
|
|
|
Q_OBJECT
|
2010-06-09 00:56:31 +02:00
|
|
|
public:
|
2011-08-14 01:07:10 +02:00
|
|
|
MagnatuneSettingsPage(SettingsDialog* dialog);
|
|
|
|
~MagnatuneSettingsPage();
|
2010-02-03 19:32:48 +01:00
|
|
|
|
2010-06-09 01:18:20 +02:00
|
|
|
void Load();
|
|
|
|
void Save();
|
2011-03-18 15:39:29 +01:00
|
|
|
|
2010-06-09 00:56:31 +02:00
|
|
|
private slots:
|
2011-08-14 01:07:10 +02:00
|
|
|
void Login();
|
2010-06-09 00:56:31 +02:00
|
|
|
void MembershipChanged(int value);
|
2011-08-14 01:07:10 +02:00
|
|
|
void LoginFinished();
|
2011-03-18 15:39:29 +01:00
|
|
|
void AuthenticationRequired(QNetworkReply* reply, QAuthenticator* auth);
|
|
|
|
void CredentialsChanged();
|
2010-02-03 19:32:48 +01:00
|
|
|
|
2010-06-09 00:56:31 +02:00
|
|
|
private:
|
2011-03-18 15:39:29 +01:00
|
|
|
bool credentials_changed_;
|
|
|
|
NetworkAccessManager* network_;
|
2011-08-14 01:07:10 +02:00
|
|
|
Ui_MagnatuneSettingsPage* ui_;
|
2010-02-03 19:32:48 +01:00
|
|
|
};
|
|
|
|
|
2011-08-14 01:07:10 +02:00
|
|
|
#endif // MAGNATUNESETTINGSPAGE_H
|