-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.h
53 lines (46 loc) · 1.04 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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include "heapthread.h"
#include "bubblethread.h"
#include "quickthread.h"
#include <QTime>
#include <QTimer>
#include <QLabel>
#include <QString>
#include <QMessageBox>
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
const int HLAYOUTWIDTH = 500;
const int HLAYOUTHEIGHT = 300;
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void heapSort();
void quickSort();
void bubbleSort();
void randomHeights();
void deleteColumns();
void setSpeed(int speed);
void showFinish(int sortType);
void sortColumns(int a, int b, int* heights);
private:
Ui::MainWindow *ui;
int number = 0;
int speed = 50;
int *heights;
bool sorted = false;
bool heapSorting = false;
bool quickSorting = false;
bool bubbleSorting = false;
QLabel *labels;
HeapThread *heapThread;
QuickThread *quickThread;
BubbleThread *bubbleThread;
};
#endif // MAINWINDOW_H