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
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "settingsdialog.h"
|
|
|
|
#include "ui_settingsdialog.h"
|
|
|
|
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "folderman.h"
|
|
|
|
#include "theme.h"
|
|
|
|
#include "generalsettings.h"
|
|
|
|
#include "networksettings.h"
|
|
|
|
#include "accountsettings.h"
|
2014-11-10 01:25:57 +03:00
|
|
|
#include "configfile.h"
|
2014-07-11 02:31:24 +04:00
|
|
|
#include "progressdispatcher.h"
|
|
|
|
#include "owncloudgui.h"
|
|
|
|
#include "protocolwidget.h"
|
2015-04-17 18:56:17 +03:00
|
|
|
#include "accountmanager.h"
|
2013-07-04 21:59:40 +04:00
|
|
|
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QStandardItemModel>
|
2014-12-01 13:37:06 +03:00
|
|
|
#include <QStackedWidget>
|
2013-07-04 21:59:40 +04:00
|
|
|
#include <QPushButton>
|
|
|
|
#include <QDebug>
|
2013-11-15 18:45:21 +04:00
|
|
|
#include <QSettings>
|
2014-12-01 13:37:06 +03:00
|
|
|
#include <QToolBar>
|
2015-08-10 11:50:57 +03:00
|
|
|
#include <QToolButton>
|
2014-12-01 13:37:06 +03:00
|
|
|
#include <QLayout>
|
2015-08-10 11:50:57 +03:00
|
|
|
#include <QVBoxLayout>
|
2015-08-11 18:56:02 +03:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QImage>
|
2015-08-11 22:45:27 +03:00
|
|
|
#include <QWidgetAction>
|
2014-12-01 13:37:06 +03:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
const char TOOLBAR_CSS[] =
|
2015-08-11 09:43:36 +03:00
|
|
|
"QToolBar { background: %1; margin: 0; padding: 0; border: none; border-bottom: 1px solid %2; spacing: 0; } "
|
|
|
|
"QToolBar QToolButton { background: %1; border: none; border-bottom: 1px solid %2; margin: 0; padding: 0; } "
|
2015-08-10 21:13:20 +03:00
|
|
|
"QToolBar QToolButton:checked { background: %3; color: %4; }";
|
2014-12-01 13:37:06 +03:00
|
|
|
}
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2015-03-11 18:41:37 +03:00
|
|
|
//
|
|
|
|
// Whenever you change something here check both settingsdialog.cpp and settingsdialogmac.cpp !
|
|
|
|
//
|
2015-08-11 22:45:27 +03:00
|
|
|
|
2013-10-01 15:52:07 +04:00
|
|
|
SettingsDialog::SettingsDialog(ownCloudGui *gui, QWidget *parent) :
|
2014-12-01 15:08:49 +03:00
|
|
|
QDialog(parent)
|
2015-04-17 18:56:17 +03:00
|
|
|
, _ui(new Ui::SettingsDialog), _gui(gui)
|
2013-07-04 21:59:40 +04:00
|
|
|
{
|
2013-11-13 23:12:56 +04:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2013-07-04 21:59:40 +04:00
|
|
|
_ui->setupUi(this);
|
2015-08-11 12:30:58 +03:00
|
|
|
_toolBar = new QToolBar;
|
|
|
|
_toolBar->setIconSize(QSize(32, 32));
|
|
|
|
_toolBar->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
|
|
|
|
layout()->setMenuBar(_toolBar);
|
2014-09-02 15:58:55 +04:00
|
|
|
|
|
|
|
// People perceive this as a Window, so also make Ctrl+W work
|
|
|
|
QAction *closeWindowAction = new QAction(this);
|
|
|
|
closeWindowAction->setShortcut(QKeySequence("Ctrl+W"));
|
|
|
|
connect(closeWindowAction, SIGNAL(triggered()), SLOT(accept()));
|
|
|
|
addAction(closeWindowAction);
|
|
|
|
|
2015-08-10 11:50:57 +03:00
|
|
|
|
2013-07-22 14:28:43 +04:00
|
|
|
setObjectName("Settings"); // required as group for saveGeometry call
|
2014-12-01 13:37:06 +03:00
|
|
|
setWindowTitle(Theme::instance()->appNameGUI());
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2015-08-11 12:30:58 +03:00
|
|
|
// Add a spacer so config buttons are right aligned and account buttons will be left aligned
|
2015-08-11 22:44:35 +03:00
|
|
|
_seperatorAction = _toolBar->addSeparator();
|
2015-08-11 12:30:58 +03:00
|
|
|
_actionGroup = new QActionGroup(this);
|
|
|
|
_actionGroup->setExclusive(true);
|
2015-07-03 12:04:03 +03:00
|
|
|
|
2015-08-05 15:49:16 +03:00
|
|
|
// Note: all the actions have a '\n' because the account name is in two lines and
|
|
|
|
// all buttons must have the same size in order to keep a good layout
|
2015-08-11 18:56:02 +03:00
|
|
|
_protocolAction = createColorAwareAction(QLatin1String(":/client/resources/activity.png"), tr("Activity"));
|
|
|
|
_actionGroup->addAction(_protocolAction);
|
2015-08-11 22:45:27 +03:00
|
|
|
addActionToToolBar(_protocolAction);
|
2014-12-01 13:37:06 +03:00
|
|
|
ProtocolWidget *protocolWidget = new ProtocolWidget;
|
|
|
|
_ui->stack->addWidget(protocolWidget);
|
2013-10-08 16:12:05 +04:00
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
QAction *generalAction = createColorAwareAction(QLatin1String(":/client/resources/settings.png"), tr("General"));
|
|
|
|
_actionGroup->addAction(generalAction);
|
2015-08-11 22:45:27 +03:00
|
|
|
addActionToToolBar(generalAction);
|
2013-07-04 21:59:40 +04:00
|
|
|
GeneralSettings *generalSettings = new GeneralSettings;
|
|
|
|
_ui->stack->addWidget(generalSettings);
|
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
QAction *networkAction = createColorAwareAction(QLatin1String(":/client/resources/network.png"), tr("Network"));
|
|
|
|
_actionGroup->addAction(networkAction);
|
2015-08-11 22:45:27 +03:00
|
|
|
addActionToToolBar(networkAction);
|
2013-07-24 21:53:05 +04:00
|
|
|
NetworkSettings *networkSettings = new NetworkSettings;
|
|
|
|
_ui->stack->addWidget(networkSettings);
|
|
|
|
|
2015-08-11 12:30:58 +03:00
|
|
|
_actionGroupWidgets.insert(_protocolAction, protocolWidget);
|
|
|
|
_actionGroupWidgets.insert(generalAction, generalSettings);
|
|
|
|
_actionGroupWidgets.insert(networkAction, networkSettings);
|
2014-12-01 13:37:06 +03:00
|
|
|
|
2015-08-11 12:30:58 +03:00
|
|
|
connect(_actionGroup, SIGNAL(triggered(QAction*)), SLOT(slotSwitchPage(QAction*)));
|
2014-12-01 13:37:06 +03:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
connect(AccountManager::instance(), SIGNAL(accountAdded(AccountState*)),
|
|
|
|
this, SLOT(accountAdded(AccountState*)));
|
|
|
|
connect(AccountManager::instance(), SIGNAL(accountRemoved(AccountState*)),
|
|
|
|
this, SLOT(accountRemoved(AccountState*)));
|
|
|
|
foreach (auto ai , AccountManager::instance()->accounts()) {
|
|
|
|
accountAdded(ai.data());
|
|
|
|
}
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2015-08-19 16:51:48 +03:00
|
|
|
QTimer::singleShot(1, this, SLOT(showFirstPage()));
|
2013-07-04 21:59:40 +04:00
|
|
|
|
|
|
|
QPushButton *closeButton = _ui->buttonBox->button(QDialogButtonBox::Close);
|
2013-12-21 06:36:43 +04:00
|
|
|
connect(closeButton, SIGNAL(clicked()), SLOT(accept()));
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2013-08-14 19:46:58 +04:00
|
|
|
QAction *showLogWindow = new QAction(this);
|
|
|
|
showLogWindow->setShortcut(QKeySequence("F12"));
|
2013-10-02 17:28:33 +04:00
|
|
|
connect(showLogWindow, SIGNAL(triggered()), gui, SLOT(slotToggleLogBrowser()));
|
2013-08-14 19:46:58 +04:00
|
|
|
addAction(showLogWindow);
|
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
customizeStyle();
|
|
|
|
|
2014-11-10 00:30:29 +03:00
|
|
|
ConfigFile cfg;
|
2013-07-22 14:28:43 +04:00
|
|
|
cfg.restoreGeometry(this);
|
2013-07-04 21:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
SettingsDialog::~SettingsDialog()
|
|
|
|
{
|
|
|
|
delete _ui;
|
|
|
|
}
|
|
|
|
|
2013-09-20 16:18:28 +04:00
|
|
|
// close event is not being called here
|
|
|
|
void SettingsDialog::reject() {
|
2014-11-10 00:30:29 +03:00
|
|
|
ConfigFile cfg;
|
2013-09-20 16:18:28 +04:00
|
|
|
cfg.saveGeometry(this);
|
|
|
|
QDialog::reject();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsDialog::accept() {
|
2014-11-10 00:30:29 +03:00
|
|
|
ConfigFile cfg;
|
2013-09-20 16:18:28 +04:00
|
|
|
cfg.saveGeometry(this);
|
|
|
|
QDialog::accept();
|
|
|
|
}
|
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
void SettingsDialog::changeEvent(QEvent *e)
|
|
|
|
{
|
|
|
|
switch (e->type()) {
|
|
|
|
case QEvent::StyleChange:
|
|
|
|
case QEvent::PaletteChange:
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
case QEvent::ThemeChange:
|
|
|
|
#endif
|
|
|
|
customizeStyle();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDialog::changeEvent(e);
|
|
|
|
}
|
|
|
|
|
2014-12-01 13:37:06 +03:00
|
|
|
void SettingsDialog::slotSwitchPage(QAction *action)
|
2014-08-15 17:01:01 +04:00
|
|
|
{
|
2015-08-11 12:30:58 +03:00
|
|
|
_ui->stack->setCurrentWidget(_actionGroupWidgets.value(action));
|
2014-08-15 17:01:01 +04:00
|
|
|
}
|
|
|
|
|
2015-08-19 16:51:48 +03:00
|
|
|
void SettingsDialog::showFirstPage()
|
|
|
|
{
|
|
|
|
Q_FOREACH(QAction *action, _toolBar->actions()) {
|
|
|
|
if (QWidgetAction *wa = qobject_cast<QWidgetAction*>(action)) {
|
|
|
|
if (QToolButton *qtb = qobject_cast<QToolButton*>(wa->defaultWidget())) {
|
|
|
|
if (QAction *a2 = qtb->defaultAction()) {
|
|
|
|
qtb->defaultAction()->trigger();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-29 14:18:59 +04:00
|
|
|
void SettingsDialog::showActivityPage()
|
|
|
|
{
|
2014-12-01 15:08:49 +03:00
|
|
|
if (_protocolAction) {
|
|
|
|
slotSwitchPage(_protocolAction);
|
|
|
|
}
|
2013-11-29 14:18:59 +04:00
|
|
|
}
|
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
void SettingsDialog::accountAdded(AccountState *s)
|
|
|
|
{
|
2015-08-11 18:56:02 +03:00
|
|
|
auto accountAction = createColorAwareAction(QLatin1String(":/client/resources/account.png"),
|
|
|
|
s->shortDisplayNameForSettings());
|
2015-08-05 15:49:16 +03:00
|
|
|
accountAction->setToolTip(s->account()->displayName());
|
2015-08-10 11:50:57 +03:00
|
|
|
|
|
|
|
QToolButton* accountButton = new QToolButton;
|
|
|
|
accountButton->setDefaultAction(accountAction);
|
|
|
|
accountButton->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
|
|
|
|
accountButton->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
2015-08-11 12:30:58 +03:00
|
|
|
|
|
|
|
QAction* toolbarAction = _toolBar->insertWidget(_toolBar->actions().at(0), accountButton);
|
2015-08-11 22:45:27 +03:00
|
|
|
_toolbarAccountActions.insert(accountAction, toolbarAction);
|
2015-08-10 11:50:57 +03:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
auto accountSettings = new AccountSettings(s, this);
|
|
|
|
_ui->stack->insertWidget(0 , accountSettings);
|
2015-08-11 12:30:58 +03:00
|
|
|
_actionGroup->addAction(accountAction);
|
|
|
|
_actionGroupWidgets.insert(accountAction, accountSettings);
|
2015-04-17 18:56:17 +03:00
|
|
|
|
|
|
|
connect( accountSettings, SIGNAL(folderChanged()), _gui, SLOT(slotFoldersChanged()));
|
|
|
|
connect( accountSettings, SIGNAL(openFolderAlias(const QString&)),
|
|
|
|
_gui, SLOT(slotFolderOpenAction(QString)));
|
2015-08-11 22:44:35 +03:00
|
|
|
|
|
|
|
_seperatorAction->setVisible(!_toolbarAccountActions.isEmpty());
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsDialog::accountRemoved(AccountState *s)
|
|
|
|
{
|
2015-08-11 12:30:58 +03:00
|
|
|
for (auto it = _actionGroupWidgets.begin(); it != _actionGroupWidgets.end(); ++it) {
|
2015-04-17 18:56:17 +03:00
|
|
|
auto as = qobject_cast<AccountSettings *>(*it);
|
|
|
|
if (!as) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (as->accountsState() == s) {
|
2015-08-11 22:45:27 +03:00
|
|
|
_toolBar->removeAction(_toolbarAccountActions.value(it.key()));
|
|
|
|
_toolbarAccountActions.remove(it.key());
|
2015-08-11 12:30:58 +03:00
|
|
|
|
2015-04-17 18:56:17 +03:00
|
|
|
delete it.key();
|
|
|
|
delete it.value();
|
2015-08-11 12:30:58 +03:00
|
|
|
_actionGroupWidgets.erase(it);
|
2015-04-17 18:56:17 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-08-11 22:44:35 +03:00
|
|
|
|
|
|
|
_seperatorAction->setVisible(!_toolbarAccountActions.isEmpty());
|
2015-04-17 18:56:17 +03:00
|
|
|
}
|
|
|
|
|
2015-08-11 18:56:02 +03:00
|
|
|
void SettingsDialog::customizeStyle()
|
|
|
|
{
|
|
|
|
QString highlightColor(palette().highlight().color().name());
|
|
|
|
QString altBase(palette().alternateBase().color().name());
|
|
|
|
QString dark(palette().dark().color().name());
|
|
|
|
QString background(palette().base().color().name());
|
|
|
|
_toolBar->setStyleSheet(QString::fromAscii(TOOLBAR_CSS).arg(background).arg(dark).arg(highlightColor).arg(altBase));
|
|
|
|
|
|
|
|
Q_FOREACH(QAction *a, _actionGroup->actions()) {
|
|
|
|
QIcon icon = createColorAwareIcon(a->property("iconPath").toString());
|
|
|
|
a->setIcon(icon);
|
|
|
|
QToolButton *btn = qobject_cast<QToolButton*>(_toolBar->widgetForAction(a));
|
|
|
|
if (btn) {
|
|
|
|
btn->setIcon(icon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QIcon SettingsDialog::createColorAwareIcon(const QString &name)
|
|
|
|
{
|
|
|
|
QColor bg(palette().base().color());
|
|
|
|
QImage img(name);
|
|
|
|
// account for different sensitivty of the human eye to certain colors
|
|
|
|
double treshold = 1.0 - ( 0.299 * bg.red() + 0.587 * bg.green() + 0.114 * bg.blue())/255.0;
|
|
|
|
if (treshold > 0.5) {
|
|
|
|
img.invertPixels(QImage::InvertRgb);
|
|
|
|
}
|
|
|
|
|
|
|
|
return QIcon(QPixmap::fromImage(img));
|
|
|
|
}
|
|
|
|
|
|
|
|
QAction *SettingsDialog::createColorAwareAction(const QString &iconPath, const QString &text)
|
|
|
|
{
|
|
|
|
// all buttons must have the same size in order to keep a good layout
|
|
|
|
QIcon coloredIcon = createColorAwareIcon(iconPath);
|
|
|
|
QAction *action = new QAction(coloredIcon, text, this);
|
|
|
|
action->setCheckable(true);
|
|
|
|
action->setProperty("iconPath", iconPath);
|
|
|
|
return action;
|
|
|
|
}
|
2015-04-17 18:56:17 +03:00
|
|
|
|
2015-08-11 22:45:27 +03:00
|
|
|
void SettingsDialog::addActionToToolBar(QAction *action) {
|
|
|
|
QToolButton* btn = new QToolButton;
|
|
|
|
btn->setDefaultAction(action);
|
|
|
|
btn->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
|
|
|
|
btn->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Expanding);
|
|
|
|
_toolBar->addWidget(btn);
|
|
|
|
}
|
2013-11-29 14:18:59 +04:00
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|