aheinecke@71: #ifndef LISTUPDATEDIALOG_H aheinecke@71: #define LISTUPDATEDIALOG_H aheinecke@71: aheinecke@71: #include "certificatelist.h" aheinecke@71: #include aheinecke@71: /** aheinecke@71: * @file listupdatedialog.h aheinecke@71: * @brief The dialog for certificate selection. aheinecke@71: */ aheinecke@71: aheinecke@71: class ListUpdateDialog : public QDialog aheinecke@71: { aheinecke@71: public: aheinecke@71: /** @brief Create a list update dialog for the listToInstall */ aheinecke@71: ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall); aheinecke@71: aheinecke@71: private: aheinecke@71: CertificateList mCertificateList; aheinecke@71: void setupGUI(); aheinecke@71: }; aheinecke@71: aheinecke@71: #endif // LISTUPDATEDIALOG_H