#ifndef VERIFYNOTIFICATION_H #define VERIFYNOTIFICATION_H #include #include #include #include #include #include "keyserverimportdialog.h" #include "context.h" #include class VerifyNotification : public QWidget { Q_OBJECT public: 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