Mercurial > trustbridge
comparison 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 |
comparison
equal
deleted
inserted
replaced
362:857ae1ffdd6f | 367:9491782a8f5a |
---|---|
1 #ifndef CREATECERTLISTDIALOG_H | |
2 #define CREATECERTLISTDIALOG_H | |
3 | |
4 #include <QDialog> | |
5 #include <QMainWindow> | |
6 #include <QLineEdit> | |
7 /** | |
8 * @file createinstallerdialog.h | |
9 * @brief The dialog to show settings and create an installer. | |
10 */ | |
11 | |
12 class QListWidget; | |
13 | |
14 class CreateCertListDialog : public QDialog | |
15 { | |
16 Q_OBJECT | |
17 public: | |
18 /** @brief Create a dialog showing settings for the create certificate list | |
19 * process | |
20 * */ | |
21 CreateCertListDialog(QMainWindow *parent); | |
22 | |
23 private: | |
24 void setupGUI(); | |
25 | |
26 QLineEdit *mCertFile; | |
27 QLineEdit *mSaveFile; | |
28 | |
29 private slots: | |
30 void openCertificateSelect(); | |
31 void openSaveLocation(); | |
32 void createList(); | |
33 }; | |
34 | |
35 #endif // CREATECERTLISTDIALOG_H |