-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
325 lines (286 loc) · 10 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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
#include "mainwindow.h"
#include "./ui_mainwindow.h"
#include <QMessageBox>
#include <QFileDialog>
#include <QInputDialog>
MainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setCentralWidget(ui->horizontalLayoutWidget);
this->setWindowTitle(this->wTitle);
// Обработка открытия файла (передача пути файла в аргументы)
if (QApplication::arguments().size() > 1)
{
const QString filepath = QApplication::arguments().at(1);
this->_tree_from_file_load(filepath.toStdString());
}
}
MainWindow::~MainWindow()
{
this->tree.clear();
delete ui;
}
void MainWindow::setIsEdit(bool isEdit)
{
if (this->is_edit && !isEdit)
{
this->is_edit = false;
this->setWindowTitle(this->windowTitle().replace("*", ""));
} else if (!this->is_edit && isEdit)
{
this->is_edit = true;
this->setWindowTitle("*" + this->windowTitle());
}
}
void MainWindow::console(std::string text)
/*
Метод выводит аргумент 'text' типа std::string
в QTextEdit построчно
*/
{
this->ui->consoleOutput->append(QString::fromStdString(text));
}
void MainWindow::_tree_from_file_load(std::string filepath)
{
std::string filename = filepath.substr(filepath.find_last_of("/") + 1, std::string::npos);
switch (this->tree.load(filepath))
{
case 0:
this->ui->consoleOutput->clear();
this->_reload_Qtree();
this->console("Дерево успешно загружено");
this->setWindowTitle(this->wTitle + " - " + QString::fromStdString(filename));
this->setIsEdit(false);
break;
case 1:
this->console("Ошибка открытия файла! '" + filename + "'");
break;
case 2:
this->console("Файл пуст! '" + filename + "'");
break;
case 3:
this->console("Файл поврежден! '" + filename + "'");
break;
default:
this->console("Неизвестная ошибка! '" + filename + "'");
}
}
// Меню бар
void MainWindow::on_new_file_triggered()
{
if (this->is_edit)
{
QMessageBox msgBox;
msgBox.setText("Хотите сохранить текущее дерево?");
msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::No | QMessageBox::Cancel);
msgBox.setIcon(QMessageBox::Question);
msgBox.setDefaultButton(QMessageBox::Ok);
int res = msgBox.exec();
if (res == QMessageBox::Ok)
this->on_saveAs_triggered();
if (res == QMessageBox::Cancel)
return void();
}
this->setIsEdit(false);
this->ui->consoleOutput->clear();
this->tree.clear();
this->_reload_Qtree();
this->setWindowTitle(this->wTitle);
}
void MainWindow::on_about_triggered(bool checked)
/*
Метод вызывает MessageBox c информацией о программе
todo: версия не должна быть константой в коде
*/
{
QMessageBox aboutBox;
aboutBox.setWindowTitle("О программе");
aboutBox.setText(
"BTSearcher - программа, эмулирующая\n"
"бинарное дерево поиска\n"
"Версия: 1.1.3 \n\n"
"Автор: Бояршинов Н. О.\n"
"Группа: ВПР12\n\n"
"г. Ростов-на-Дону | ДГТУ 2022 год"
);
aboutBox.setIcon(QMessageBox::Information);
aboutBox.setStandardButtons(QMessageBox::Ok);
aboutBox.exec();
}
void MainWindow::on_saveAs_triggered()
{
QString filepath = QFileDialog::getSaveFileName(this, tr("Сохранить дерево"), "", tr("BTS Файл (*.bts)"));
if (!filepath.isNull())
{
if (this->tree.save(filepath.toStdString()))
{
this->setIsEdit(false);
this->console("Файл успешно сохранен");
}
else
this->console("Ошибка сохранения файла!");
}
}
void MainWindow::on_openFile_triggered()
/*
Метод вызывает диалоговое окно
загрузки файла дерева
*/
{
QString filepath = QFileDialog::getOpenFileName(this, tr("Открыть файл дерева"), "", tr("BTS Файлы (*.bts);; TXT Файлы (*.txt)"));
if (!filepath.isNull())
{
this->_tree_from_file_load(filepath.toStdString());
this->setIsEdit(false);
}
}
// Кнопки
void MainWindow::on_searchInThree_pressed()
{
QInputDialog input_dialog;
input_dialog.setWindowTitle("Введите число, которое хотите найти");
input_dialog.setLabelText("Число:");
input_dialog.setInputMode(QInputDialog::InputMode::IntInput);
input_dialog.setIntMinimum(-2147483647);
input_dialog.setIntMaximum(2147483647);
int result = input_dialog.exec();
if (result == QDialog::Accepted)
{
if (this->tree.search(input_dialog.intValue()))
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' успешно найдено!");
else
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' не найдено!");
}
}
void MainWindow::on_insertInThree_pressed()
{
QInputDialog input_dialog;
input_dialog.setWindowTitle("Введите число, которое хотите добавить");
input_dialog.setLabelText("Число:");
input_dialog.setInputMode(QInputDialog::InputMode::IntInput);
input_dialog.setIntMinimum(-2147483647);
input_dialog.setIntMaximum(2147483647);
int result = input_dialog.exec();
if (result == QDialog::Accepted)
{
if (this->tree.insert(input_dialog.intValue()))
{
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' успешно добавлено в дерево!");
this->_reload_Qtree();
this->setIsEdit(true);
}
else
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' не удалось добавить в дерево (дубликат)!");
}
}
void MainWindow::on_deleteInThree_pressed()
{
QInputDialog input_dialog;
input_dialog.setWindowTitle("Введите число, которое хотите удалить");
input_dialog.setLabelText("Число:");
input_dialog.setInputMode(QInputDialog::InputMode::IntInput);
input_dialog.setIntMinimum(-2147483647);
input_dialog.setIntMaximum(2147483647);
int result = input_dialog.exec();
if (result == QDialog::Accepted)
{
if (this->tree.remove(input_dialog.intValue()))
{
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' успешно удалено!");
this->_reload_Qtree();
this->setIsEdit(true);
}
else
this->console("Значение '" + std::to_string(input_dialog.intValue()) + "' не удалось удалить (не найдено)!");
}
}
// Сортировки
void MainWindow::on_inorder_pressed()
{
std::string result;
if (this->tree.getRoot() != NULL)
{
result = "Inorder сортировка:\n";
std::vector<int> values = this->tree.getInorderValues();
for (int i = 0; i < values.size(); i++)
{
result += std::to_string(values[i]) + " ";
}
} else
result = "[Ошибка] Дерево не содержит элементов!";
this->console(result);
}
void MainWindow::on_preorder_pressed()
{
std::string result;
if (this->tree.getRoot() != NULL)
{
result = "Preorder сортировка:\n";
std::vector<int> values = this->tree.getPreorderValues();
for (int i = 0; i < values.size(); i++)
{
result += std::to_string(values[i]) + " ";
}
} else
result = "[Ошибка] Дерево не содержит элементов!";
this->console(result);
}
void MainWindow::on_postorder_pressed()
{
std::string result;
if (this->tree.getRoot() != NULL)
{
result = "Postorder сортировка:\n";
std::vector<int> values = this->tree.getPostorderValues();
for (int i = 0; i < values.size(); i++)
{
result += std::to_string(values[i]) + " ";
}
} else
result = "[Ошибка] Дерево не содержит элементов!";
this->console(result);
}
// utils
void MainWindow::_reload_Qtree()
{
ui->treeWidget->clear();
if (this->tree.getRoot() != NULL )
{
QTreeWidgetItem *item = new QTreeWidgetItem(ui->treeWidget);
item->setText(0, "Дерево");
this->_treeViewer(this->tree.getRoot(), item);
if (is_setting_three_uncover)
this->ui->treeWidget->expandAll();
}
}
void MainWindow::_treeViewer(node *_node, QTreeWidgetItem* tree)
/*
* Отрисовка виджета QTreeWidget
*/
{
if (_node != nullptr)
{
QTreeWidgetItem *item = new QTreeWidgetItem(tree);
item->setText(0, QString::fromStdString(std::to_string(_node->key)));
// Обходим лево
QTreeWidgetItem *item_left = new QTreeWidgetItem(item);
item_left->setText(0, "Лево");
this->_treeViewer(_node->left, item_left);
if (item_left->childCount() == 0)
item->removeChild(item_left);
// Обходим право
QTreeWidgetItem *item_right = new QTreeWidgetItem(item);
item_right->setText(0, "Право");
this->_treeViewer(_node->right, item_right);
if (item_right->childCount() == 0)
item->removeChild(item_right);
}
}
void MainWindow::on_checkBox_stateChanged(int state)
{
if (state)
this->is_setting_three_uncover = true;
else
this->is_setting_three_uncover = false;
this->_reload_Qtree();
}