-
Notifications
You must be signed in to change notification settings - Fork 0
/
problemmanagement.h
executable file
·87 lines (67 loc) · 1.94 KB
/
problemmanagement.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
84
85
86
87
/*
* 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 PROBLEMMANAGEMENT_H
#define PROBLEMMANAGEMENT_H
#include <QWidget>
#include "general.h"
class MainWidget;
class QComboBox;
class QLineEdit;
class QPushButton;
class QHBoxLayout;
class QListWidget;
class QVBoxLayout;
class QLabel;
class ProblemManagement : public QWidget
{
Q_OBJECT
private:
Operation lastOp;
int lastRow;
QString newName;
MainWidget *mw;
QComboBox *searchMode;
QLabel *searchConstr;
QLineEdit *searchTerm;
QPushButton *searchReq;
QHBoxLayout *searchLayout;
QPushButton *editButton;
QPushButton *removeButton;
QPushButton *rejudgeButton;
QVBoxLayout *manageButtons;
QListWidget *lst;
QHBoxLayout *lstLayout;
QPushButton *addButton;
QHBoxLayout *addLayout;
QVBoxLayout *totalLayout;
QList<QString> data;
QString scoreListCallback;
QString contestListCallback;
QList<QString> scores;
QList<QString> contests;
void updateList();
public:
explicit ProblemManagement(MainWidget *MW, QWidget *parent = Q_NULLPTR);
void init();
void onSwitch();
private slots:
void handleSearchMode(int id);
void request();
void requestDone(StatCode stat, const QByteArray &BA);
void addNewProblem();
void editProblem();
void editProblemStage2(StatCode stat, const QByteArray &BA);
void removeProblem();
void rejudgeProblem();
void operationDone(StatCode stat, const QByteArray &);
bool updateScoresList(const QString &name);
void scoresDone(StatCode stat, const QByteArray &BA);
bool updateContestList(const QString &name);
void contestDone(StatCode stat, const QByteArray &BA);
void networkOperationFailed();
};
#endif // PROBLEMMANAGEMENT_H