Mercurial > trustbridge
comparison ui/certificatediffdialog.h @ 566:8728ae882b6a
Added dialog to show the differences before saving a certificate list.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 22 May 2014 18:29:14 +0200 |
parents | |
children | 2a1aa9df8f11 |
comparison
equal
deleted
inserted
replaced
565:9db7034b2d6c | 566:8728ae882b6a |
---|---|
1 /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik | |
2 * Software engineering by Intevation GmbH | |
3 * | |
4 * This file is Free Software under the GNU GPL (v>=2) | |
5 * and comes with ABSOLUTELY NO WARRANTY! | |
6 * See LICENSE.txt for details. | |
7 */ | |
8 #ifndef CERTIFICATEDIFFDIALOG_H | |
9 #define CERTIFICATEDIFFDIALOG_H | |
10 | |
11 #include <QDialog> | |
12 #include <QMainWindow> | |
13 | |
14 /** | |
15 * @file certificatediffdialog.h | |
16 * @brief The dialog to show the changes made in the certificate list. | |
17 */ | |
18 | |
19 class AdministratorWindow; | |
20 | |
21 class CertificateDiffDialog : public QDialog | |
22 { | |
23 Q_OBJECT | |
24 public: | |
25 /** @brief Create a dialog showing the changes made in the certificate list. | |
26 */ | |
27 CertificateDiffDialog(AdministratorWindow *parent); | |
28 | |
29 private: | |
30 void setupGUI(); | |
31 | |
32 AdministratorWindow *mAdminWindow; | |
33 | |
34 private slots: | |
35 }; | |
36 | |
37 #endif // CERTIFICATEDIFFDIALOG_H |