Mercurial > trustbridge
comparison ui/listupdatedialog.h @ 71:f22a99f7cb69
Add certificatelist to install as member. Look for updates on startup
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 11:32:25 +0000 |
parents | |
children | 1f27d6db5ee3 |
comparison
equal
deleted
inserted
replaced
70:64c8c6350e60 | 71:f22a99f7cb69 |
---|---|
1 #ifndef LISTUPDATEDIALOG_H | |
2 #define LISTUPDATEDIALOG_H | |
3 | |
4 #include "certificatelist.h" | |
5 #include <QDialog> | |
6 /** | |
7 * @file listupdatedialog.h | |
8 * @brief The dialog for certificate selection. | |
9 */ | |
10 | |
11 class ListUpdateDialog : public QDialog | |
12 { | |
13 public: | |
14 /** @brief Create a list update dialog for the listToInstall */ | |
15 ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall); | |
16 | |
17 private: | |
18 CertificateList mCertificateList; | |
19 void setupGUI(); | |
20 }; | |
21 | |
22 #endif // LISTUPDATEDIALOG_H |