summaryrefslogtreecommitdiffstats
path: root/keygendialog.h
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-05-24 15:18:31 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-05-24 15:18:31 +0200
commit8c605f96e2cf0a4f620433423a04a285f2b01e95 (patch)
tree7a05201b06b60e9bd3634a9a662e7c5457c0fe3a /keygendialog.h
parent8d81543d1c84e25e503a988c935778e34e002661 (diff)
gen-key code
Diffstat (limited to 'keygendialog.h')
-rw-r--r--keygendialog.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/keygendialog.h b/keygendialog.h
index f0f277c7..d808816a 100644
--- a/keygendialog.h
+++ b/keygendialog.h
@@ -2,6 +2,7 @@
#define KEYGENDIALOG_H
#include <QDialog>
+#include "dialog.h"
namespace Ui {
class KeygenDialog;
@@ -12,24 +13,23 @@ class KeygenDialog : public QDialog
Q_OBJECT
public:
- explicit KeygenDialog(QWidget *parent = 0);
+ explicit KeygenDialog(Dialog *parent = 0);
~KeygenDialog();
private slots:
void on_passphrase1_textChanged(const QString &arg1);
-
void on_passphrase2_textChanged(const QString &arg1);
-
void on_checkBox_stateChanged(int arg1);
-
void on_email_textChanged(const QString &arg1);
-
void on_name_textChanged(const QString &arg1);
private:
Ui::KeygenDialog *ui;
void replace(QString, QString);
void done(int r);
+ void no_protection(bool enable);
+ Dialog *dialog;
+
};
#endif // KEYGENDIALOG_H