-
Notifications
You must be signed in to change notification settings - Fork 0
/
userwidget.h
executable file
·83 lines (68 loc) · 1.6 KB
/
userwidget.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* This file is part of community judge client project developed by Shervin Kh.
* Copyright (C) 2014 Shervin Kh.
* License: GPLv3 Or Later
* Full license could be found in License file shipped with program or at http://www.gnu.org/licenses/
*/
#ifndef USERWIDGET_H
#define USERWIDGET_H
#include <QWidget>
#include "general.h"
class MainWidget;
class Submission;
class ViewResults;
class QPushButton;
class QVBoxLayout;
class QStackedWidget;
class QHBoxLayout;
class QLabel;
class ViewProfile;
class Scoreboard;
class QTabWidget;
class ProblemView;
class Contests;
class News;
class UserWidget : public QWidget
{
Q_OBJECT
private:
MainWidget *mw;
QTabWidget *expl;
ProblemView *pv;
Contests *cts;
News *nws;
Submission *sub;
ViewResults *viewRes;
ViewProfile *viewProf;
Scoreboard * sb;
QPushButton *explButton;
QPushButton *subButton;
QPushButton *viewButton;
QPushButton *scoreboardButton;
QPushButton *logoutButton;
QPushButton *adminButton;
QVBoxLayout *buttonsLayout;
QStackedWidget *sw;
QVBoxLayout *rightLayout;
QHBoxLayout *totalLayout;
QLabel *connectedToLabel;
QPushButton *viewProfileButton;
QHBoxLayout *userLayout;
signals:
void adminPanel();
void logout();
public:
explicit UserWidget(MainWidget *MW, QWidget *parent = Q_NULLPTR);
void init();
public slots:
void onSwitch();
private slots:
void selectSub();
void selectView();
void selectAdmin();
void selectScoreboard();
void selectExplore();
void viewProfile();
void exploreTabOnSwitch();
};
#endif // USERWIDGET_H