# HG changeset patch # User Raimund Renkert # Date 1395907595 -3600 # Node ID be628d261617589b6ff8569e33f26a535ae898d4 # Parent 9c51c472e5964923b8481c48140d2c202fb2d9b4 Added new status dialog. diff -r 9c51c472e596 -r be628d261617 ui/CMakeLists.txt --- a/ui/CMakeLists.txt Thu Mar 27 09:04:16 2014 +0100 +++ b/ui/CMakeLists.txt Thu Mar 27 09:06:35 2014 +0100 @@ -18,6 +18,7 @@ ${CMAKE_CURRENT_SOURCE_DIR}/listupdatedialog.cpp ${CMAKE_CURRENT_SOURCE_DIR}/helpdialog.cpp ${CMAKE_CURRENT_SOURCE_DIR}/aboutdialog.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/statusdialog.cpp ${CERTIFICATELIST_SOURCES} ${DOWNLOADER_SOURCES} ) diff -r 9c51c472e596 -r be628d261617 ui/statusdialog.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/statusdialog.cpp Thu Mar 27 09:06:35 2014 +0100 @@ -0,0 +1,35 @@ +#include "statusdialog.h" +#include +#include +#include +#include + +StatusDialog::StatusDialog(QMainWindow *parent) : + QDialog(parent) +{ + setupGUI(); +} + +void StatusDialog::setupGUI() +{ + QVBoxLayout *mainLayout = new QVBoxLayout(this); + QTextEdit *helpText = new QTextEdit; + helpText->setReadOnly(true); + QString dummyText = tr("The following certificates are successfully installed:\r"); + dummyText.append(tr("* Email CA 2013\r")); + dummyText.append(tr("* Server CA 2010\r")); + dummyText.append(tr("\rThe following certificates are successfully removed:\r")); + dummyText.append(tr("* Email CA 2010\r")); + dummyText.append(tr("\rErrors while processing certificates:\r")); + dummyText.append(tr("* PCA-1-Verwaltung-08\r")); + helpText->setPlainText(dummyText); + + QHBoxLayout *buttonLayout = new QHBoxLayout; + QPushButton *closeButton = new QPushButton(tr("Close")); + connect(closeButton, SIGNAL(clicked()), this, SLOT(close())); + buttonLayout->insertStretch(0, 10); + buttonLayout->addWidget(closeButton); + + mainLayout->addWidget(helpText); + mainLayout->addLayout(buttonLayout); +} diff -r 9c51c472e596 -r be628d261617 ui/statusdialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/statusdialog.h Thu Mar 27 09:06:35 2014 +0100 @@ -0,0 +1,21 @@ +#ifndef STATUSDIALOG_H +#define STATUSDIALOG_H + +#include +#include +/** + * @file statusdialog.h + * @brief The dialog for certificate status. + */ + +class StatusDialog : public QDialog +{ +public: + /** @brief Create a status dialog */ + StatusDialog(QMainWindow *parent); + +private: + void setupGUI(); + +}; +#endif // STATUSDIALOG_H