forked from shervinkh/sgu-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sguclient.h
53 lines (44 loc) · 916 Bytes
/
sguclient.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef SGUCLIENT_H
#define SGUCLIENT_H
#include <QMainWindow>
class QPushButton;
class QVBoxLayout;
class QHBoxLayout;
class QStackedWidget;
class AccountManager;
class FileDownloader;
class FriendActivity;
class OnlineStatus;
class Competition;
class Suggestion;
class SGUClient : public QMainWindow
{
Q_OBJECT
private:
QPushButton *friendAct;
QPushButton *competit;
QPushButton *sugg;
QPushButton *stat;
QPushButton *accs;
QVBoxLayout *butts;
QStackedWidget *sw;
QHBoxLayout *layou;
QWidget *wid;
AccountManager *am;
FileDownloader *fd;
FriendActivity *fa;
OnlineStatus *so;
Competition *com;
Suggestion *sug;
public:
explicit SGUClient(QWidget *parent = nullptr);
~SGUClient();
private slots:
void accPage();
void faPage();
void statPage();
void comPage();
void sugPage();
void loadCache();
};
#endif // SGUCLIENT_H