summaryrefslogtreecommitdiff
path: root/wizard/usercfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'wizard/usercfg.h')
-rw-r--r--wizard/usercfg.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/wizard/usercfg.h b/wizard/usercfg.h
new file mode 100644
index 0000000..17efa9a
--- /dev/null
+++ b/wizard/usercfg.h
@@ -0,0 +1,27 @@
+#ifndef usercfg_H
+#define usercfg_H
+
+#include "ui_usercfg.h"
+#include "../backend.h"
+
+class wpUserCfg : public QWizardPage, Ui::wpUserCfg
+{
+ Q_OBJECT
+
+ public:
+ wpUserCfg(QWidget *parent = 0);
+ void initializePage();
+ bool isComplete() const;
+ bool validatePage();
+
+ private:
+ Backend* backend;
+ bool complete;
+
+ private slots:
+ void realnameChanged();
+ void updateStatus();
+
+};
+
+#endif // usercfg_H