aboutsummaryrefslogtreecommitdiffstats
path: root/verifynotification.h
diff options
context:
space:
mode:
Diffstat (limited to 'verifynotification.h')
-rw-r--r--verifynotification.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/verifynotification.h b/verifynotification.h
index 539504f..5f5cd99 100644
--- a/verifynotification.h
+++ b/verifynotification.h
@@ -8,18 +8,28 @@
#include <QWidget>
+#include "keyserverimportdialog.h"
+#include "context.h"
+#include <gpgme.h>
+
+
class VerifyNotification : public QWidget
{
Q_OBJECT
public:
- explicit VerifyNotification(QWidget *parent = 0);
+ explicit VerifyNotification(GpgME::Context *ctx,QWidget *parent = 0 );
void setVerifyLabel(QString text);
+ QStringList *keysNotInList;
+
signals:
public slots:
+ void importFromKeyserver();
private:
QLabel *verifyLabel;
+ GpgME::Context *mCtx;
+
};
#endif // VERIFYNOTIFICATION_H