summaryrefslogtreecommitdiff
path: root/user_select_dialog.h
blob: 3420badecd305a93f87464660095e62998aef6fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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;
    void download_info();
    void load_players();
};

#endif // USER_SELECT_DIALOG_H