2012-05-27 05:09:52 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
|
|
|
|
*
|
|
|
|
* 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 or (at your option)
|
|
|
|
* version 3 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SettingsWidget.h"
|
2012-05-27 18:09:54 -04:00
|
|
|
#include "ui_SettingsWidgetGeneral.h"
|
2012-05-27 05:09:52 -04:00
|
|
|
#include "ui_SettingsWidgetSecurity.h"
|
|
|
|
|
2012-07-14 13:09:28 -04:00
|
|
|
#include "autotype/AutoType.h"
|
2012-05-27 14:10:41 -04:00
|
|
|
#include "core/Config.h"
|
2014-05-17 19:33:22 -04:00
|
|
|
#include "core/Translator.h"
|
2017-02-21 19:05:24 -05:00
|
|
|
#include "core/FilePath.h"
|
2017-03-10 09:45:00 -05:00
|
|
|
#include "core/Global.h"
|
2012-05-27 14:10:41 -04:00
|
|
|
|
2015-01-30 03:04:27 -05:00
|
|
|
class SettingsWidget::ExtraPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ExtraPage(ISettingsPage* page, QWidget* widget): settingsPage(page), widget(widget)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void loadSettings() const
|
|
|
|
{
|
|
|
|
settingsPage->loadSettings(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void saveSettings() const
|
|
|
|
{
|
|
|
|
settingsPage->saveSettings(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
QSharedPointer<ISettingsPage> settingsPage;
|
|
|
|
QWidget* widget;
|
|
|
|
};
|
|
|
|
|
2012-05-27 05:09:52 -04:00
|
|
|
SettingsWidget::SettingsWidget(QWidget* parent)
|
|
|
|
: EditWidget(parent)
|
|
|
|
, m_secWidget(new QWidget())
|
2012-05-27 18:09:54 -04:00
|
|
|
, m_generalWidget(new QWidget())
|
2012-05-27 05:09:52 -04:00
|
|
|
, m_secUi(new Ui::SettingsWidgetSecurity())
|
2012-05-27 18:09:54 -04:00
|
|
|
, m_generalUi(new Ui::SettingsWidgetGeneral())
|
2014-03-22 07:07:06 -04:00
|
|
|
, m_globalAutoTypeKey(static_cast<Qt::Key>(0))
|
|
|
|
, m_globalAutoTypeModifiers(Qt::NoModifier)
|
2012-05-27 05:09:52 -04:00
|
|
|
{
|
2012-05-27 05:12:12 -04:00
|
|
|
setHeadline(tr("Application Settings"));
|
2012-05-27 05:09:52 -04:00
|
|
|
|
|
|
|
m_secUi->setupUi(m_secWidget);
|
2012-05-27 18:09:54 -04:00
|
|
|
m_generalUi->setupUi(m_generalWidget);
|
2017-02-22 08:05:59 -05:00
|
|
|
addPage(tr("General"), FilePath::instance()->icon("categories", "preferences-other"), m_generalWidget);
|
|
|
|
addPage(tr("Security"), FilePath::instance()->icon("status", "security-high"), m_secWidget);
|
2012-05-27 05:09:52 -04:00
|
|
|
|
2017-02-22 09:30:27 -05:00
|
|
|
if (!autoType()->isAvailable()) {
|
|
|
|
m_generalUi->generalSettingsTabWidget->removeTab(1);
|
|
|
|
}
|
|
|
|
|
2015-10-10 11:08:56 -04:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
// systray not useful on OS X
|
2017-03-18 13:31:15 -04:00
|
|
|
m_generalUi->systraySettings->setVisible(false);
|
2015-10-10 11:08:56 -04:00
|
|
|
#endif
|
2013-12-01 06:20:05 -05:00
|
|
|
|
2012-05-27 05:09:52 -04:00
|
|
|
connect(this, SIGNAL(accepted()), SLOT(saveSettings()));
|
2012-05-27 14:29:15 -04:00
|
|
|
connect(this, SIGNAL(rejected()), SLOT(reject()));
|
2012-05-27 05:09:52 -04:00
|
|
|
|
2012-06-10 15:54:58 -04:00
|
|
|
connect(m_generalUi->autoSaveAfterEveryChangeCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
this, SLOT(enableAutoSaveOnExit(bool)));
|
2014-11-02 04:15:44 -05:00
|
|
|
connect(m_generalUi->systrayShowCheckBox, SIGNAL(toggled(bool)),
|
2016-11-23 18:15:51 -05:00
|
|
|
this, SLOT(enableSystray(bool)));
|
2012-06-10 15:54:58 -04:00
|
|
|
|
2012-05-27 05:09:52 -04:00
|
|
|
connect(m_secUi->clearClipboardCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
m_secUi->clearClipboardSpinBox, SLOT(setEnabled(bool)));
|
2014-01-07 15:56:58 -05:00
|
|
|
connect(m_secUi->lockDatabaseIdleCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
m_secUi->lockDatabaseIdleSpinBox, SLOT(setEnabled(bool)));
|
2012-05-27 05:09:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SettingsWidget::~SettingsWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-02-22 08:05:59 -05:00
|
|
|
void SettingsWidget::addSettingsPage(ISettingsPage* page)
|
2015-01-30 03:04:27 -05:00
|
|
|
{
|
2017-02-22 08:05:59 -05:00
|
|
|
QWidget* widget = page->createWidget();
|
2015-01-30 03:04:27 -05:00
|
|
|
widget->setParent(this);
|
|
|
|
m_extraPages.append(ExtraPage(page, widget));
|
2017-02-22 08:05:59 -05:00
|
|
|
addPage(page->name(), page->icon(), widget);
|
2015-01-30 03:04:27 -05:00
|
|
|
}
|
|
|
|
|
2012-05-27 05:09:52 -04:00
|
|
|
void SettingsWidget::loadSettings()
|
|
|
|
{
|
2017-03-18 14:00:31 -04:00
|
|
|
|
|
|
|
if (config()->hasAccessError()) {
|
|
|
|
showMessage(
|
2017-03-19 16:05:52 -04:00
|
|
|
tr("Access error for config file %1").arg(config()->getFileName()), MessageWidget::Error);
|
2017-03-18 14:00:31 -04:00
|
|
|
}
|
|
|
|
|
2012-05-27 18:09:54 -04:00
|
|
|
m_generalUi->rememberLastDatabasesCheckBox->setChecked(config()->get("RememberLastDatabases").toBool());
|
2015-03-14 23:06:53 -04:00
|
|
|
m_generalUi->rememberLastKeyFilesCheckBox->setChecked(config()->get("RememberLastKeyFiles").toBool());
|
2013-10-13 12:08:50 -04:00
|
|
|
m_generalUi->openPreviousDatabasesOnStartupCheckBox->setChecked(
|
|
|
|
config()->get("OpenPreviousDatabasesOnStartup").toBool());
|
2012-06-10 10:28:46 -04:00
|
|
|
m_generalUi->autoSaveAfterEveryChangeCheckBox->setChecked(config()->get("AutoSaveAfterEveryChange").toBool());
|
2012-06-10 15:54:58 -04:00
|
|
|
m_generalUi->autoSaveOnExitCheckBox->setChecked(config()->get("AutoSaveOnExit").toBool());
|
2014-06-09 04:51:24 -04:00
|
|
|
m_generalUi->autoReloadOnChangeCheckBox->setChecked(config()->get("AutoReloadOnChange").toBool());
|
2013-10-29 15:54:56 -04:00
|
|
|
m_generalUi->minimizeOnCopyCheckBox->setChecked(config()->get("MinimizeOnCopy").toBool());
|
2017-02-22 10:08:06 -05:00
|
|
|
m_generalUi->useGroupIconOnEntryCreationCheckBox->setChecked(config()->get("UseGroupIconOnEntryCreation").toBool());
|
2014-05-15 12:26:01 -04:00
|
|
|
m_generalUi->autoTypeEntryTitleMatchCheckBox->setChecked(config()->get("AutoTypeEntryTitleMatch").toBool());
|
2012-07-14 13:09:28 -04:00
|
|
|
|
2014-09-05 04:04:02 -04:00
|
|
|
m_generalUi->languageComboBox->clear();
|
2014-05-17 19:33:22 -04:00
|
|
|
QList<QPair<QString, QString> > languages = Translator::availableLanguages();
|
|
|
|
for (int i = 0; i < languages.size(); i++) {
|
|
|
|
m_generalUi->languageComboBox->addItem(languages[i].second, languages[i].first);
|
|
|
|
}
|
|
|
|
int defaultIndex = m_generalUi->languageComboBox->findData(config()->get("GUI/Language"));
|
|
|
|
if (defaultIndex > 0) {
|
|
|
|
m_generalUi->languageComboBox->setCurrentIndex(defaultIndex);
|
|
|
|
}
|
|
|
|
|
2014-11-02 04:15:44 -05:00
|
|
|
m_generalUi->systrayShowCheckBox->setChecked(config()->get("GUI/ShowTrayIcon").toBool());
|
|
|
|
m_generalUi->systrayMinimizeToTrayCheckBox->setChecked(config()->get("GUI/MinimizeToTray").toBool());
|
2015-06-18 09:23:41 -04:00
|
|
|
m_generalUi->systrayMinimizeOnCloseCheckBox->setChecked(config()->get("GUI/MinimizeOnClose").toBool());
|
2015-10-08 13:07:52 -04:00
|
|
|
m_generalUi->systrayMinimizeOnStartup->setChecked(config()->get("GUI/MinimizeOnStartup").toBool());
|
2017-02-22 10:08:06 -05:00
|
|
|
m_generalUi->autoTypeAskCheckBox->setChecked(config()->get("security/autotypeask").toBool());
|
2014-11-02 04:15:44 -05:00
|
|
|
|
2013-12-01 06:20:05 -05:00
|
|
|
if (autoType()->isAvailable()) {
|
|
|
|
m_globalAutoTypeKey = static_cast<Qt::Key>(config()->get("GlobalAutoTypeKey").toInt());
|
|
|
|
m_globalAutoTypeModifiers = static_cast<Qt::KeyboardModifiers>(config()->get("GlobalAutoTypeModifiers").toInt());
|
|
|
|
if (m_globalAutoTypeKey > 0 && m_globalAutoTypeModifiers > 0) {
|
|
|
|
m_generalUi->autoTypeShortcutWidget->setShortcut(m_globalAutoTypeKey, m_globalAutoTypeModifiers);
|
|
|
|
}
|
2012-07-14 13:09:28 -04:00
|
|
|
}
|
|
|
|
|
2012-05-27 14:10:41 -04:00
|
|
|
m_secUi->clearClipboardCheckBox->setChecked(config()->get("security/clearclipboard").toBool());
|
|
|
|
m_secUi->clearClipboardSpinBox->setValue(config()->get("security/clearclipboardtimeout").toInt());
|
|
|
|
|
2014-01-07 15:56:58 -05:00
|
|
|
m_secUi->lockDatabaseIdleCheckBox->setChecked(config()->get("security/lockdatabaseidle").toBool());
|
|
|
|
m_secUi->lockDatabaseIdleSpinBox->setValue(config()->get("security/lockdatabaseidlesec").toInt());
|
2016-10-25 09:17:50 -04:00
|
|
|
m_secUi->lockDatabaseMinimizeCheckBox->setChecked(config()->get("security/lockdatabaseminimize").toBool());
|
2014-01-07 15:56:58 -05:00
|
|
|
|
2014-01-12 11:23:47 -05:00
|
|
|
m_secUi->passwordCleartextCheckBox->setChecked(config()->get("security/passwordscleartext").toBool());
|
2016-11-23 21:59:24 -05:00
|
|
|
m_secUi->passwordRepeatCheckBox->setChecked(config()->get("security/passwordsrepeat").toBool());
|
2014-01-12 11:23:47 -05:00
|
|
|
|
2014-04-07 02:45:11 -04:00
|
|
|
|
2017-03-10 09:45:00 -05:00
|
|
|
for (const ExtraPage& page: asConst(m_extraPages)) {
|
2015-01-30 03:04:27 -05:00
|
|
|
page.loadSettings();
|
2017-03-10 09:45:00 -05:00
|
|
|
}
|
2015-01-30 03:04:27 -05:00
|
|
|
|
2017-02-21 19:05:24 -05:00
|
|
|
setCurrentPage(0);
|
2012-05-27 05:09:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::saveSettings()
|
|
|
|
{
|
2017-03-18 14:00:31 -04:00
|
|
|
|
|
|
|
if (config()->hasAccessError()) {
|
|
|
|
showMessage(
|
2017-03-19 16:05:52 -04:00
|
|
|
tr("Access error for config file %1").arg(config()->getFileName()), MessageWidget::Error);
|
2017-03-18 14:00:31 -04:00
|
|
|
// We prevent closing the settings page if we could not write to
|
|
|
|
// the config file.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-05-27 18:09:54 -04:00
|
|
|
config()->set("RememberLastDatabases", m_generalUi->rememberLastDatabasesCheckBox->isChecked());
|
2015-03-14 23:06:53 -04:00
|
|
|
config()->set("RememberLastKeyFiles", m_generalUi->rememberLastKeyFilesCheckBox->isChecked());
|
2014-01-14 15:00:27 -05:00
|
|
|
config()->set("OpenPreviousDatabasesOnStartup",
|
|
|
|
m_generalUi->openPreviousDatabasesOnStartupCheckBox->isChecked());
|
|
|
|
config()->set("AutoSaveAfterEveryChange",
|
|
|
|
m_generalUi->autoSaveAfterEveryChangeCheckBox->isChecked());
|
2012-06-10 15:54:58 -04:00
|
|
|
config()->set("AutoSaveOnExit", m_generalUi->autoSaveOnExitCheckBox->isChecked());
|
2014-06-09 04:51:24 -04:00
|
|
|
config()->set("AutoReloadOnChange", m_generalUi->autoReloadOnChangeCheckBox->isChecked());
|
2013-10-29 15:54:56 -04:00
|
|
|
config()->set("MinimizeOnCopy", m_generalUi->minimizeOnCopyCheckBox->isChecked());
|
2014-04-14 17:31:56 -04:00
|
|
|
config()->set("UseGroupIconOnEntryCreation",
|
|
|
|
m_generalUi->useGroupIconOnEntryCreationCheckBox->isChecked());
|
2014-05-15 12:26:01 -04:00
|
|
|
config()->set("AutoTypeEntryTitleMatch",
|
|
|
|
m_generalUi->autoTypeEntryTitleMatchCheckBox->isChecked());
|
2014-05-17 19:33:22 -04:00
|
|
|
int currentLangIndex = m_generalUi->languageComboBox->currentIndex();
|
|
|
|
config()->set("GUI/Language", m_generalUi->languageComboBox->itemData(currentLangIndex).toString());
|
2014-11-02 04:15:44 -05:00
|
|
|
|
|
|
|
config()->set("GUI/ShowTrayIcon", m_generalUi->systrayShowCheckBox->isChecked());
|
|
|
|
config()->set("GUI/MinimizeToTray", m_generalUi->systrayMinimizeToTrayCheckBox->isChecked());
|
2015-06-18 09:23:41 -04:00
|
|
|
config()->set("GUI/MinimizeOnClose", m_generalUi->systrayMinimizeOnCloseCheckBox->isChecked());
|
2015-10-08 13:07:52 -04:00
|
|
|
config()->set("GUI/MinimizeOnStartup", m_generalUi->systrayMinimizeOnStartup->isChecked());
|
2014-11-02 04:15:44 -05:00
|
|
|
|
2017-02-22 10:08:06 -05:00
|
|
|
config()->set("security/autotypeask", m_generalUi->autoTypeAskCheckBox->isChecked());
|
|
|
|
|
2013-12-01 06:20:05 -05:00
|
|
|
if (autoType()->isAvailable()) {
|
|
|
|
config()->set("GlobalAutoTypeKey", m_generalUi->autoTypeShortcutWidget->key());
|
2014-01-14 15:00:27 -05:00
|
|
|
config()->set("GlobalAutoTypeModifiers",
|
|
|
|
static_cast<int>(m_generalUi->autoTypeShortcutWidget->modifiers()));
|
2013-12-01 06:20:05 -05:00
|
|
|
}
|
2012-05-27 14:10:41 -04:00
|
|
|
config()->set("security/clearclipboard", m_secUi->clearClipboardCheckBox->isChecked());
|
|
|
|
config()->set("security/clearclipboardtimeout", m_secUi->clearClipboardSpinBox->value());
|
2012-05-27 14:29:15 -04:00
|
|
|
|
2014-01-07 15:56:58 -05:00
|
|
|
config()->set("security/lockdatabaseidle", m_secUi->lockDatabaseIdleCheckBox->isChecked());
|
|
|
|
config()->set("security/lockdatabaseidlesec", m_secUi->lockDatabaseIdleSpinBox->value());
|
2016-10-25 09:17:50 -04:00
|
|
|
config()->set("security/lockdatabaseminimize", m_secUi->lockDatabaseMinimizeCheckBox->isChecked());
|
2014-01-07 15:56:58 -05:00
|
|
|
|
2014-01-12 11:23:47 -05:00
|
|
|
config()->set("security/passwordscleartext", m_secUi->passwordCleartextCheckBox->isChecked());
|
2016-11-23 21:59:24 -05:00
|
|
|
config()->set("security/passwordsrepeat", m_secUi->passwordRepeatCheckBox->isChecked());
|
2014-01-12 11:23:47 -05:00
|
|
|
|
2017-03-10 09:45:00 -05:00
|
|
|
for (const ExtraPage& page: asConst(m_extraPages)) {
|
2015-01-30 03:04:27 -05:00
|
|
|
page.saveSettings();
|
2017-03-10 09:45:00 -05:00
|
|
|
}
|
2015-01-30 03:04:27 -05:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
emit editFinished(true);
|
2012-05-27 14:29:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::reject()
|
|
|
|
{
|
2012-07-14 13:09:28 -04:00
|
|
|
// register the old key again as it might have changed
|
|
|
|
if (m_globalAutoTypeKey > 0 && m_globalAutoTypeModifiers > 0) {
|
|
|
|
autoType()->registerGlobalShortcut(m_globalAutoTypeKey, m_globalAutoTypeModifiers);
|
|
|
|
}
|
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
emit editFinished(false);
|
2012-05-27 05:09:52 -04:00
|
|
|
}
|
2012-06-10 15:54:58 -04:00
|
|
|
|
|
|
|
void SettingsWidget::enableAutoSaveOnExit(bool checked)
|
|
|
|
{
|
2012-06-12 04:11:13 -04:00
|
|
|
m_generalUi->autoSaveOnExitCheckBox->setEnabled(!checked);
|
2012-06-10 15:54:58 -04:00
|
|
|
}
|
2015-10-06 15:12:59 -04:00
|
|
|
|
2016-11-23 18:15:51 -05:00
|
|
|
void SettingsWidget::enableSystray(bool checked)
|
2015-10-06 15:12:59 -04:00
|
|
|
{
|
|
|
|
m_generalUi->systrayMinimizeToTrayCheckBox->setEnabled(checked);
|
2015-10-08 13:07:52 -04:00
|
|
|
m_generalUi->systrayMinimizeOnCloseCheckBox->setEnabled(checked);
|
2015-10-06 15:12:59 -04:00
|
|
|
}
|