summaryrefslogtreecommitdiff
path: root/user_select_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'user_select_dialog.h')
-rw-r--r--user_select_dialog.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/user_select_dialog.h b/user_select_dialog.h
new file mode 100644
index 0000000..98b3503
--- /dev/null
+++ b/user_select_dialog.h
@@ -0,0 +1,30 @@
+#ifndef USER_SELECT_DIALOG_H
+#define USER_SELECT_DIALOG_H
+
+#include <QMainWindow>
+#include <QDebug>
+#include "file_download.h"
+#include "stats_display_window.h"
+
+namespace Ui {
+class user_select_dialog;
+}
+
+class user_select_dialog : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit user_select_dialog(QWidget *parent = 0);
+ ~user_select_dialog();
+
+private slots:
+ void on_select_account_button_clicked();
+
+private:
+ Ui::user_select_dialog *ui;
+ file_download download;
+ stats_display_window n_window;
+};
+
+#endif // USER_SELECT_DIALOG_H