mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-22 12:41:19 -05:00
1ad0184473
* Only clear password field when switching tabs or minimizing. This prevents the setting "Remember Key Files and Hardware Keys" from being useless with multiple databases. * Convert key file field to Line Edit, simplifies usage. Fix clear field button as well. * Removed need for clearForms to check if the database is being opened (was a solution to tab switching while unlocking, no longer a problem).
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
/*
|
|
* 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 "KeePass1OpenWidget.h"
|
|
#include "ui_DatabaseOpenWidget.h"
|
|
|
|
#include <QFile>
|
|
#include <QFileInfo>
|
|
|
|
#include "core/Database.h"
|
|
#include "core/Metadata.h"
|
|
#include "format/KeePass1Reader.h"
|
|
#include "gui/MessageBox.h"
|
|
|
|
KeePass1OpenWidget::KeePass1OpenWidget(QWidget* parent)
|
|
: DatabaseOpenWidget(parent)
|
|
{
|
|
m_ui->labelHeadline->setText(tr("Import KeePass1 Database"));
|
|
}
|
|
|
|
void KeePass1OpenWidget::openDatabase()
|
|
{
|
|
KeePass1Reader reader;
|
|
|
|
QString password;
|
|
QString keyFileName = m_ui->keyFileLineEdit->text();
|
|
|
|
if (!m_ui->editPassword->text().isEmpty() || m_retryUnlockWithEmptyPassword) {
|
|
password = m_ui->editPassword->text();
|
|
}
|
|
|
|
QFile file(m_filename);
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
|
m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(file.errorString()),
|
|
MessageWidget::Error);
|
|
return;
|
|
}
|
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
|
m_db = reader.readDatabase(&file, password, keyFileName);
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
if (m_db) {
|
|
m_db->metadata()->setName(QFileInfo(m_filename).completeBaseName());
|
|
emit dialogFinished(true);
|
|
clearForms();
|
|
} else {
|
|
m_ui->messageWidget->showMessage(tr("Unable to open the database.").append("\n").append(reader.errorString()),
|
|
MessageWidget::Error);
|
|
}
|
|
}
|