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 /verifydetailsdialog.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 'verifydetailsdialog.h')
-rw-r--r-- | verifydetailsdialog.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/verifydetailsdialog.h b/verifydetailsdialog.h new file mode 100644 index 0000000..58fd4f0 --- /dev/null +++ b/verifydetailsdialog.h @@ -0,0 +1,25 @@ +#ifndef VERIFYDETAILSDIALOG_H +#define VERIFYDETAILSDIALOG_H + +#include "context.h" +#include "keylist.h" +#include <QDialog> + +class VerifyDetailsDialog : public QDialog +{ + Q_OBJECT +public: + explicit VerifyDetailsDialog(QWidget *parent, GpgME::Context* ctx, KeyList* mKeyList, gpgme_signature_t signature); + +private: + QGroupBox* addDetailBox( gpgme_signature_t signature ); + GpgME::Context* mCtx; + KeyList* mKeyList; + +signals: + +public slots: + +}; + +#endif // VERIFYDETAILSDIALOG_H |