Newer
Older
Ollivier Corentin
committed
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
#ifndef MASTERTAB_H
#define MASTERTAB_H
#include <QWidget>
#include <QVBoxLayout>
#include <QSpinBox>
#include <QDoubleSpinBox>
#include <QComboBox>
#include <QCheckBox>
#include "labelledwidget.h"
class MasterTab : public QWidget{
Q_OBJECT
QVBoxLayout *layout;
LabelledWidget<QComboBox>
*rom_path,
*colour_palette;
LabelledWidget<QCheckBox>
*display_screen,
*enable_sound,
*fresh_pop;
LabelledWidget<QDoubleSpinBox>
//Floats
*repeat_action_prob,
*mut_rate,
*cross_rate;
LabelledWidget<QSpinBox>
//Integers
*n_eval_p,
*n_eval_s,
*tourn_size,
*pop_size,
*nb_iter;
public:
MasterTab();
public slots:
};
#endif