Mercurial > trustbridge
view ui/listupdatedialog.h @ 154:3349c9596043
Added commandline arguemnt '--tray' to hide or show the mainwindow.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 25 Mar 2014 08:59:58 +0100 |
parents | 252ffe6e27fd |
children | 3ebebd055d3a |
line wrap: on
line source
#ifndef LISTUPDATEDIALOG_H #define LISTUPDATEDIALOG_H #include "certificatelist.h" #include <QDialog> #include <QMainWindow> /** * @file listupdatedialog.h * @brief The dialog for certificate selection. */ class QListWidget; class ListUpdateDialog : public QDialog { public: /** @brief Create a list update dialog for the listToInstall */ ListUpdateDialog(QMainWindow *parent, const CertificateList &listToInstall); private: CertificateList mCertificateList; void setupGUI(); QListWidget *mInstallListWidget; QListWidget *mRemoveListWidget; private slots: void executeUpdate(); }; #endif // LISTUPDATEDIALOG_H