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.
27 lines
513 B
C++
27 lines
513 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __XCADIALOG_H
|
|
#define __XCADIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_XcaDialog.h"
|
|
#include "lib/pki_base.h"
|
|
|
|
class XcaDialog : public QDialog, public Ui::XcaDialog
|
|
{
|
|
QWidget *widg;
|
|
public:
|
|
XcaDialog(QWidget *parent, enum pki_type type, QWidget *w,
|
|
const QString &t, const QString &desc,
|
|
const QString &help_ctx = QString());
|
|
void noSpacer();
|
|
void aboutDialog(const QPixmap &left);
|
|
};
|
|
|
|
#endif
|