-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy paths2clanfielddialog.h
More file actions
58 lines (43 loc) · 1.19 KB
/
s2clanfielddialog.h
File metadata and controls
58 lines (43 loc) · 1.19 KB
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
#ifndef S2CLANFIELDDIALOG_H
#define S2CLANFIELDDIALOG_H
#include <QDialog>
namespace Ui {
class S2ClanFieldDialog;
}
class S2ClanFieldDialog : public QDialog
{
Q_OBJECT
public:
explicit S2ClanFieldDialog(QWidget *parent = 0);
~S2ClanFieldDialog();
void S2CFDInit();
void S2CFDConnectEvent();
void S2CFDChange();
void S2CFDPrintSkillsAdvTable();
void S2CFDPrintSkillsBasicTable();
QStringList s2CFDBasicList;
QStringList s2CFDAdvList;
int s2CFDClanAdvXP;
int s2CFDClanAdvStepXP;
int s2CFDClanAdvRebateXP;
int s2CFDClanBasicXP;
int s2CFDClanBasicStepXP;
int s2CFDClanBasicRebateXP;
int s2CFDRebateSum;
QString s2CFDClanAdvLabel;
QList<QPair<QString, int> > s2CFDClanBasicSkills;
QList<QPair<QString, int> > s2CFDClanAdvSkills;
QStringList advListPart1;
QStringList advListPart2;
QStringList advListPart3;
QStringList advListPart4;
QStringList advListPart5;
private:
Ui::S2ClanFieldDialog *ui;
public slots:
void S2CFDClanAdvCombBox(QString);
void S2CFDClanBasicCombBox(QString);
void S2CFDClanAdvTable(int, int);
void S2CFDClanBasicTable(int, int);
};
#endif // S2CLANFIELDDIALOG_H