mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
Closes #10783 Adds three database configuration options (stored as public custom data) that allow a database to have a public name/summary, color, and/or icon to be displayed on the unlock screen. This information is configured in the Database Settings and stored in the database public custom data (ie, unencrypted). The name/summary is stored in KPXC_PUBLIC_NAME, the color is stored in KPXC_PUBLIC_COLOR, and the icon is stored in KPXC_PUBLIC_ICON. --------- Co-authored-by: Jonathan White <support@dmapps.us>
253 lines
9.8 KiB
C++
253 lines
9.8 KiB
C++
/*
|
|
* Copyright (C) 2023 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* 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 "DatabaseSettingsWidgetGeneral.h"
|
|
#include "ui_DatabaseSettingsWidgetGeneral.h"
|
|
|
|
#include <QColorDialog>
|
|
#include <QDialogButtonBox>
|
|
#include <QInputDialog>
|
|
#include <QListView>
|
|
|
|
#include "core/Clock.h"
|
|
#include "core/Group.h"
|
|
#include "core/Metadata.h"
|
|
#include "gui/DatabaseIcons.h"
|
|
#include "gui/IconModels.h"
|
|
#include "gui/MessageBox.h"
|
|
|
|
DatabaseSettingsWidgetGeneral::DatabaseSettingsWidgetGeneral(QWidget* parent)
|
|
: DatabaseSettingsWidget(parent)
|
|
, m_ui(new Ui::DatabaseSettingsWidgetGeneral())
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
connect(m_ui->dbPublicColorButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetGeneral::pickPublicColor);
|
|
connect(m_ui->dbPublicColorClearButton, &QPushButton::clicked, this, [this] { setupPublicColorButton({}); });
|
|
connect(m_ui->dbPublicIconButton, &QPushButton::clicked, this, &DatabaseSettingsWidgetGeneral::pickPublicIcon);
|
|
connect(m_ui->dbPublicIconClearButton, &QPushButton::clicked, this, [this] { setupPublicIconButton(-1); });
|
|
|
|
connect(m_ui->historyMaxItemsCheckBox, SIGNAL(toggled(bool)), m_ui->historyMaxItemsSpinBox, SLOT(setEnabled(bool)));
|
|
connect(m_ui->historyMaxSizeCheckBox, SIGNAL(toggled(bool)), m_ui->historyMaxSizeSpinBox, SLOT(setEnabled(bool)));
|
|
connect(m_ui->autosaveDelayCheckBox, SIGNAL(toggled(bool)), m_ui->autosaveDelaySpinBox, SLOT(setEnabled(bool)));
|
|
}
|
|
|
|
DatabaseSettingsWidgetGeneral::~DatabaseSettingsWidgetGeneral() = default;
|
|
|
|
void DatabaseSettingsWidgetGeneral::initialize()
|
|
{
|
|
Metadata* meta = m_db->metadata();
|
|
|
|
m_ui->dbNameEdit->setText(meta->name());
|
|
m_ui->dbDescriptionEdit->setText(meta->description());
|
|
m_ui->recycleBinEnabledCheckBox->setChecked(meta->recycleBinEnabled());
|
|
m_ui->defaultUsernameEdit->setText(meta->defaultUserName());
|
|
m_ui->compressionCheckbox->setChecked(m_db->compressionAlgorithm() != Database::CompressionNone);
|
|
|
|
m_ui->dbPublicName->setText(m_db->publicName());
|
|
setupPublicColorButton(m_db->publicColor());
|
|
setupPublicIconButton(m_db->publicIcon());
|
|
|
|
if (meta->historyMaxItems() > -1) {
|
|
m_ui->historyMaxItemsSpinBox->setValue(meta->historyMaxItems());
|
|
m_ui->historyMaxItemsCheckBox->setChecked(true);
|
|
} else {
|
|
m_ui->historyMaxItemsSpinBox->setValue(Metadata::DefaultHistoryMaxItems);
|
|
m_ui->historyMaxItemsSpinBox->setEnabled(false);
|
|
m_ui->historyMaxItemsCheckBox->setChecked(false);
|
|
}
|
|
int historyMaxSizeMiB = qRound(meta->historyMaxSize() / qreal(1024 * 1024));
|
|
if (historyMaxSizeMiB > 0) {
|
|
m_ui->historyMaxSizeSpinBox->setValue(historyMaxSizeMiB);
|
|
m_ui->historyMaxSizeCheckBox->setChecked(true);
|
|
} else {
|
|
m_ui->historyMaxSizeSpinBox->setValue(qRound(Metadata::DefaultHistoryMaxSize / qreal(1024 * 1024)));
|
|
m_ui->historyMaxSizeSpinBox->setEnabled(false);
|
|
m_ui->historyMaxSizeCheckBox->setChecked(false);
|
|
}
|
|
if (meta->autosaveDelayMin() > 0) {
|
|
m_ui->autosaveDelaySpinBox->setValue(meta->autosaveDelayMin());
|
|
m_ui->autosaveDelayCheckBox->setChecked(true);
|
|
} else {
|
|
m_ui->autosaveDelayCheckBox->setChecked(false);
|
|
m_ui->autosaveDelaySpinBox->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::uninitialize()
|
|
{
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::showEvent(QShowEvent* event)
|
|
{
|
|
QWidget::showEvent(event);
|
|
m_ui->dbNameEdit->setFocus();
|
|
}
|
|
|
|
bool DatabaseSettingsWidgetGeneral::saveSettings()
|
|
{
|
|
auto* meta = m_db->metadata();
|
|
|
|
if (!m_ui->recycleBinEnabledCheckBox->isChecked() && meta->recycleBinEnabled()) {
|
|
auto recycleBin = meta->recycleBin();
|
|
if (recycleBin && !recycleBin->isEmpty()) {
|
|
auto result = MessageBox::question(this,
|
|
tr("Delete Recycle Bin"),
|
|
tr("Do you want to delete the current recycle bin and all its "
|
|
"contents?\nThis action is not reversible."),
|
|
MessageBox::Delete | MessageBox::No,
|
|
MessageBox::No);
|
|
|
|
if (result == MessageBox::Delete) {
|
|
recycleBin->deleteLater();
|
|
} else {
|
|
recycleBin->setName(recycleBin->name().append(tr(" (old)")));
|
|
recycleBin->setIcon(Group::DefaultIconNumber);
|
|
}
|
|
}
|
|
|
|
meta->setRecycleBin(nullptr);
|
|
}
|
|
|
|
m_db->setCompressionAlgorithm(m_ui->compressionCheckbox->isChecked() ? Database::CompressionGZip
|
|
: Database::CompressionNone);
|
|
|
|
meta->setName(m_ui->dbNameEdit->text());
|
|
meta->setDescription(m_ui->dbDescriptionEdit->text());
|
|
meta->setDefaultUserName(m_ui->defaultUsernameEdit->text());
|
|
meta->setRecycleBinEnabled(m_ui->recycleBinEnabledCheckBox->isChecked());
|
|
meta->setSettingsChanged(Clock::currentDateTimeUtc());
|
|
|
|
m_db->setPublicName(m_ui->dbPublicName->text());
|
|
m_db->setPublicColor(m_ui->dbPublicColorButton->property("color").toString());
|
|
m_db->setPublicIcon(m_ui->dbPublicIconButton->property("iconIndex").toInt());
|
|
|
|
bool truncate = false;
|
|
|
|
int historyMaxItems;
|
|
if (m_ui->historyMaxItemsCheckBox->isChecked()) {
|
|
historyMaxItems = m_ui->historyMaxItemsSpinBox->value();
|
|
} else {
|
|
historyMaxItems = -1;
|
|
}
|
|
if (historyMaxItems != meta->historyMaxItems()) {
|
|
meta->setHistoryMaxItems(historyMaxItems);
|
|
truncate = true;
|
|
}
|
|
|
|
int historyMaxSize;
|
|
if (m_ui->historyMaxSizeCheckBox->isChecked()) {
|
|
historyMaxSize = m_ui->historyMaxSizeSpinBox->value() * 1048576;
|
|
} else {
|
|
historyMaxSize = -1;
|
|
}
|
|
if (historyMaxSize != meta->historyMaxSize()) {
|
|
meta->setHistoryMaxSize(historyMaxSize);
|
|
truncate = true;
|
|
}
|
|
|
|
int autosaveDelayMin = 0;
|
|
if (m_ui->autosaveDelayCheckBox->isChecked()) {
|
|
autosaveDelayMin = m_ui->autosaveDelaySpinBox->value();
|
|
}
|
|
meta->setAutosaveDelayMin(autosaveDelayMin);
|
|
|
|
if (truncate) {
|
|
const QList<Entry*> allEntries = m_db->rootGroup()->entriesRecursive(false);
|
|
for (Entry* entry : allEntries) {
|
|
entry->truncateHistory();
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::pickPublicColor()
|
|
{
|
|
auto oldColor = QColor(m_ui->dbPublicColorButton->property("color").toString());
|
|
auto newColor = QColorDialog::getColor(oldColor);
|
|
if (newColor.isValid()) {
|
|
setupPublicColorButton(newColor);
|
|
}
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::setupPublicColorButton(const QColor& color)
|
|
{
|
|
m_ui->dbPublicColorClearButton->setVisible(color.isValid());
|
|
if (color.isValid()) {
|
|
m_ui->dbPublicColorButton->setStyleSheet(QString("background-color:%1").arg(color.name()));
|
|
m_ui->dbPublicColorButton->setProperty("color", color.name());
|
|
} else {
|
|
m_ui->dbPublicColorButton->setStyleSheet("");
|
|
m_ui->dbPublicColorButton->setProperty("color", {});
|
|
}
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::pickPublicIcon()
|
|
{
|
|
QDialog dialog(this);
|
|
dialog.setSizeGripEnabled(false);
|
|
dialog.setWindowTitle(tr("Select Database Icon"));
|
|
|
|
auto iconList = new QListView;
|
|
iconList->setFlow(QListView::LeftToRight);
|
|
iconList->setMovement(QListView::Static);
|
|
iconList->setResizeMode(QListView::Adjust);
|
|
iconList->setWrapping(true);
|
|
iconList->setSpacing(4);
|
|
|
|
auto iconModel = new DefaultIconModel;
|
|
iconList->setModel(iconModel);
|
|
if (m_ui->dbPublicIconButton->property("iconIndex").toInt() >= 0) {
|
|
iconList->setCurrentIndex(iconModel->index(m_ui->dbPublicIconButton->property("iconIndex").toInt(), 0));
|
|
} else {
|
|
iconList->setCurrentIndex(iconModel->index(0, 0));
|
|
}
|
|
|
|
auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
|
|
auto layout = new QVBoxLayout(&dialog);
|
|
layout->addWidget(iconList);
|
|
layout->addWidget(buttonBox);
|
|
|
|
// Resize the dialog to fit the default icon list
|
|
auto cellSize = iconList->sizeHintForIndex(iconModel->index(0, 0));
|
|
auto spacing = iconList->spacing() * 2;
|
|
dialog.resize((cellSize.width() + spacing) * 15, (cellSize.height() + spacing) * 6 + 16);
|
|
|
|
connect(iconList, &QListView::doubleClicked, &dialog, &QDialog::accept);
|
|
connect(buttonBox, &QDialogButtonBox::accepted, &dialog, &QDialog::accept);
|
|
connect(buttonBox, &QDialogButtonBox::rejected, &dialog, &QDialog::reject);
|
|
connect(
|
|
&dialog, &QDialog::accepted, this, [this, iconList] { setupPublicIconButton(iconList->currentIndex().row()); });
|
|
|
|
dialog.exec();
|
|
}
|
|
|
|
void DatabaseSettingsWidgetGeneral::setupPublicIconButton(int iconIndex)
|
|
{
|
|
auto valid = iconIndex >= 0 && iconIndex < databaseIcons()->count();
|
|
m_ui->dbPublicIconClearButton->setVisible(valid);
|
|
if (valid) {
|
|
m_ui->dbPublicIconButton->setIcon(databaseIcons()->icon(iconIndex));
|
|
m_ui->dbPublicIconButton->setProperty("iconIndex", iconIndex);
|
|
m_ui->dbPublicIconClearButton->setVisible(true);
|
|
} else {
|
|
m_ui->dbPublicIconButton->setIcon(QIcon());
|
|
m_ui->dbPublicIconButton->setProperty("iconIndex", -1);
|
|
m_ui->dbPublicIconClearButton->setVisible(false);
|
|
}
|
|
}
|