-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
47 lines (41 loc) · 978 Bytes
/
mainwindow.h
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QGraphicsScene>
#include <QGraphicsView>
#include <QTimer>
#include <QDockWidget>
#include <QSpinBox>
#include <QPushButton>
#include <QColor>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
int calculateState(int left, int state, int right);
int binaryToInt(QString binary);
public slots:
void draw();
void reloadCanvas();
void changeBoxColor();
void about();
void aboutQT();
private:
QGraphicsScene *scene;
QGraphicsView *view;
QDockWidget *menuDock;
QSpinBox *ruleNumberSpinBox;
QSpinBox *boxSizeSpinBox;
QPushButton *displayButton;
QPushButton *colorButton;
QTimer *timer;
QList<int> cells;
QColor boxColor;
QString ruleset;
int y;
int boxWidth;
int boxHeight;
};
#endif // MAINWINDOW_H