Files
keepassxc/src/gui/wizard/NewDatabaseWizardPage.cpp
Sami Vänttinen fbdd97b1be Refactor Database Settings (#9485)
Includes following changes:

* Encryption Settings now has a similar key with the new database wizard for switching between Advanced and Simple Settings
* The extra UI layer DatabaseSettingsDialog.ui has been removed. DatabaseSettingsDialog class now inherits EditWidget instead of DialogyWidget (just like Application Settings).
* Extra classes for separate page settings (DatabaseSettingsPageFdoSecrets, DatabaseSettingsPageKeeShare) have been removed. Instead the widgets are used directly in DatabaseSettingsDialog. Same could be done later to Application 

---------

Co-authored-by: Jonathan White <support@dmapps.us>
2024-06-22 07:25:32 -04:00

86 lines
2.2 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 "NewDatabaseWizardPage.h"
#include "ui_NewDatabaseWizardPage.h"
#include "core/Database.h"
#include "gui/dbsettings/DatabaseSettingsWidget.h"
NewDatabaseWizardPage::NewDatabaseWizardPage(QWidget* parent)
: QWizardPage(parent)
, m_ui(new Ui::NewDatabaseWizardPage())
{
m_ui->setupUi(this);
}
NewDatabaseWizardPage::~NewDatabaseWizardPage() = default;
/**
* Set the database settings page widget for this wizard page.
* The wizard page will take ownership of the settings page widget.
*
* @param page database settings page widget
*/
void NewDatabaseWizardPage::setPageWidget(DatabaseSettingsWidget* page)
{
m_pageWidget = page;
m_ui->pageContent->setWidget(m_pageWidget);
}
/**
* @return database settings widget of this page widget.
*/
DatabaseSettingsWidget* NewDatabaseWizardPage::pageWidget()
{
return m_pageWidget;
}
/**
* Set the database to be configured by the wizard page.
* The wizard will NOT take ownership of the database object.
*
* @param db database object to be configured
*/
void NewDatabaseWizardPage::setDatabase(QSharedPointer<Database> db)
{
m_db = std::move(db);
}
void NewDatabaseWizardPage::initializePage()
{
Q_ASSERT(m_pageWidget && m_db);
if (!m_pageWidget || !m_db) {
return;
}
m_pageWidget->loadSettings(m_db);
}
bool NewDatabaseWizardPage::validatePage()
{
Q_ASSERT(m_pageWidget && m_db);
if (!m_pageWidget || !m_db) {
return false;
}
bool valid = m_pageWidget->saveSettings();
m_pageWidget->uninitialize();
return valid;
}