mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-04 15:39:34 +01:00
* Fixes #10723 - only display password strength warning when actively editing the password * Also improve behavior of minimum quality warning * Improve behavior and handling of password changes with the database settings dialog * Prevents loss of newly entered password when toggling between elements in the settings page * On error, switch to tab that prevents saving database settings for easier correction
137 lines
4.1 KiB
C++
137 lines
4.1 KiB
C++
/*
|
|
* Copyright (C) 2018 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 "KeyComponentWidget.h"
|
|
#include "ui_KeyComponentWidget.h"
|
|
|
|
#include <QTimer>
|
|
|
|
KeyComponentWidget::KeyComponentWidget(QWidget* parent)
|
|
: QWidget(parent)
|
|
, m_ui(new Ui::KeyComponentWidget())
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
connect(m_ui->addButton, SIGNAL(clicked(bool)), SIGNAL(componentAddRequested()));
|
|
connect(m_ui->changeButton, SIGNAL(clicked(bool)), SIGNAL(componentEditRequested()));
|
|
connect(m_ui->removeButton, SIGNAL(clicked(bool)), SIGNAL(componentRemovalRequested()));
|
|
connect(m_ui->cancelButton, SIGNAL(clicked(bool)), SLOT(cancelEdit()));
|
|
|
|
connect(m_ui->stackedWidget, SIGNAL(currentChanged(int)), SLOT(resetComponentEditWidget()));
|
|
|
|
connect(this, SIGNAL(componentAddRequested()), SLOT(doAdd()));
|
|
connect(this, SIGNAL(componentEditRequested()), SLOT(doEdit()));
|
|
connect(this, SIGNAL(componentRemovalRequested()), SLOT(doRemove()));
|
|
connect(this, SIGNAL(componentAddChanged(bool)), SLOT(updateAddStatus(bool)));
|
|
|
|
bool prev = m_ui->stackedWidget->blockSignals(true);
|
|
m_ui->stackedWidget->setCurrentIndex(Page::AddNew);
|
|
m_ui->stackedWidget->blockSignals(prev);
|
|
}
|
|
|
|
KeyComponentWidget::~KeyComponentWidget()
|
|
{
|
|
}
|
|
|
|
void KeyComponentWidget::setComponentAdded(bool added)
|
|
{
|
|
if (m_isComponentAdded == added) {
|
|
return;
|
|
}
|
|
|
|
m_isComponentAdded = added;
|
|
emit componentAddChanged(added);
|
|
}
|
|
|
|
bool KeyComponentWidget::componentAdded() const
|
|
{
|
|
return m_isComponentAdded;
|
|
}
|
|
|
|
void KeyComponentWidget::changeVisiblePage(KeyComponentWidget::Page page)
|
|
{
|
|
m_previousPage = static_cast<Page>(m_ui->stackedWidget->currentIndex());
|
|
m_ui->stackedWidget->setCurrentIndex(page);
|
|
}
|
|
|
|
KeyComponentWidget::Page KeyComponentWidget::visiblePage() const
|
|
{
|
|
return static_cast<Page>(m_ui->stackedWidget->currentIndex());
|
|
}
|
|
|
|
void KeyComponentWidget::updateAddStatus(bool added)
|
|
{
|
|
if (m_ui->stackedWidget->currentIndex() == Page::Edit) {
|
|
emit editCanceled();
|
|
}
|
|
|
|
if (added) {
|
|
m_ui->stackedWidget->setCurrentIndex(Page::LeaveOrRemove);
|
|
} else {
|
|
m_ui->stackedWidget->setCurrentIndex(Page::AddNew);
|
|
}
|
|
}
|
|
|
|
void KeyComponentWidget::doAdd()
|
|
{
|
|
changeVisiblePage(Page::Edit);
|
|
}
|
|
|
|
void KeyComponentWidget::doEdit()
|
|
{
|
|
changeVisiblePage(Page::Edit);
|
|
}
|
|
|
|
void KeyComponentWidget::doRemove()
|
|
{
|
|
changeVisiblePage(Page::AddNew);
|
|
}
|
|
|
|
void KeyComponentWidget::cancelEdit()
|
|
{
|
|
m_ui->stackedWidget->setCurrentIndex(m_previousPage);
|
|
emit editCanceled();
|
|
}
|
|
|
|
void KeyComponentWidget::resetComponentEditWidget()
|
|
{
|
|
if (!m_componentWidget || static_cast<Page>(m_ui->stackedWidget->currentIndex()) == Page::Edit) {
|
|
if (m_componentWidget) {
|
|
delete m_componentWidget;
|
|
}
|
|
|
|
m_componentWidget = componentEditWidget();
|
|
m_ui->componentWidgetLayout->addWidget(m_componentWidget);
|
|
initComponentEditWidget(m_componentWidget);
|
|
}
|
|
|
|
QTimer::singleShot(0, this, SLOT(updateSize()));
|
|
}
|
|
|
|
void KeyComponentWidget::updateSize()
|
|
{
|
|
for (int i = 0; i < m_ui->stackedWidget->count(); ++i) {
|
|
if (m_ui->stackedWidget->currentIndex() == i) {
|
|
m_ui->stackedWidget->widget(i)->setSizePolicy(
|
|
m_ui->stackedWidget->widget(i)->sizePolicy().horizontalPolicy(), QSizePolicy::Preferred);
|
|
} else {
|
|
m_ui->stackedWidget->widget(i)->setSizePolicy(
|
|
m_ui->stackedWidget->widget(i)->sizePolicy().horizontalPolicy(), QSizePolicy::Ignored);
|
|
}
|
|
}
|
|
}
|