mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +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.
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __XCADIALOG_H
|
|
#define __XCADIALOG_H
|
|
|
|
#include <QList>
|
|
#include <QDialog>
|
|
#include "ui_XcaDialog.h"
|
|
#include "lib/db.h"
|
|
#include "MainWindow.h"
|
|
#include "Help.h"
|
|
|
|
// index = enum pki_type
|
|
static const char * const PixmapMap[] = {
|
|
"" ":keyImg", ":csrImg", ":certImg", ":revImg", ":tempImg", "", ":scardImg",
|
|
};
|
|
|
|
class XcaDialog : public QDialog, public Ui::XcaDialog
|
|
{
|
|
QWidget *widg;
|
|
public:
|
|
XcaDialog(QWidget *parent, enum pki_type type, QWidget *w, QString t,
|
|
QString desc, QString help_ctx = QString())
|
|
: QDialog(parent ?: mainwin)
|
|
{
|
|
setupUi(this);
|
|
setWindowTitle(XCA_TITLE);
|
|
image->setPixmap(QPixmap(PixmapMap[type]));
|
|
content->addWidget(w);
|
|
mainwin->helpdlg->register_ctxhelp_button(this, help_ctx);
|
|
|
|
widg = w;
|
|
title->setText(t);
|
|
if (desc.isEmpty()) {
|
|
verticalLayout->removeWidget(description);
|
|
delete description;
|
|
} else {
|
|
description->setText(desc);
|
|
}
|
|
}
|
|
void noSpacer()
|
|
{
|
|
verticalLayout->removeItem(topSpacer);
|
|
verticalLayout->removeItem(bottomSpacer);
|
|
delete topSpacer;
|
|
delete bottomSpacer;
|
|
if (widg)
|
|
widg->setSizePolicy(QSizePolicy::Expanding,
|
|
QSizePolicy::Expanding);
|
|
}
|
|
void aboutDialog(const QPixmap &left)
|
|
{
|
|
title->setPixmap(left.scaledToHeight(title->height()));
|
|
noSpacer();
|
|
resize(560, 400);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Ok);
|
|
buttonBox->centerButtons();
|
|
}
|
|
};
|
|
|
|
#endif
|