-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
263 lines (228 loc) · 5.92 KB
/
mainwindow.cpp
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QtCharts/QScatterSeries>
#include <cmath>
#include <fstream>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
initializeGui();
}
void MainWindow::initializeGui()
{
auto groupsLabel = ui->label_4->text();
groupsLabel += QString(" (max ") + QString::number(Settings::MaxK)
+ QString(")");
ui->label_4->setText(groupsLabel);
plot = ui->plot;
model = new ViewModel;
plot->model = model;
updatePlot();
}
void MainWindow::updatePlot()
{
plot->UpdatePlot();
ui->fixedRangeChBox->setChecked(model->FixedAxes);
ui->minXEdit->setText(QString::number(model->rangeXMin));
ui->maxXEdit->setText(QString::number(model->rangeXMax));
ui->minYEdit->setText(QString::number(model->rangeYMin));
ui->maxYEdit->setText(QString::number(model->rangeYMax));
ui->groupNumberEdit->setText(QString::number(model->K));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_exitAction_triggered()
{
qApp->quit();
}
void MainWindow::setGroupNumberFromField()
{
int k;
if (valueFromEdit(ui->groupNumberEdit, &k) && k > 1 && k <= Settings::MaxK)
{
model->setK(k);
updatePlot();
}
else
{
badValueError();
}
}
bool MainWindow::valueFromEdit(QLineEdit *edit, int *value)
{
bool ok;
int result = edit->text().toInt(&ok);
if (!ok)
{
badValueError();
return false;
}
*value = result;
return true;
}
bool MainWindow::valueFromEdit(QLineEdit *edit, double *value)
{
bool ok;
double result = edit->text().toDouble(&ok);
if (!ok)
{
badValueError();
return false;
}
*value = result;
return true;
}
void MainWindow::badValueError()
{
QMessageBox::critical(nullptr, "Błąd", "Niepoprawna wartość");
}
void MainWindow::newPointFromField()
{
double x, y;
if (valueFromEdit(ui->newX, &x) && valueFromEdit(ui->newY, &y))
{
model->addPoint(x, y);
updatePlot();
}
}
void MainWindow::on_fixedRangeChBox_clicked(bool checked)
{
model->FixedAxes = checked;
updatePlot();
}
void MainWindow::setRanges()
{
double minX, minY, maxX, maxY;
if (
valueFromEdit(ui->minXEdit, &minX) &&
valueFromEdit(ui->maxXEdit, &maxX) &&
valueFromEdit(ui->minYEdit, &minY) &&
valueFromEdit(ui->maxYEdit, &maxY)
)
{
model->rangeXMin = minX;
model->rangeXMax = maxX;
model->rangeYMin = minY;
model->rangeYMax = maxY;
model->FixedAxes = true;
updatePlot();
}
}
void MainWindow::clearPlot()
{
model->Clusters.clear();
model->Data.clear();
model->GroupPaths.clear();
updatePlot();
}
void MainWindow::on_aboutAction_triggered()
{
auto msg = QString(
"Program dzieli podany zbiór dwuwymiarowych punktów na klastry "
"za pomocą algorytmu k-means clustering. Możliwe jest śledzenie "
"krok po kroku jak zmienia się położenie centroidów oraz przydział "
"punktów do klastrów po każdej iteracji algorytmu, a także "
"wczytywanie i zapisywanie danych do pliku.\n\n"
"Copyrigth Paweł Pietrasz 2017\n"
"Licencja GNU GPL 3");
QMessageBox::information(this, "O programie", msg);
}
void MainWindow::on_stepBtn_clicked()
{
if (model->Data.size() < model->K)
{
QMessageBox::critical(this, "Błąd", "Liczba punktów mniejsza niż liczba grup");
return;
}
static bool lastResult = true;
auto & program = model->Program;
bool result = program.NextStep();
if (result || lastResult)
{
model->GroupPaths.push_back(program.Centroids());
updatePlot();
}
if (!result)
{
QMessageBox::information(this, "Koniec", "Osiągnięto ostateczny wynik");
}
lastResult = result;
}
void MainWindow::on_calculateBtn_clicked()
{
if (model->Data.size() < model->K)
{
QMessageBox::critical(this, "Błąd", "Liczba punktów mniejsza niż liczba grup");
return;
}
auto & program = model->Program;
bool result;
do
{
result = program.NextStep();
model->GroupPaths.push_back(program.Centroids());
updatePlot();
} while (result);
}
void MainWindow::on_newCalculationBtn_clicked()
{
model->setK(model->K);
plot->UpdatePlot();
}
void MainWindow::on_openAction_triggered()
{
auto fileName = QFileDialog::getOpenFileName(this, "Wybierz plik do wczytania", "", "Pliki tekstowe (*.txt);;Wszystkie pliki (*.*)");
if (fileName.length() == 0)
{
return;
}
std::ifstream file(qPrintable(fileName));
if (!file.is_open())
{
QMessageBox::critical(this, "Błąd", "Nie udało się otworzyć pliku");
return;
}
clearPlot();
double x, y;
while (file >> x >> y)
{
model->addPoint(x, y);
}
updatePlot();
}
void MainWindow::on_saveAction_triggered()
{
auto fileName = QFileDialog::getSaveFileName(this, "Wybierz plik do zapisania", "", "Pliki tekstowe (*.txt);;Wszystkie pliki (*.*)");
if (fileName.length() == 0)
{
return;
}
std::ofstream file(qPrintable(fileName));
if (!file.is_open())
{
QMessageBox::critical(this, "Błąd", "Nie udało się otworzyć pliku do zapisu");
return;
}
for (auto point : model->Data)
{
file << point.X() << " " << point.Y() << "\n";
}
file.close();
}
void MainWindow::on_savePlotAction_triggered()
{
auto fileName = QFileDialog::getSaveFileName(this, "Wybierz plik do zapisania", "", "Pliki PNG (*.png);;Wszystkie pliki (*.*)");
if (fileName.length() == 0)
{
return;
}
bool success = plot->savePng(fileName, 0, 0, 1, 0);
if (!success)
{
QMessageBox::critical(this, "Błąd", "Zapis nieudany");
}
}