/* This file is part of Clementine. Copyright 2012, David Sansome Copyright 2013-2014, John Maguire Copyright 2014, Krzysztof Sobiecki 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 . */ #include "googledrivesettingspage.h" #include #include "core/application.h" #include "googledriveclient.h" #include "googledriveservice.h" #include "internet/core/internetmodel.h" #include "ui/iconloader.h" #include "ui/settingsdialog.h" #include "ui_googledrivesettingspage.h" GoogleDriveSettingsPage::GoogleDriveSettingsPage(SettingsDialog* parent) : SettingsPage(parent), ui_(new Ui::GoogleDriveSettingsPage), service_( dialog()->app()->internet_model()->Service()) { ui_->setupUi(this); setWindowIcon(IconLoader::Load("googledrive", IconLoader::Provider)); ui_->login_state->AddCredentialGroup(ui_->login_container); connect(ui_->login_button, SIGNAL(clicked()), SLOT(LoginClicked())); connect(ui_->login_state, SIGNAL(LogoutClicked()), SLOT(LogoutClicked())); connect(service_, SIGNAL(Connected()), SLOT(Connected())); dialog()->installEventFilter(this); } GoogleDriveSettingsPage::~GoogleDriveSettingsPage() { delete ui_; } void GoogleDriveSettingsPage::Load() { QSettings s; s.beginGroup(GoogleDriveService::kSettingsGroup); const QString user_email = s.value("user_email").toString(); const QString refresh_token = s.value("refresh_token").toString(); if (!user_email.isEmpty() && !refresh_token.isEmpty()) { ui_->login_state->SetLoggedIn(LoginStateWidget::LoggedIn, user_email); } } void GoogleDriveSettingsPage::Save() { QSettings s; s.beginGroup(GoogleDriveService::kSettingsGroup); } void GoogleDriveSettingsPage::LoginClicked() { service_->Connect(); ui_->login_button->setEnabled(false); } bool GoogleDriveSettingsPage::eventFilter(QObject* object, QEvent* event) { if (object == dialog() && event->type() == QEvent::Enter) { ui_->login_button->setEnabled(true); return false; } return SettingsPage::eventFilter(object, event); } void GoogleDriveSettingsPage::LogoutClicked() { service_->ForgetCredentials(); ui_->login_state->SetLoggedIn(LoginStateWidget::LoggedOut); } void GoogleDriveSettingsPage::Connected() { QSettings s; s.beginGroup(GoogleDriveService::kSettingsGroup); const QString user_email = s.value("user_email").toString(); ui_->login_state->SetLoggedIn(LoginStateWidget::LoggedIn, user_email); }