-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
64 lines (42 loc) · 1.11 KB
/
MainWindow.h
File metadata and controls
64 lines (42 loc) · 1.11 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QHash>
class Simulator;
class LSystem;
class VariableSequence;
class Variable;
class VariableSequenceModel;
class DialogCreateVariable;
class DialogCreateAxiom;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow {
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
LSystem* getLSystem();
private slots:
void on_btnAddVariable_clicked();
void on_btnRemoveVariable_clicked();
void on_btnEditVariable_clicked();
void on_variableListView_doubleClicked(const QModelIndex &index);
void on_btnAddAxiom_clicked();
void on_btnEditAxiom_clicked();
void on_btnRemoveAxiom_clicked();
void on_btnSimulate_clicked();
void on_sbSeed_valueChanged(int value);
void on_pushButton_clicked();
private:
Ui::MainWindow* _ui;
Simulator* _simulator;
LSystem* _lSystem;
DialogCreateVariable* _createVariableDialog;
DialogCreateAxiom* _createAxiomDialog;
VariableSequence* _currentSystem;
VariableSequenceModel* _currentSystemModel;
void editVariable(Variable* variable);
};
#endif // MAINWINDOW_H