mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
43 lines
863 B
C++
43 lines
863 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2009 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __OPTIONS_H
|
|
#define __OPTIONS_H
|
|
|
|
#include "ui_Options.h"
|
|
#include <QtGui/QDialog>
|
|
#include "lib/base.h"
|
|
#include "SearchPkcs11.h"
|
|
#include "MainWindow.h"
|
|
|
|
class Options: public QDialog, public Ui::Options
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
SearchPkcs11 *searchP11;
|
|
QStringList string_opts;
|
|
MainWindow *mw;
|
|
public:
|
|
Options(MainWindow *parent);
|
|
~Options();
|
|
void setupPkcs11Provider(QString list);
|
|
void setStringOpt(const QString string_opt);
|
|
QString getDnString();
|
|
QString getStringOpt();
|
|
QString getPkcs11Provider();
|
|
|
|
public slots:
|
|
void on_extDNadd_clicked();
|
|
void on_extDNdel_clicked();
|
|
void on_addButton_clicked(void);
|
|
void on_removeButton_clicked(void);
|
|
void on_searchPkcs11_clicked(void);
|
|
void addLib(QString);
|
|
};
|
|
|
|
#endif
|