mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 12:52:06 +03:00
fbb85fab81
The bug was introduced by a bad merge.
91 lines
2.1 KiB
C++
91 lines
2.1 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"
|
|
#include "owncloudgui.h"
|
|
|
|
class QAction;
|
|
class QActionGroup;
|
|
class QToolBar;
|
|
class QStandardItemModel;
|
|
|
|
namespace OCC {
|
|
|
|
class AccountState;
|
|
|
|
namespace Ui {
|
|
class SettingsDialog;
|
|
}
|
|
class AccountSettings;
|
|
class Application;
|
|
class FolderMan;
|
|
class ownCloudGui;
|
|
class ActivitySettings;
|
|
|
|
/**
|
|
* @brief The SettingsDialog class
|
|
* @ingroup gui
|
|
*/
|
|
class SettingsDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsDialog(ownCloudGui *gui, QWidget *parent = 0);
|
|
~SettingsDialog();
|
|
|
|
void addAccount(const QString &title, QWidget *widget);
|
|
|
|
public slots:
|
|
void showFirstPage();
|
|
void showActivityPage();
|
|
void slotSwitchPage(QAction *action);
|
|
void slotRefreshActivity(AccountState *accountState );
|
|
|
|
protected:
|
|
void reject() Q_DECL_OVERRIDE;
|
|
void accept() Q_DECL_OVERRIDE;
|
|
void changeEvent(QEvent *) Q_DECL_OVERRIDE;
|
|
|
|
private slots:
|
|
void accountAdded(AccountState *);
|
|
void accountRemoved(AccountState *);
|
|
|
|
private:
|
|
void customizeStyle();
|
|
|
|
QIcon createColorAwareIcon(const QString &name);
|
|
QAction *createColorAwareAction(const QString &iconName, const QString &fileName);
|
|
Ui::SettingsDialog * const _ui;
|
|
|
|
QActionGroup* _actionGroup;
|
|
// Maps the actions from the action group to the corresponding widgets
|
|
QHash<QAction*, QWidget*> _actionGroupWidgets;
|
|
|
|
QToolBar* _toolBar;
|
|
|
|
ActivitySettings *_activitySettings;
|
|
|
|
QAction * _activityAction;
|
|
ownCloudGui *_gui;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SETTINGSDIALOG_H
|