-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmainwindow.h
65 lines (50 loc) · 1.14 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "polynomial.h"
#include <QMainWindow>
#include <QThread>
QT_BEGIN_NAMESPACE
namespace Ui {
class MainWindow;
}
QT_END_NAMESPACE
struct Bench : public QThread {
Polynomial& poly;
Bench(Polynomial& poly)
: poly{poly} { }
void run() override {
for(int i = 0; i < 100; ++i) {
emit val(i);
if(isInterruptionRequested())
return;
for(int d = 1; d <= MaxDegree; ++d) {
poly.calcDegrees(d);
}
}
}
Q_OBJECT
signals:
void val(int);
};
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow(QWidget* parent = nullptr);
~MainWindow();
private:
Ui::MainWindow* ui;
void saveSetings();
void loadSetings();
QString degreesFileName;
QString dataFileName;
Polynomial poly;
void loadData();
void saveData();
void saveDataAs();
void loadDegrees();
void saveDegrees();
void saveDegreesAs();
QString actionName();
void bench();
};
#endif // MAINWINDOW_H