summaryrefslogtreecommitdiffstats
path: root/keygendialog.h
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2015-05-22 04:25:31 +0200
committerAnne Jan Brouwer <brouwer@annejan.com>2015-05-22 04:25:31 +0200
commitb568de36a8e2fd5475894fc0cd82d4c3605d5d1f (patch)
tree9745266c7744f2cb474ecc98213ac8609c4f9fff /keygendialog.h
parent54862e16e1efbd9b943c95833940b637b878559a (diff)
keygen start, dialog ideas
Diffstat (limited to 'keygendialog.h')
-rw-r--r--keygendialog.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/keygendialog.h b/keygendialog.h
new file mode 100644
index 00000000..634bcbe3
--- /dev/null
+++ b/keygendialog.h
@@ -0,0 +1,34 @@
+#ifndef KEYGENDIALOG_H
+#define KEYGENDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class KeygenDialog;
+}
+
+class KeygenDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit KeygenDialog(QWidget *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);
+};
+
+#endif // KEYGENDIALOG_H