-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMainWindow.cpp
87 lines (65 loc) · 1.66 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
#include "MainWindow.h"
#include "ui_MainWindow.h"
#include "VSLapp.h"
#include <QCloseEvent>
#include <QSettings>
#include <QFileDialog>
#include "ExcelTable.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow),
m_recentMenu(this)
{
ui->setupUi(this);
m_recentMenu.attachToMenuAfterItem(ui->menuFile, "Open...", SLOT(loadFile(QString)));
VSLapp::mainWindowSetup(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_actionFileOpen_triggered()
{
QSettings settings;
QString fileName = QFileDialog::getOpenFileName(this, "Select File",
settings.value("currentDirectory").toString(),
"All Files (*.*)");
if (fileName.isEmpty())
return;
loadFile(fileName);
}
void MainWindow::on_actionFileSave_triggered()
{
qDebug("save");
}
void MainWindow::on_actionFileSaveAs_triggered()
{
qDebug("saveAs");
}
void MainWindow::on_actionHelpAbout_triggered()
{
VSLapp::showAboutDialog(this);
}
void MainWindow::closeEvent(QCloseEvent *event)
{
if (shouldAbortClose()) {
event->ignore();
} else {
VSLapp::mainWindowSave(this);
event->accept();
}
}
void MainWindow::loadFile(QString filename)
{
QSettings settings;
QFileInfo fi(filename);
settings.setValue("currentDirectory", fi.absolutePath());
m_recentMenu.setMostRecentFile(filename);
ui->excelTableWidget->import(filename);
}
bool MainWindow::shouldAbortClose()
{
// Ask all open documents to save/close
// if any object then return "true"
return false;
}