Mercurial > trustbridge
diff ui/certificateitemwidget.h @ 582:88c9bdc74175 trustbridge-refactor
New widgets to display certificates in lists.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Tue, 27 May 2014 16:16:21 +0200 |
parents | |
children | 566ee111e331 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/certificateitemwidget.h Tue May 27 16:16:21 2014 +0200 @@ -0,0 +1,34 @@ +/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik + * Software engineering by Intevation GmbH + * + * This file is Free Software under the GNU GPL (v>=2) + * and comes with ABSOLUTELY NO WARRANTY! + * See LICENSE.txt for details. + */ +#ifndef CERTIFICATELISTITEM_H +#define CERTIFICATELISTITEM_H +/** + * @file certificateitemdelegate.h + * @brief Item delegate drawing custom certificate items in list views. + * + */ +#include <QWidget> +#include <QLabel> +#include <QComboBox> + +#include "certificate.h" + +class CertificateItemWidget : public QWidget +{ + +public: + CertificateItemWidget(QWidget *parent = 0, const Certificate &cert = Certificate()); + +private: + void setupGUI(); + + Certificate mCertificate; + QLabel *mLabel; + QComboBox *mComboBox; +}; +#endif