mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 12:52:06 +03:00
39bde6f3e4
This reverts commit 3c575a2f37
.
One can already open the account in the browser by clicking the
link in the settings dialog!
107 lines
2.6 KiB
C++
107 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) by Daniel Molkentin <danimo@owncloud.com>
|
|
*
|
|
* This program 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; version 2 of the License.
|
|
*
|
|
* This program 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.
|
|
*/
|
|
|
|
#ifndef ACCOUNTSETTINGS_H
|
|
#define ACCOUNTSETTINGS_H
|
|
|
|
#include <QWidget>
|
|
#include <QUrl>
|
|
#include <QPointer>
|
|
#include <QHash>
|
|
#include <QTimer>
|
|
|
|
#include "folder.h"
|
|
#include "quotainfo.h"
|
|
#include "progressdispatcher.h"
|
|
#include "owncloudgui.h"
|
|
|
|
class QModelIndex;
|
|
class QNetworkReply;
|
|
class QListWidgetItem;
|
|
class QLabel;
|
|
|
|
namespace OCC {
|
|
|
|
namespace Ui {
|
|
class AccountSettings;
|
|
}
|
|
|
|
class FolderMan;
|
|
|
|
class Account;
|
|
class AccountState;
|
|
class FolderStatusModel;
|
|
|
|
/**
|
|
* @brief The AccountSettings class
|
|
* @ingroup gui
|
|
*/
|
|
class AccountSettings : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AccountSettings(AccountState *accountState, QWidget *parent = 0);
|
|
~AccountSettings();
|
|
QSize sizeHint() const Q_DECL_OVERRIDE { return ownCloudGui::settingsDialogSize(); }
|
|
|
|
|
|
signals:
|
|
void folderChanged();
|
|
void openFolderAlias( const QString& );
|
|
|
|
public slots:
|
|
void slotOpenOC();
|
|
void slotUpdateQuota( qint64,qint64 );
|
|
void slotAccountStateChanged(int state);
|
|
|
|
AccountState* accountsState() { return _accountState; }
|
|
|
|
protected slots:
|
|
void slotAddFolder();
|
|
void slotEnableCurrentFolder();
|
|
void slotSyncCurrentFolderNow();
|
|
void slotRemoveCurrentFolder();
|
|
void slotOpenCurrentFolder();
|
|
void slotFolderWizardAccepted();
|
|
void slotFolderWizardRejected();
|
|
void slotDeleteAccount();
|
|
void slotToggleSignInState();
|
|
void slotOpenAccountWizard();
|
|
void slotAccountAdded(AccountState *);
|
|
void refreshSelectiveSyncStatus();
|
|
void slotCustomContextMenuRequested(const QPoint&);
|
|
void slotFolderListClicked( const QModelIndex& indx );
|
|
void doExpand();
|
|
void slotLinkActivated(const QString &link);
|
|
|
|
private:
|
|
void showConnectionLabel(const QString& message,
|
|
QStringList errors = QStringList());
|
|
bool event(QEvent*) Q_DECL_OVERRIDE;
|
|
void createAccountToolbox();
|
|
|
|
Ui::AccountSettings *ui;
|
|
|
|
FolderStatusModel *_model;
|
|
QUrl _OCUrl;
|
|
bool _wasDisabledBefore;
|
|
AccountState *_accountState;
|
|
QuotaInfo _quotaInfo;
|
|
QAction *_toggleSignInOutAction;
|
|
QAction *_addAccountAction;
|
|
};
|
|
|
|
} // namespace OCC
|
|
|
|
#endif // ACCOUNTSETTINGS_H
|