This repository has been archived by the owner on Oct 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
executable file
·121 lines (97 loc) · 3.32 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
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
/*****************************************************************************
* Copyright © 2015 Oakware - All Rights Reserved
*
* Github : <https://github.com/Oakware>
* Authors: Ivan Kondratuk <i.o.kondratuk@gmail.com>
*
* This file is part of Graph Builder.
*
* Graph Builder is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Graph Builder is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Graph Builder. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
/// <Includes>
#include "project_global.h"
#include "GraphView/graphview.h"
#include "OptionDialog/optiondialog.h"
#include "AboutDialog/aboutdialog.h"
#include "mainwindow_header.h"
/// </Includes>
namespace Ui{class MainWindow;}
/// <Class>
class MainWindow: public QMainWindow{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
/// <MainData>
private:
Ui::MainWindow *ui; // Ui
OptionDialog::PROptions Options; // Options
QHBoxLayout *MainLayot; // Main Layot
GraphView *GraphV; // Graph builder widget
AbstractGraph Graph; // Graph
bool GrChanged; // Changed flag
#define MW_MAIN_DATA_INIT \
GrChanged = false;
/// </MainData>
/// <Other>
private:
void closeEvent(QCloseEvent *ev); // On close
void changeEvent(QEvent *ev); // Change event
void UpdateOptions(); // Update options
void SetSaveFile(const QString &FileName); // Set save file
void ResetTitle(); // Reset title
private slots:
void GraphChanged(); // Graph changed
/// </Other>
/// <VertexInfoDW>
private slots:
void UpdateVerInfo(); // Update vertex info
void on_actionDock_visible_toggled(bool arg1);
void on_VRadiusSpinBox_valueChanged(int arg1);
void on_VColorToolButton_clicked();
/// </VertexInfoDW>
/// <RibInfoDW>
private slots:
void UpdateRibInfo(); // Update rib info
void on_actionRib_info_toggled(bool arg1);
void on_RWeightSpinBox_valueChanged(int arg1);
void on_RColorToolButton_clicked();
/// </RibInfoDW>
/// <Algorithms>
private slots:
void on_actionRun_algorithm_triggered(); // Run
void on_actionBFS_toggled(bool arg1); // Select
void on_actionDFS_toggled(bool arg1);
void on_actionDijkstra_toggled(bool arg1);
void on_actionMinOstP_toggled(bool arg1);
void on_actionMinOstK_toggled(bool arg1);
private:
void SetAlgoSelected(int algo);
void ResetSelected();
/// </Algorithms>
/// <UiSlots>
private slots:
bool Open(QString FileName = QString()); // Open
bool Save(); // Save
bool SaveAs(QString FileName = QString()); // Save as
void on_actionOriented_toggled(bool arg1); // Oriented
void on_actionClear_triggered(); // Clear
void on_actionOptions_triggered(); // Options
void on_actionAbout_triggered(); // About
/// </UiSlots>
};
/// </Class>
#endif // MAINWINDOW_H