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.
85 lines
2.0 KiB
C++
85 lines
2.0 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2010 - 2011 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
#include "NewCrl.h"
|
|
#include "XcaDialog.h"
|
|
#include "validity.h"
|
|
#include "MainWindow.h"
|
|
#include "lib/base.h"
|
|
#include "lib/func.h"
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QComboBox>
|
|
#include <QCheckBox>
|
|
#include <QMessageBox>
|
|
|
|
NewCrl::NewCrl(const crljob &j, QWidget *w)
|
|
: QWidget(w ?: mainwin), task(j)
|
|
{
|
|
pki_x509 *issuer = task.issuer;
|
|
pki_key *key = issuer->getRefKey();
|
|
|
|
setupUi(this);
|
|
dateBox->setTitle(issuer->getIntName());
|
|
validNumber->setText(QString::number(task.crlDays));
|
|
validRange->setCurrentIndex(0);
|
|
on_applyTime_clicked();
|
|
nextUpdate->setEndDate(true);
|
|
|
|
hashAlgo->setKeyType(key->getKeyType());
|
|
hashAlgo->setupHashes(key->possibleHashNids());
|
|
hashAlgo->setCurrentMD(task.hashAlgo);
|
|
|
|
crlNumber->setText(task.crlNumber.toDec());
|
|
if (issuer->hasExtension(NID_subject_alt_name)) {
|
|
subAltName->setEnabled(true);
|
|
subAltName->setChecked(task.subAltName);
|
|
} else {
|
|
subAltName->setEnabled(false);
|
|
}
|
|
revocationReasons->setChecked(task.withReason);
|
|
authKeyId->setChecked(task.authKeyId);
|
|
}
|
|
|
|
crljob NewCrl::getCrlJob() const
|
|
{
|
|
crljob t = task;
|
|
t.withReason = revocationReasons->isChecked();
|
|
t.authKeyId = authKeyId->isChecked();
|
|
t.subAltName = subAltName->isChecked();
|
|
t.setCrlNumber = setCrlNumber->isChecked();
|
|
t.lastUpdate = lastUpdate->getDate();
|
|
t.nextUpdate = nextUpdate->getDate();
|
|
return t;
|
|
}
|
|
|
|
void NewCrl::on_applyTime_clicked()
|
|
{
|
|
nextUpdate->setDiff(lastUpdate, validNumber->text().toInt(),
|
|
validRange->currentIndex());
|
|
}
|
|
|
|
NewCrl::~NewCrl()
|
|
{
|
|
qDebug() << "NewCrl::~NewCrl() -- DELETED";
|
|
}
|
|
|
|
void NewCrl::newCrl(QWidget *parent, pki_x509 *issuer)
|
|
{
|
|
crljob task(issuer);
|
|
NewCrl *widget = new NewCrl(task);
|
|
XcaDialog *dlg = new XcaDialog(parent, revocation, widget,
|
|
tr("Create CRL"), QString(), "crlgenerate");
|
|
if (dlg->exec()) {
|
|
db_crl *db = Database.model<db_crl>();
|
|
if (db)
|
|
db->newCrl(widget->getCrlJob());
|
|
}
|
|
delete dlg;
|
|
}
|