-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstage3_resurce.h
More file actions
98 lines (69 loc) · 2.01 KB
/
Copy pathstage3_resurce.h
File metadata and controls
98 lines (69 loc) · 2.01 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
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
88
89
90
91
92
93
94
95
96
97
98
#ifndef STAGE3_RESURCE_H
#define STAGE3_RESURCE_H
#include <QWidget>
#include <QMultiMap>
#include "carierfields.h"
class Stage3 : public QWidget
{
Q_OBJECT
public:
explicit Stage3(QWidget *parent = 0);
CarierFields *carField;
// void S3Dictionary();
QStringList S3ClearAffilation(QString);
void S3SchoolChange(QString, QString, QString, QString);
void S3AddTraits(QString, int);
void S3AddSkills(QString, int);
void S3FieldChange(QString);
void S3SetSchool(QString nameElem);
QString S3SchoolEnter(QString);
QStringList S3FieldChoose(QString);
QMap<QString, int> s3Attr;
QList<QPair<QString, int> > s3Traits;
QList<QPair<QString, int> > s3Skills;
QStringList s3BasicField;
int s3BasicFieldAge;
QStringList s3AdvField;
int s3AdvFieldAge;
QStringList s3SpecField;
int s3SpecFieldAge;
int s3XpCost;
int s3FlexXP;
int s3AffLang;
int s3AffProt;
int s3AffStreet;
QStringList S3SChoolList;
// QMultiMap<QString, QString> masterFieldList;
QStringList s3BasicFieldListSwp;
int s3BasicAgeSwp;
QStringList s3AdvFieldListSwp;
int s3AdvAgeSwp;
QStringList s3SpecFieldListSwp;
int s3SpecAgeSwp;
QString s3ChildHoodLabelAdv1;
QStringList s3ChildHoodAttrAdv1;
int s3ChildHoodSkillsAdv1;
QString s3ChildHoodLabelAdv2;
QStringList s3ChildHoodAttrAdv2;
int s3ChildHoodSkillsAdv2;
QString s3ChildHoodLabelAdv3;
QStringList s3ChildHoodAttrAdv3;
int s3ChildHoodSkillsAdv3;
QString s3ChildHoodLabelAdv4;
QStringList s3ChildHoodAttrAdv4;
int s3ChildHoodSkillsAdv4;
bool s3MilField;
bool s3PolicField;
bool s3CivField;
bool s3OffField;
QMap<QString, int> s3PreAttr;
QList<QPair<QString, int> > s3PreTraits;
QList<QPair<QString, int> > s3PreSkills;
QString s3toolTip;
bool chkAdd;
QStringList CreateSubSkillList(QString nameSkill);
QMultiMap<QString, QString> subSkillList;
signals:
public slots:
};
#endif // STAGE3_RESURCE_H