mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
All dialogs get the "Qt::WindowModal" modality to operate the Help window in parallel while also blocking the dialog parent windows. The manageRevocations() moved from model to view The Details dialogs become more self-sufficient. There is a statc start method that shows the dialog and updates name and comment after accept(). This allows recursive starts of certificate details and independence of mainwin. It is necessary to set the current toplevel widget as parent for the next dialog to not block the application.
205 lines
5.2 KiB
C++
205 lines
5.2 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2012 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include "lib/func.h"
|
|
#include "Options.h"
|
|
#include "SearchPkcs11.h"
|
|
#include "XcaWarning.h"
|
|
#include "Help.h"
|
|
#include "lib/pki_scard.h"
|
|
#include "lib/oid.h"
|
|
#include <openssl/objects.h>
|
|
#include <QFileDialog>
|
|
#include <QToolTip>
|
|
|
|
Options::Options(QWidget *parent)
|
|
:QDialog(parent)
|
|
{
|
|
setWindowTitle(XCA_TITLE);
|
|
setupUi(this);
|
|
mainwin->helpdlg->register_ctxhelp_button(this, "options");
|
|
|
|
foreach(int nid, distname_nid) {
|
|
QString n = OBJ_nid2ln(nid);
|
|
extDNobj->addItem(n);
|
|
expDNobj->addItem(n);
|
|
}
|
|
string_opts << "MASK:0x2002" << "pkix" << "nombstr" <<
|
|
"utf8only" << "default";
|
|
QStringList s;
|
|
s << tr("Printable string or UTF8 (default)")
|
|
<< tr("PKIX recommendation in RFC2459")
|
|
<< tr("No BMP strings, only printable and T61")
|
|
<< tr("UTF8 strings only (RFC2459)")
|
|
<< tr("All strings");
|
|
mbstring->addItems(s);
|
|
mbstring->setCurrentIndex(string_opts.indexOf(Settings["string_opt"]));
|
|
|
|
searchP11 = NULL;
|
|
transDnEntries->setText(transDnEntries->text()
|
|
.arg(OBJ_nid2ln(NID_commonName))
|
|
.arg(dn_translations[NID_commonName]));
|
|
|
|
setDnString(Settings["mandatory_dn"], extDNlist);
|
|
setDnString(Settings["explicit_dn"], expDNlist);
|
|
|
|
suppress->setCheckState(Settings["suppress_messages"]);
|
|
noColorize->setCheckState(Settings["no_expire_colors"]);
|
|
transDnEntries->setCheckState(Settings["translate_dn"]);
|
|
onlyTokenHashes->setCheckState(Settings["only_token_hashes"]);
|
|
disableNetscape->setCheckState(Settings["disable_netscape"]);
|
|
adapt_explicit_subj->setCheckState(Settings["adapt_explicit_subj"]);
|
|
|
|
QStringList units;
|
|
QString x = Settings["ical_expiry"];
|
|
|
|
units << tr("Days") << "D" << tr("Weeks") << "W";
|
|
ical_expiry_unit->addItemsData(units, x.right(1));
|
|
x.chop(1);
|
|
ical_expiry_num->setText(x);
|
|
|
|
units << "%" << "%";
|
|
x = QString(Settings["cert_expiry"]);
|
|
cert_expiry_unit->addItemsData(units, x.right(1));
|
|
x.chop(1);
|
|
cert_expiry_num->setText(x);
|
|
|
|
serial_len->setValue(Settings["serial_len"]);
|
|
|
|
pkcs11List->setModel(&pkcs11::libraries);
|
|
pkcs11List->showDropIndicator();
|
|
pkcs11List->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
}
|
|
|
|
Options::~Options()
|
|
{
|
|
delete searchP11;
|
|
}
|
|
|
|
void Options::on_extDNadd_clicked()
|
|
{
|
|
extDNlist->addItem(extDNobj->currentText());
|
|
}
|
|
|
|
void Options::on_extDNdel_clicked()
|
|
{
|
|
extDNlist->takeItem(extDNlist->currentRow());
|
|
}
|
|
|
|
void Options::on_expDNadd_clicked()
|
|
{
|
|
expDNlist->addItem(expDNobj->currentText());
|
|
}
|
|
|
|
void Options::on_expDNdel_clicked()
|
|
{
|
|
expDNlist->takeItem(expDNlist->currentRow());
|
|
}
|
|
|
|
void Options::on_expDNdefault_clicked()
|
|
{
|
|
setDnString(Settings.defaults("explicit_dn"), expDNlist);
|
|
}
|
|
|
|
void Options::setDnString(QString dn, QListWidget *w)
|
|
{
|
|
QStringList dnl;
|
|
|
|
if (!dn.isEmpty())
|
|
dnl = dn.split(",");
|
|
w->clear();
|
|
for (int i=0; i < dnl.count(); i++) {
|
|
int nid = OBJ_sn2nid(CCHAR(dnl[i]));
|
|
w->addItem(OBJ_nid2ln(nid));
|
|
}
|
|
}
|
|
|
|
QString Options::getDnString(QListWidget *w)
|
|
{
|
|
QStringList dn;
|
|
|
|
for (int j=0; j<w->count(); j++) {
|
|
int nid = OBJ_ln2nid(CCHAR(w->item(j)->text()));
|
|
dn << QString(OBJ_nid2sn(nid));
|
|
}
|
|
return dn.join(",");
|
|
}
|
|
|
|
int Options::exec()
|
|
{
|
|
if (QDialog::exec() == QDialog::Rejected)
|
|
return QDialog::Rejected;
|
|
|
|
Transaction;
|
|
if (!TransBegin())
|
|
return QDialog::Rejected;
|
|
|
|
Settings["suppress_messages"] = suppress->checkState();
|
|
Settings["no_expire_colors"] = noColorize->checkState();
|
|
Settings["translate_dn"] = transDnEntries->checkState();
|
|
Settings["only_token_hashes"] = onlyTokenHashes->checkState();
|
|
Settings["disable_netscape"] = disableNetscape->checkState();
|
|
|
|
Settings["default_hash"] = hashAlgo->currentHashName();
|
|
Settings["mandatory_dn"] = getDnString(extDNlist);
|
|
Settings["explicit_dn"] = getDnString(expDNlist);
|
|
Settings["string_opt"] = string_opts[mbstring->currentIndex()];
|
|
Settings["pkcs11path"] = pkcs11::libraries.getPkcs11Provider();
|
|
|
|
Settings["cert_expiry"] = cert_expiry_num->text() +
|
|
cert_expiry_unit->currentItemData().toString();
|
|
Settings["ical_expiry"] = ical_expiry_num->text() +
|
|
ical_expiry_unit->currentItemData().toString();
|
|
Settings["serial_len"] = serial_len->value();
|
|
Settings["adapt_explicit_subj"] = adapt_explicit_subj->checkState();
|
|
|
|
return TransCommit() ? QDialog::Accepted : QDialog::Rejected;
|
|
}
|
|
|
|
void Options::on_addButton_clicked(void)
|
|
{
|
|
load_pkcs11 l;
|
|
QString fname;
|
|
|
|
fname = QFileDialog::getOpenFileName(this, l.caption,
|
|
getLibDir(), l.filter);
|
|
|
|
addLib(fname);
|
|
}
|
|
|
|
void Options::addLib(QString fname)
|
|
{
|
|
fname = QFileInfo(fname).canonicalFilePath();
|
|
pkcs11_lib *l = pkcs11::libraries.add_lib(fname);
|
|
|
|
if (searchP11 && l)
|
|
QToolTip::showText(searchP11->mapToGlobal(
|
|
QPoint(0,0)), l->driverInfo().trimmed());
|
|
}
|
|
|
|
void Options::on_removeButton_clicked(void)
|
|
{
|
|
QList<int> indexes;
|
|
foreach(QModelIndex i, pkcs11List->selectionModel()->selectedIndexes())
|
|
indexes << i.row();
|
|
|
|
/* Delete from highest to lowest index */
|
|
std::sort(indexes.begin(), indexes.end(), std::greater<int>());
|
|
foreach(int i, indexes)
|
|
pkcs11List->model()->removeRow(i);
|
|
}
|
|
|
|
void Options::on_searchPkcs11_clicked(void)
|
|
{
|
|
if (!searchP11) {
|
|
searchP11 = new SearchPkcs11(this, getLibDir());
|
|
connect(searchP11, SIGNAL(addLib(QString)),
|
|
this, SLOT(addLib(QString)));
|
|
}
|
|
searchP11->show();
|
|
}
|