mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 21:50:30 +03:00
3016844dd7
Conflicts: README.md src/gui/folderman.cpp src/gui/settingsdialog.cpp src/libsync/accessmanager.cpp src/libsync/propagateupload.h
65 lines
1.4 KiB
C++
65 lines
1.4 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 SETTINGSDIALOG_H
|
|
#define SETTINGSDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include "progressdispatcher.h"
|
|
|
|
class QAction;
|
|
class QStandardItemModel;
|
|
|
|
namespace OCC {
|
|
|
|
namespace Ui {
|
|
class SettingsDialog;
|
|
}
|
|
class AccountSettings;
|
|
class Application;
|
|
class FolderMan;
|
|
class ownCloudGui;
|
|
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsDialog(ownCloudGui *gui, QWidget *parent = 0);
|
|
~SettingsDialog();
|
|
|
|
void addAccount(const QString &title, QWidget *widget);
|
|
void setGeneralErrors( const QStringList& errors );
|
|
|
|
public slots:
|
|
void showActivityPage();
|
|
void slotSwitchPage(QAction *action);
|
|
|
|
protected:
|
|
void reject() Q_DECL_OVERRIDE;
|
|
void accept() Q_DECL_OVERRIDE;
|
|
|
|
private slots:
|
|
|
|
private:
|
|
Ui::SettingsDialog * const _ui;
|
|
QHash<QAction*, QWidget*> _actions;
|
|
AccountSettings * const _accountSettings;
|
|
QAction * _protocolAction;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SETTINGSDIALOG_H
|