-
Notifications
You must be signed in to change notification settings - Fork 4
/
citywindow.h
52 lines (33 loc) · 830 Bytes
/
citywindow.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
#ifndef CITYWINDOW_H
#define CITYWINDOW_H
#include <QMainWindow>
#include "graph.h"
#include "mainwindow.h"
namespace Ui {
class CityWindow;
}
class CityWindow : public QMainWindow
{
Q_OBJECT
public:
explicit CityWindow(QWidget *parent = nullptr);
~CityWindow();
private slots:
void on_main_menu_clicked();
void on_updBtn_clicked();
void on_deleteBtn_clicked();
void on_SPBtn_clicked();
void on_dispBtn_clicked();
void on_addDistBtn_clicked();
void on_addTownBtn_clicked();
void on_Add_dist_clicked();
void on_getSP_btn_clicked();
void on_upd_options_currentIndexChanged(int index);
void upd_options_enabled(bool);
void on_upd_btn_clicked();
void on_pushButton_clicked();
public:
Ui::CityWindow *ui;
Graph city ;
};
#endif // CITYWINDOW_H