2012-11-29 18:19:41 +01:00
|
|
|
/* This file is part of Clementine.
|
2014-12-17 19:02:21 +01:00
|
|
|
Copyright 2012, 2014, John Maguire <john.maguire@gmail.com>
|
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2012-11-29 18:19:41 +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/>.
|
|
|
|
*/
|
|
|
|
|
2014-12-18 23:54:21 +01:00
|
|
|
#ifndef INTERNET_DROPBOX_DROPBOXSETTINGSPAGE_H_
|
|
|
|
#define INTERNET_DROPBOX_DROPBOXSETTINGSPAGE_H_
|
2012-11-29 18:19:41 +01:00
|
|
|
|
|
|
|
#include "ui/settingspage.h"
|
|
|
|
|
|
|
|
#include <QModelIndex>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2012-11-29 18:43:56 +01:00
|
|
|
class DropboxAuthenticator;
|
2012-11-29 18:19:41 +01:00
|
|
|
class DropboxService;
|
|
|
|
class Ui_DropboxSettingsPage;
|
|
|
|
|
|
|
|
class DropboxSettingsPage : public SettingsPage {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2014-12-17 19:02:21 +01:00
|
|
|
explicit DropboxSettingsPage(SettingsDialog* parent = nullptr);
|
2012-11-29 18:19:41 +01:00
|
|
|
~DropboxSettingsPage();
|
|
|
|
|
|
|
|
void Load();
|
|
|
|
void Save();
|
|
|
|
|
|
|
|
// QObject
|
|
|
|
bool eventFilter(QObject* object, QEvent* event);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2012-11-29 18:19:41 +01:00
|
|
|
void LoginClicked();
|
|
|
|
void LogoutClicked();
|
2012-11-29 18:43:56 +01:00
|
|
|
void Connected(DropboxAuthenticator* authenticator);
|
2012-11-29 18:19:41 +01:00
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2012-11-29 18:19:41 +01:00
|
|
|
Ui_DropboxSettingsPage* ui_;
|
|
|
|
|
|
|
|
DropboxService* service_;
|
|
|
|
};
|
|
|
|
|
2014-12-18 23:54:21 +01:00
|
|
|
#endif // INTERNET_DROPBOX_DROPBOXSETTINGSPAGE_H_
|