mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 13:14:30 +03:00
ce8341ca1f
* Add a more functional error view #5516 * Allow filtering of ignores and warnings to see only important bits. * Navigate from the folder view to the error view by clicking on the error list with the red background. * Move the error list into its own ui file to allow easier extension. * Fix issue around tab id handling in ActivitySettings. * Rename "Action" column to "Issue". * Change mouse cursor to hand over button and new error list area Several OSX fixes provided by guruz.
115 lines
3 KiB
C++
115 lines
3 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; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 &);
|
|
void showIssuesList(const QString &folderAlias);
|
|
|
|
public slots:
|
|
void slotOpenOC();
|
|
void slotUpdateQuota(qint64, qint64);
|
|
void slotAccountStateChanged(int state);
|
|
|
|
AccountState *accountsState() { return _accountState; }
|
|
|
|
protected slots:
|
|
void slotAddFolder();
|
|
void slotEnableCurrentFolder();
|
|
void slotScheduleCurrentFolder();
|
|
void slotScheduleCurrentFolderForceRemoteDiscovery();
|
|
void slotForceSyncCurrentFolder();
|
|
void slotRemoveCurrentFolder();
|
|
void slotOpenCurrentFolder(); // sync folder
|
|
void slotOpenCurrentLocalSubFolder(); // selected subfolder in sync folder
|
|
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();
|
|
|
|
/// Returns the alias of the selected folder, empty string if none
|
|
QString selectedFolderAlias() const;
|
|
|
|
Ui::AccountSettings *ui;
|
|
|
|
FolderStatusModel *_model;
|
|
QUrl _OCUrl;
|
|
bool _wasDisabledBefore;
|
|
AccountState *_accountState;
|
|
QuotaInfo _quotaInfo;
|
|
QAction *_toggleSignInOutAction;
|
|
QAction *_addAccountAction;
|
|
};
|
|
|
|
} // namespace OCC
|
|
|
|
#endif // ACCOUNTSETTINGS_H
|