Mercurial > trustbridge
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/listupdatedialog.h Wed Mar 19 11:32:25 2014 +0000 @@ -0,0 +1,22 @@ +#ifndef LISTUPDATEDIALOG_H +#define LISTUPDATEDIALOG_H + +#include "certificatelist.h" +#include <QDialog> +/** + * @file listupdatedialog.h + * @brief The dialog for certificate selection. + */ + +class ListUpdateDialog : public QDialog +{ +public: + /** @brief Create a list update dialog for the listToInstall */ + ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall); + +private: + CertificateList mCertificateList; + void setupGUI(); +}; + +#endif // LISTUPDATEDIALOG_H