-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmainwindow.cpp
48 lines (40 loc) · 1.24 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
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QFileDialog>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
formGraph = ui->formGraph;
connect(ui->actSave, &QAction::triggered, this, &MainWindow::graphSave);
connect(ui->actSaveAs, &QAction::triggered, this, &MainWindow::graphSaveAs);
connect(ui->actOpen, &QAction::triggered, this, &MainWindow::graphOpen);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::graphSave() const {
ui->formGraph->saveGraph("graph.graph");
}
void MainWindow::graphSaveAs() {
QString fileName = QFileDialog::getSaveFileName(this,
"Сохранить файл",
"graph.graph",
"Graph Files (*.graph)");
ui->formGraph->saveGraph(fileName);
}
void MainWindow::graphOpen() {
QString fileName = QFileDialog::getOpenFileName(this,
"Открыть файл", "", "Graph Files (*.graph)");
FormGraph *f = FormGraph::openGraph(fileName);
if (!f) {
qWarning("!f");
return;
}
delete ui->formGraph;
ui->formGraph = f;
ui->gridLayout->addWidget(f, 0, 0, 1, 1);
repaint();
}