Mercurial > trustbridge
diff ui/createcertlistdialog.h @ 367:9491782a8f5a
Added dialog to create a signed certificate list file.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 15 Apr 2014 09:43:53 +0200 |
parents | |
children | 17e1c8f37d72 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/createcertlistdialog.h Tue Apr 15 09:43:53 2014 +0200 @@ -0,0 +1,35 @@ +#ifndef CREATECERTLISTDIALOG_H +#define CREATECERTLISTDIALOG_H + +#include <QDialog> +#include <QMainWindow> +#include <QLineEdit> +/** + * @file createinstallerdialog.h + * @brief The dialog to show settings and create an installer. + */ + +class QListWidget; + +class CreateCertListDialog : public QDialog +{ + Q_OBJECT +public: + /** @brief Create a dialog showing settings for the create certificate list + * process + * */ + CreateCertListDialog(QMainWindow *parent); + +private: + void setupGUI(); + + QLineEdit *mCertFile; + QLineEdit *mSaveFile; + +private slots: + void openCertificateSelect(); + void openSaveLocation(); + void createList(); +}; + +#endif // CREATECERTLISTDIALOG_H