xca/widgets/XcaDialog.h
Christian Hohnstädt 6ea01e80f6 Refactor item export: separate GUI and database
Collect all export formats in pki_export.

Each export format has assigned acouple of flags, indicating,
whether they are text, concatenateable, encrypted, usable for
multiple selections or only for a single item.
2021-11-13 14:49:02 +01:00

27 lines
517 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