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-05-27 14:10:41 -04:00
|
|
|
#include "core/Config.h"
|
|
|
|
|
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())
|
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);
|
|
|
|
add(tr("General"), m_generalWidget);
|
2012-05-27 05:09:52 -04:00
|
|
|
add(tr("Security"), m_secWidget);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
connect(m_secUi->clearClipboardCheckBox, SIGNAL(toggled(bool)),
|
|
|
|
m_secUi->clearClipboardSpinBox, SLOT(setEnabled(bool)));
|
|
|
|
}
|
|
|
|
|
|
|
|
SettingsWidget::~SettingsWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::loadSettings()
|
|
|
|
{
|
2012-05-27 18:09:54 -04:00
|
|
|
m_generalUi->rememberLastDatabasesCheckBox->setChecked(config()->get("RememberLastDatabases").toBool());
|
2012-05-30 05:21:42 -04:00
|
|
|
m_generalUi->modifiedExpandedChangedCheckBox->setChecked(config()->get("ModifiedOnExpandedStateChanges").toBool());
|
2012-06-10 10:28:46 -04:00
|
|
|
m_generalUi->autoSaveAfterEveryChangeCheckBox->setChecked(config()->get("AutoSaveAfterEveryChange").toBool());
|
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());
|
|
|
|
|
2012-05-27 05:09:52 -04:00
|
|
|
setCurrentRow(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::saveSettings()
|
|
|
|
{
|
2012-05-27 18:09:54 -04:00
|
|
|
config()->set("RememberLastDatabases", m_generalUi->rememberLastDatabasesCheckBox->isChecked());
|
2012-05-30 05:21:42 -04:00
|
|
|
config()->set("ModifiedOnExpandedStateChanges", m_generalUi->modifiedExpandedChangedCheckBox->isChecked());
|
2012-06-10 10:28:46 -04:00
|
|
|
config()->set("AutoSaveAfterEveryChange", m_generalUi->autoSaveAfterEveryChangeCheckBox->isChecked());
|
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
|
|
|
|
|
|
|
Q_EMIT editFinished(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::reject()
|
|
|
|
{
|
|
|
|
Q_EMIT editFinished(false);
|
2012-05-27 05:09:52 -04:00
|
|
|
}
|