2011-11-13 08:55:20 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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 "KeyOpenDialog.h"
|
|
|
|
#include "ui_KeyOpenDialog.h"
|
|
|
|
|
2011-12-24 13:19:52 -05:00
|
|
|
#include <QtGui/QMessageBox>
|
|
|
|
|
2011-12-25 14:36:45 -05:00
|
|
|
#include "core/Config.h"
|
2011-12-25 19:21:29 -05:00
|
|
|
#include "gui/FileDialog.h"
|
2011-12-24 13:19:52 -05:00
|
|
|
#include "keys/FileKey.h"
|
2011-11-13 08:55:20 -05:00
|
|
|
#include "keys/PasswordKey.h"
|
|
|
|
|
2011-12-25 14:36:45 -05:00
|
|
|
KeyOpenDialog::KeyOpenDialog(const QString& filename, QWidget* parent)
|
2011-11-13 08:55:20 -05:00
|
|
|
: QDialog(parent)
|
|
|
|
, m_ui(new Ui::KeyOpenDialog())
|
2011-12-25 14:36:45 -05:00
|
|
|
, m_filename(filename)
|
2011-11-13 08:55:20 -05:00
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
2011-12-24 13:19:52 -05:00
|
|
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
|
|
|
|
2011-11-16 12:46:09 -05:00
|
|
|
connect(m_ui->buttonTogglePassword, SIGNAL(toggled(bool)), SLOT(togglePassword(bool)));
|
2011-12-24 13:19:52 -05:00
|
|
|
connect(m_ui->buttonBrowseFile, SIGNAL(clicked()), SLOT(browseKeyFile()));
|
|
|
|
|
2011-11-16 12:46:09 -05:00
|
|
|
connect(m_ui->editPassword, SIGNAL(textChanged(QString)), SLOT(activatePassword()));
|
2011-12-24 13:19:52 -05:00
|
|
|
connect(m_ui->comboKeyFile, SIGNAL(editTextChanged(QString)), SLOT(activateKeyFile()));
|
|
|
|
|
|
|
|
connect(m_ui->checkPassword, SIGNAL(toggled(bool)), SLOT(setOkButtonEnabled()));
|
|
|
|
connect(m_ui->checkKeyFile, SIGNAL(toggled(bool)), SLOT(setOkButtonEnabled()));
|
|
|
|
connect(m_ui->comboKeyFile, SIGNAL(editTextChanged(QString)), SLOT(setOkButtonEnabled()));
|
|
|
|
|
2011-11-13 08:55:20 -05:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(accepted()), SLOT(createKey()));
|
2011-12-24 13:19:52 -05:00
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), SLOT(reject()));
|
2011-12-25 14:36:45 -05:00
|
|
|
|
|
|
|
QHash<QString,QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
|
|
|
if (lastKeyFiles.contains(m_filename)) {
|
|
|
|
m_ui->checkKeyFile->setChecked(true);
|
|
|
|
m_ui->comboKeyFile->addItem(lastKeyFiles[m_filename].toString());
|
|
|
|
}
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
KeyOpenDialog::~KeyOpenDialog()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CompositeKey KeyOpenDialog::key()
|
|
|
|
{
|
|
|
|
return m_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KeyOpenDialog::createKey()
|
|
|
|
{
|
|
|
|
if (m_ui->checkPassword->isChecked()) {
|
|
|
|
m_key.addKey(PasswordKey(m_ui->editPassword->text()));
|
|
|
|
}
|
|
|
|
|
2011-12-25 14:36:45 -05:00
|
|
|
QHash<QString,QVariant> lastKeyFiles = config()->get("LastKeyFiles").toHash();
|
|
|
|
|
2011-11-13 08:55:20 -05:00
|
|
|
if (m_ui->checkKeyFile->isChecked()) {
|
2011-12-24 13:19:52 -05:00
|
|
|
FileKey key;
|
2011-12-25 14:36:45 -05:00
|
|
|
QString keyFilename = m_ui->comboKeyFile->currentText();
|
2011-12-24 13:19:52 -05:00
|
|
|
QString errorMsg;
|
2011-12-25 14:36:45 -05:00
|
|
|
if (!key.load(keyFilename, &errorMsg)) {
|
2011-12-24 13:19:52 -05:00
|
|
|
QMessageBox::warning(this, tr("Error"), tr("Can't open key file:\n%1").arg(errorMsg));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_key.addKey(key);
|
2011-12-25 14:36:45 -05:00
|
|
|
lastKeyFiles[m_filename] = keyFilename;
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
2011-12-25 14:36:45 -05:00
|
|
|
else {
|
|
|
|
lastKeyFiles.remove(m_filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
config()->set("LastKeyFiles", lastKeyFiles);
|
2011-12-24 13:19:52 -05:00
|
|
|
|
|
|
|
accept();
|
2011-11-13 08:55:20 -05:00
|
|
|
}
|
2011-11-16 12:46:09 -05:00
|
|
|
|
|
|
|
void KeyOpenDialog::togglePassword(bool checked)
|
|
|
|
{
|
|
|
|
m_ui->editPassword->setEchoMode(checked ? QLineEdit::Password : QLineEdit::Normal);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KeyOpenDialog::activatePassword()
|
|
|
|
{
|
|
|
|
m_ui->checkPassword->setChecked(true);
|
|
|
|
}
|
2011-12-24 13:19:52 -05:00
|
|
|
|
|
|
|
void KeyOpenDialog::activateKeyFile()
|
|
|
|
{
|
|
|
|
m_ui->checkKeyFile->setChecked(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KeyOpenDialog::setOkButtonEnabled()
|
|
|
|
{
|
|
|
|
bool enable = m_ui->checkPassword->isChecked() || (m_ui->checkKeyFile->isChecked() && !m_ui->comboKeyFile->currentText().isEmpty());
|
|
|
|
|
|
|
|
m_ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void KeyOpenDialog::browseKeyFile()
|
|
|
|
{
|
|
|
|
QString filters = QString("%1 (*);;%2 (*.key)").arg(tr("All files"), tr("Key files"));
|
2011-12-25 19:21:29 -05:00
|
|
|
QString filename = fileDialog()->getOpenFileName(this, tr("Select key file"), QString(), filters);
|
2011-12-24 13:19:52 -05:00
|
|
|
|
|
|
|
if (!filename.isEmpty()) {
|
2011-12-25 14:36:45 -05:00
|
|
|
m_ui->comboKeyFile->lineEdit()->setText(filename);
|
2011-12-24 13:19:52 -05:00
|
|
|
}
|
|
|
|
}
|