xca/widgets/Options.h
Christian 91e4e78cef Add options dialog to set the default hash algo,
mandatory distinguished name entries and allow duplicate key use
as requested by some users.
show CRL signature alg information

Version 0.6.3
2007-05-20 10:05:10 +02:00

28 lines
456 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef OPTIONS_H
#define OPTIONS_H
#include "ui_Options.h"
#include <qdialog.h>
#include "lib/base.h"
#include "widgets/MainWindow.h"
class Options: public QDialog, public Ui::Options
{
Q_OBJECT
public:
Options(QWidget *parent);
public slots:
void on_extDNadd_clicked();
void on_extDNdel_clicked();
QString getDnString();
};
#endif