diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-12 22:42:28 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-09-12 22:42:28 +0000 |
commit | 715a3a80bda633f38fb26df5599a01abd08b85db (patch) | |
tree | a9214e03df2e6d0c10ae80d077232bb3310e6eef /verifynotification.h | |
parent | show details in different colours in verfiy detail dialog, further commenting... (diff) | |
download | gpg4usb-715a3a80bda633f38fb26df5599a01abd08b85db.tar.gz gpg4usb-715a3a80bda633f38fb26df5599a01abd08b85db.zip |
changed verifydetailsdialog, updated todo
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@531 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'verifynotification.h')
-rw-r--r-- | verifynotification.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/verifynotification.h b/verifynotification.h index f641b05..7b79a0d 100644 --- a/verifynotification.h +++ b/verifynotification.h @@ -24,6 +24,7 @@ #include "keyserverimportdialog.h" #include "context.h" +#include "verifydetailsdialog.h" #include <gpgme.h> #include <QWidget> @@ -58,7 +59,7 @@ public: * @param ctx The GPGme-Context * @param parent The parent widget */ - explicit VerifyNotification(GpgME::Context *ctx,QWidget *parent = 0 ); + explicit VerifyNotification(QWidget *parent, GpgME::Context *ctx, KeyList *keyList, gpgme_signature_t sign); /** * @details Set the text and background-color of verify notification. * @@ -104,6 +105,8 @@ private: QPushButton *detailsButton; /** Button shown in verifynotification */ QLabel *verifyLabel; /** Label holding the text shown in verifyNotification */ GpgME::Context *mCtx; /** GpgME Context */ + KeyList *mKeyList; + gpgme_signature_t mSignature; QHBoxLayout *notificationWidgetLayout; /** Layout for verify-notification */ QVBoxLayout *verifyDetailListLayout; /** Layout for verify-detail-dialog */ QVector<QString> verifyDetailStringVector; /** Vector containing the text for labels in verifydetaildialog */ |