mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
Why? - QT will switch from qmake to cmake sooner or later. - autotools are good for unix-ish systems, cmake also for macOS and Xcode as well as Windows and VS-code - Cross compiling the windows-binaries on linux is not very helpful to attract windows-centric developers. Also drop qmake's xca.pro Generate man-page and sphinx sources of commandline arguments during build by executing xca (xcadoc.cpp). Generating Version-patchlevel and git hash is now also OS independent.
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#include <QPixmap>
|
|
#include "XcaDialog.h"
|
|
#include "MainWindow.h"
|
|
#include "Help.h"
|
|
|
|
// index = enum pki_type
|
|
static const char * const PixmapMap[] = {
|
|
"" ":keyImg", ":csrImg", ":certImg", ":revImg", ":tempImg", "", ":scardImg",
|
|
};
|
|
|
|
XcaDialog::XcaDialog(QWidget *parent, enum pki_type type, QWidget *w,
|
|
const QString &t, const QString &desc,
|
|
const QString &help_ctx)
|
|
: 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 XcaDialog::noSpacer()
|
|
{
|
|
verticalLayout->removeItem(topSpacer);
|
|
verticalLayout->removeItem(bottomSpacer);
|
|
delete topSpacer;
|
|
delete bottomSpacer;
|
|
if (widg)
|
|
widg->setSizePolicy(QSizePolicy::Expanding,
|
|
QSizePolicy::Expanding);
|
|
}
|
|
|
|
void XcaDialog::aboutDialog(const QPixmap &left)
|
|
{
|
|
title->setPixmap(left.scaledToHeight(title->height()));
|
|
noSpacer();
|
|
resize(560, 400);
|
|
buttonBox->setStandardButtons(QDialogButtonBox::Ok);
|
|
buttonBox->centerButtons();
|
|
}
|