-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpreqdialog.h
More file actions
52 lines (34 loc) · 834 Bytes
/
preqdialog.h
File metadata and controls
52 lines (34 loc) · 834 Bytes
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
#ifndef PREQDIALOG_H
#define PREQDIALOG_H
#include <QDialog>
#include <QMap>
namespace Ui {
class PreqDialog;
}
class PreqDialog : public QDialog
{
Q_OBJECT
private:
void PrintTable();
void NobChange(QString);
void WhiteColChange(QString);
void CovOpChange(QString);
public:
explicit PreqDialog(QWidget *parent = 0);
~PreqDialog();
void initPreDialog();
QMap<QString, int> preAttr;
QList<QPair<QString, int> > preSkills;
QList<QPair<QString, int> > preTraits;
QString earlyChild;
QString realLife;
QList<QPair<QString, int> > preTraitsChoose;
QList<QPair<QString, int> > preSkillsChoose;
private:
Ui::PreqDialog *ui;
private slots:
private slots:
private slots:
void on_preqListTable_cellClicked(int row, int column);
};
#endif // PREQDIALOG_H