2013-07-04 21:59:40 +04:00
|
|
|
/*
|
|
|
|
* 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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2013-07-04 21:59:40 +04:00
|
|
|
*
|
|
|
|
* 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>
|
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "progressdispatcher.h"
|
2015-11-04 18:40:22 +03:00
|
|
|
#include "owncloudgui.h"
|
2013-07-05 20:46:43 +04:00
|
|
|
|
2014-12-01 13:37:06 +03:00
|
|
|
class QAction;
|
2015-08-11 12:30:58 +03:00
|
|
|
class QActionGroup;
|
|
|
|
class QToolBar;
|
2013-07-04 21:59:40 +04:00
|
|
|
class QStandardItemModel;
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
class AccountState;
|
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
namespace Ui {
|
|
|
|
class SettingsDialog;
|
|
|
|
}
|
|
|
|
class AccountSettings;
|
|
|
|
class Application;
|
2013-07-22 14:11:12 +04:00
|
|
|
class FolderMan;
|
2013-10-01 15:52:07 +04:00
|
|
|
class ownCloudGui;
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The SettingsDialog class
|
|
|
|
* @ingroup gui
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2013-07-04 21:59:40 +04:00
|
|
|
class SettingsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-11-11 12:56:22 +03:00
|
|
|
explicit SettingsDialog(ownCloudGui *gui, QWidget *parent = nullptr);
|
2013-07-04 21:59:40 +04:00
|
|
|
~SettingsDialog();
|
|
|
|
|
|
|
|
void addAccount(const QString &title, QWidget *widget);
|
|
|
|
|
2013-10-01 15:52:07 +04:00
|
|
|
public slots:
|
2015-08-19 16:51:48 +03:00
|
|
|
void showFirstPage();
|
2018-11-09 14:12:25 +03:00
|
|
|
void showIssuesList(AccountState *account);
|
2014-12-01 13:37:06 +03:00
|
|
|
void slotSwitchPage(QAction *action);
|
2017-01-22 15:58:36 +03:00
|
|
|
void slotAccountAvatarChanged();
|
2017-10-05 22:08:38 +03:00
|
|
|
void slotAccountDisplayNameChanged();
|
2019-12-09 22:47:42 +03:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void styleChanged();
|
2019-12-21 05:04:31 +03:00
|
|
|
void onActivate();
|
2013-10-01 15:52:07 +04:00
|
|
|
|
2013-09-20 16:18:28 +04:00
|
|
|
protected:
|
2018-11-11 13:09:29 +03:00
|
|
|
void reject() override;
|
|
|
|
void accept() override;
|
|
|
|
void changeEvent(QEvent *) override;
|
2013-09-20 16:18:28 +04:00
|
|
|
|
2014-08-15 17:01:01 +04:00
|
|
|
private slots:
|
2015-04-17 18:56:17 +03:00
|
|
|
void accountAdded(AccountState *);
|
|
|
|
void accountRemoved(AccountState *);
|
2014-08-15 17:01:01 +04:00
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
private:
|
2015-08-11 18:56:02 +03:00
|
|
|
void customizeStyle();
|
2015-11-16 19:02:05 +03:00
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
QAction *createColorAwareAction(const QString &iconName, const QString &fileName);
|
2017-01-22 15:58:36 +03:00
|
|
|
QAction *createActionWithIcon(const QIcon &icon, const QString &text, const QString &iconPath = QString());
|
|
|
|
|
2014-12-01 15:08:49 +03:00
|
|
|
Ui::SettingsDialog *const _ui;
|
2015-08-11 12:30:58 +03:00
|
|
|
|
|
|
|
QActionGroup *_actionGroup;
|
2018-04-02 18:46:26 +03:00
|
|
|
QAction *_actionBefore;
|
2015-08-11 12:30:58 +03:00
|
|
|
// Maps the actions from the action group to the corresponding widgets
|
|
|
|
QHash<QAction *, QWidget *> _actionGroupWidgets;
|
|
|
|
|
2017-01-22 15:58:36 +03:00
|
|
|
// Maps the action in the dialog to their according account. Needed in
|
|
|
|
// case the account avatar changes
|
|
|
|
QHash<Account *, QAction *> _actionForAccount;
|
|
|
|
|
2015-08-11 12:30:58 +03:00
|
|
|
QToolBar *_toolBar;
|
2015-11-02 00:29:37 +03:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
ownCloudGui *_gui;
|
2013-07-04 21:59:40 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SETTINGSDIALOG_H
|