-
Notifications
You must be signed in to change notification settings - Fork 670
/
Copy pathgeneralsettings.cpp
200 lines (164 loc) · 7.33 KB
/
generalsettings.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
* 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; either version 2 of the License, or
* (at your option) any later version.
*
* 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 "common/restartmanager.h"
#include "common/version.h"
#include "gui/application.h"
#include "gui/ignorelisteditor.h"
#include "gui/settingsdialog.h"
#include "gui/translations.h"
#include "libsync/configfile.h"
#include "libsync/theme.h"
#include <QMessageBox>
#include <QOperatingSystemVersion>
#include <QScopedValueRollback>
namespace OCC {
GeneralSettings::GeneralSettings(QWidget *parent)
: QWidget(parent)
, _ui(new Ui::GeneralSettings)
, _currentlyLoading(false)
{
_ui->setupUi(this);
connect(_ui->desktopNotificationsCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::slotToggleOptionalDesktopNotifications);
reloadConfig();
loadMiscSettings();
// misc
connect(_ui->monoIconsCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings);
connect(_ui->crashreporterCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::saveMiscSettings);
connect(_ui->languageDropdown, QOverload<int>::of(&QComboBox::activated), this, [this]() {
// first, store selected language in config file
saveMiscSettings();
// warn user that a language change requires a restart to take effect
QMessageBox::warning(this, tr("Warning"), tr("Language changes require a restart of this application to take effect."), QMessageBox::Ok);
});
/* handle the hidden file checkbox */
/* the ignoreHiddenFiles flag is a folder specific setting, but for now, it is
* handled globally. Save it to every folder that is defined.
*/
connect(_ui->syncHiddenFilesCheckBox, &QCheckBox::toggled, this, [](bool checked) { FolderMan::instance()->setIgnoreHiddenFiles(!checked); });
_ui->crashreporterCheckBox->setVisible(Theme::instance()->withCrashReporter());
_ui->moveToTrashCheckBox->setVisible(Theme::instance()->enableMoveToTrash());
connect(_ui->moveToTrashCheckBox, &QCheckBox::toggled, this, [this](bool checked) {
ConfigFile().setMoveToTrash(checked);
Q_EMIT syncOptionsChanged();
});
// OEM themes are not obliged to ship mono icons, so there
// is no point in offering an option
_ui->monoIconsCheckBox->setVisible(Resources::hasMonoTheme());
connect(_ui->ignoredFilesButton, &QAbstractButton::clicked, this, &GeneralSettings::slotIgnoreFilesEditor);
connect(_ui->logSettingsButton, &QPushButton::clicked, this, [] {
// only access occApp after things are set up
ocApp()->gui()->slotToggleLogBrowser();
});
connect(_ui->about_pushButton, &QPushButton::clicked, this, &GeneralSettings::showAbout);
if (!Theme::instance()->aboutShowCopyright()) {
_ui->copyrightLabel->hide();
}
}
GeneralSettings::~GeneralSettings()
{
delete _ui;
}
void GeneralSettings::loadMiscSettings()
{
QScopedValueRollback<bool> scope(_currentlyLoading, true);
ConfigFile cfgFile;
_ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons());
_ui->desktopNotificationsCheckBox->setChecked(cfgFile.optionalDesktopNotifications());
_ui->crashreporterCheckBox->setChecked(cfgFile.crashReporter());
_ui->monoIconsCheckBox->setChecked(cfgFile.monoIcons());
// the dropdown has to be populated before we can can pick an entry below based on the stored setting
loadLanguageNamesIntoDropdown();
const auto &locale = cfgFile.uiLanguage();
const auto index = _ui->languageDropdown->findData(locale);
_ui->languageDropdown->setCurrentIndex(index < 0 ? 0 : index);
}
void GeneralSettings::showEvent(QShowEvent *)
{
reloadConfig();
}
void GeneralSettings::saveMiscSettings()
{
if (_currentlyLoading)
return;
ConfigFile cfgFile;
bool isChecked = _ui->monoIconsCheckBox->isChecked();
cfgFile.setMonoIcons(isChecked);
Theme::instance()->setSystrayUseMonoIcons(isChecked);
cfgFile.setCrashReporter(_ui->crashreporterCheckBox->isChecked());
// the first entry, identified by index 0, means "use default", which is a special case handled below
const QString pickedLocale = _ui->languageDropdown->currentData().toString();
cfgFile.setUiLanguage(pickedLocale);
}
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);
}
void GeneralSettings::slotIgnoreFilesEditor()
{
if (_ignoreEditor.isNull()) {
_ignoreEditor = new IgnoreListEditor(ocApp()->gui()->settingsDialog());
_ignoreEditor->setAttribute(Qt::WA_DeleteOnClose, true);
ownCloudGui::raise();
_ignoreEditor->open();
}
}
void GeneralSettings::reloadConfig()
{
_ui->syncHiddenFilesCheckBox->setChecked(!FolderMan::instance()->ignoreHiddenFiles());
_ui->moveToTrashCheckBox->setChecked(ConfigFile().moveToTrash());
if (Utility::hasSystemLaunchOnStartup(Theme::instance()->appName())) {
_ui->autostartCheckBox->setChecked(true);
_ui->autostartCheckBox->setDisabled(true);
_ui->autostartCheckBox->setToolTip(tr("You cannot disable autostart because system-wide autostart is enabled."));
} else {
const bool hasAutoStart = Utility::hasLaunchOnStartup(Theme::instance()->appName());
// make sure the binary location is correctly set
slotToggleLaunchOnStartup(hasAutoStart);
_ui->autostartCheckBox->setChecked(hasAutoStart);
connect(_ui->autostartCheckBox, &QAbstractButton::toggled, this, &GeneralSettings::slotToggleLaunchOnStartup);
}
}
void GeneralSettings::loadLanguageNamesIntoDropdown()
{
// allow method to be called more than once
_ui->languageDropdown->clear();
// if no option has been chosen explicitly by the user, the first entry shall be used
_ui->languageDropdown->addItem(tr("(use default)"));
// initialize map of locales to language names
const auto availableLocales = []() {
auto rv = Translations::listAvailableTranslations().values();
rv.sort(Qt::CaseInsensitive);
return rv;
}();
for (const auto &availableLocale : availableLocales) {
auto nativeLanguageName = QLocale(availableLocale).nativeLanguageName();
// fallback if there's a locale whose name Qt doesn't know
// this indicates a broken filename
if (nativeLanguageName.isEmpty()) {
qCDebug(lcApplication()) << "Warning: could not find native language name for locale" << availableLocale;
nativeLanguageName = tr("unknown (%1)").arg(availableLocale);
}
QString entryText = QStringLiteral("%1 (%2)").arg(nativeLanguageName, availableLocale);
_ui->languageDropdown->addItem(entryText, availableLocale);
}
}
} // namespace OCC