-
Notifications
You must be signed in to change notification settings - Fork 0
/
shapes.h
62 lines (38 loc) · 990 Bytes
/
shapes.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef SHAPES_H
#define SHAPES_H
#include <QMainWindow>
#include <QMediaPlayer>
namespace Ui {
class Shapes;
}
class Shapes : public QMainWindow
{
Q_OBJECT
public:
explicit Shapes(QWidget *parent = nullptr);
~Shapes();
private slots:
void on_btnAstroid_clicked();
void on_btnCycloid_clicked();
void on_btnHuygens_clicked();
void on_btnHypo_clicked();
void on_btnLine_clicked();
void on_btnCircle_clicked();
void on_btnEllipse_clicked();
void on_btnFancy_clicked();
void on_btnStarfish_clicked();
void on_btnCloud_clicked();
void on_btnCloud2_clicked();
void on_spinScale_valueChanged(double arg1);
void on_spinInterval_valueChanged(double arg1);
void on_spinCount_valueChanged(int arg1);
void on_btnBackground_clicked();
void on_btnLineColor_clicked();
void playSound();
private:
void update_ui ();
QMediaPlayer * clickSound;
private:
Ui::Shapes *ui;
};
#endif // SHAPES_H