diff options
Diffstat (limited to 'verifynotification.h')
-rw-r--r-- | verifynotification.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/verifynotification.h b/verifynotification.h index 2c069b7..d1c5bf9 100644 --- a/verifynotification.h +++ b/verifynotification.h @@ -19,17 +19,23 @@ class VerifyNotification : public QWidget public: explicit VerifyNotification(GpgME::Context *ctx,QWidget *parent = 0 ); void setVerifyLabel(QString text); + void addImportAction(); + void removeImportAction(); QStringList *keysNotInList; signals: public slots: void importFromKeyserver(); + void showVerifyDetails(); private: + QMenu *detailMenu; QLabel *verifyLabel; GpgME::Context *mCtx; QHBoxLayout *notificationWidgetLayout; + QAction *importFromKeyserverAct; + QAction *showVerifyDetailsAct; }; #endif // VERIFYNOTIFICATION_H |