aheinecke@404: /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik aheinecke@404: * Software engineering by Intevation GmbH aheinecke@404: * aheinecke@404: * This file is Free Software under the GNU GPL (v>=2) aheinecke@404: * and comes with ABSOLUTELY NO WARRANTY! aheinecke@404: * See LICENSE.txt for details. aheinecke@404: */ rrenkert@199: #ifndef ABOUTDIALOG_H rrenkert@199: #define ABOUTDIALOG_H rrenkert@199: rrenkert@199: #include rrenkert@199: #include rrenkert@199: /** rrenkert@199: * @file aboutdialog.h rrenkert@199: * @brief The dialog for information about the application. rrenkert@199: */ rrenkert@199: andre@1255: /** @brief AboutDialog of the admin application andre@1255: * andre@1255: * This is a specialized QDialog for the About information andre@1255: * of the administrator application. andre@1255: */ rrenkert@199: class AboutDialog : public QDialog rrenkert@199: { andre@605: Q_OBJECT rrenkert@199: public: andre@1255: /** @brief Create the about dialog */ rrenkert@199: AboutDialog(QMainWindow *parent); rrenkert@199: rrenkert@199: private: andre@1255: /** @brief Create UI elements */ rrenkert@199: void setupGUI(); rrenkert@199: rrenkert@199: }; rrenkert@199: #endif // ABOUTDIALOG_H