windows: add wizard at first startup

Refs #71987

Change-Id: I051c384c41b08af3fd65b83da25861d2fa52895d
diff --git a/wizarddialog.h b/wizarddialog.h
new file mode 100644
index 0000000..15004e7
--- /dev/null
+++ b/wizarddialog.h
@@ -0,0 +1,27 @@
+#ifndef WIZARDDIALOG_H
+#define WIZARDDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class WizardDialog;
+}
+
+class WizardDialog : public QDialog
+{
+    Q_OBJECT
+
+public:
+    explicit WizardDialog(QWidget *parent = 0);
+    ~WizardDialog();
+
+private slots:
+    void on_buttonBox_accepted();
+
+    void on_usernameEdit_textChanged(const QString &arg1);
+
+private:
+    Ui::WizardDialog *ui;
+};
+
+#endif // WIZARDDIALOG_H