mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 04:41:51 +03:00
122 lines
3.9 KiB
C++
122 lines
3.9 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.
|
|
*/
|
|
|
|
#include "generalsettings.h"
|
|
#include "ui_generalsettings.h"
|
|
|
|
#include "theme.h"
|
|
#include "configfile.h"
|
|
#include "application.h"
|
|
#include "utility.h"
|
|
#include "configfile.h"
|
|
|
|
#include "updater/updater.h"
|
|
#include "updater/ocupdater.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include <QNetworkProxy>
|
|
#include <QDir>
|
|
|
|
namespace OCC {
|
|
|
|
GeneralSettings::GeneralSettings(QWidget *parent) :
|
|
QWidget(parent),
|
|
_ui(new Ui::GeneralSettings)
|
|
{
|
|
_ui->setupUi(this);
|
|
|
|
connect(_ui->desktopNotificationsCheckBox, SIGNAL(toggled(bool)),
|
|
SLOT(slotToggleOptionalDesktopNotifications(bool)));
|
|
|
|
_ui->autostartCheckBox->setChecked(Utility::hasLaunchOnStartup(Theme::instance()->appName()));
|
|
connect(_ui->autostartCheckBox, SIGNAL(toggled(bool)), SLOT(slotToggleLaunchOnStartup(bool)));
|
|
|
|
// setup about section
|
|
QString about = Theme::instance()->about();
|
|
if (about.isEmpty()) {
|
|
_ui->aboutGroupBox->hide();
|
|
} else {
|
|
_ui->aboutLabel->setText(about);
|
|
_ui->aboutLabel->setWordWrap(true);
|
|
_ui->aboutLabel->setOpenExternalLinks(true);
|
|
}
|
|
|
|
loadMiscSettings();
|
|
slotUpdateInfo();
|
|
|
|
// misc
|
|
connect(_ui->monoIconsCheckBox, SIGNAL(toggled(bool)), SLOT(saveMiscSettings()));
|
|
connect(_ui->crashreporterCheckBox, SIGNAL(toggled(bool)), SLOT(saveMiscSettings()));
|
|
|
|
#ifndef WITH_CRASHREPORTER
|
|
_ui->crashreporterCheckBox->setVisible(false);
|
|
#endif
|
|
|
|
// OEM themes are not obliged to ship mono icons, so there
|
|
// is no point in offering an option
|
|
QString themeDir = QString::fromLatin1(":/client/theme/%1/")
|
|
.arg(Theme::instance()->systrayIconFlavor(true));
|
|
_ui->monoIconsCheckBox->setVisible(QDir(themeDir).exists());
|
|
}
|
|
|
|
GeneralSettings::~GeneralSettings()
|
|
{
|
|
delete _ui;
|
|
}
|
|
|
|
void GeneralSettings::loadMiscSettings()
|
|
{
|
|
ConfigFile cfgFile;
|
|
_ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons());
|
|
_ui->desktopNotificationsCheckBox->setChecked(cfgFile.optionalDesktopNotifications());
|
|
_ui->crashreporterCheckBox->setChecked(cfgFile.crashReporter());
|
|
}
|
|
|
|
void GeneralSettings::slotUpdateInfo()
|
|
{
|
|
if (OCUpdater *updater = dynamic_cast<OCUpdater*>(Updater::instance()))
|
|
{
|
|
connect(updater, SIGNAL(downloadStateChanged()), SLOT(slotUpdateInfo()), Qt::UniqueConnection);
|
|
connect(_ui->restartButton, SIGNAL(clicked()), updater, SLOT(slotStartInstaller()), Qt::UniqueConnection);
|
|
connect(_ui->restartButton, SIGNAL(clicked()), qApp, SLOT(quit()), Qt::UniqueConnection);
|
|
_ui->updateStateLabel->setText(updater->statusString());
|
|
_ui->restartButton->setVisible(updater->downloadState() == OCUpdater::DownloadComplete);
|
|
} else {
|
|
// can't have those infos from sparkle currently
|
|
_ui->updatesGroupBox->setVisible(false);
|
|
}
|
|
}
|
|
|
|
void GeneralSettings::saveMiscSettings()
|
|
{
|
|
ConfigFile cfgFile;
|
|
bool isChecked = _ui->monoIconsCheckBox->isChecked();
|
|
cfgFile.setMonoIcons(isChecked);
|
|
Theme::instance()->setSystrayUseMonoIcons(isChecked);
|
|
cfgFile.setCrashReporter(_ui->crashreporterCheckBox->isChecked());
|
|
}
|
|
|
|
void GeneralSettings::slotToggleLaunchOnStartup(bool enable)
|
|
{
|
|
Theme *theme = Theme::instance();
|
|
Utility::setLaunchOnStartup(theme->appName(), theme->appNameGUI(), enable);
|
|
}
|
|
|
|
void GeneralSettings::slotToggleOptionalDesktopNotifications(bool enable)
|
|
{
|
|
ConfigFile cfgFile;
|
|
cfgFile.setOptionalDesktopNotifications(enable);
|
|
}
|
|
|
|
} // namespace OCC
|