-
Notifications
You must be signed in to change notification settings - Fork 2
/
MainWindow.h
47 lines (32 loc) · 854 Bytes
/
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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "RecentFiles.h"
namespace Ui {
class MainWindow;
}
class QCloseEvent;
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
public slots:
/// When the user clicks File->Open ... we end up here
void on_actionFileOpen_triggered();
///
void on_actionFileSave_triggered();
void on_actionFileSaveAs_triggered();
/// construct/display a reasonable About dialog
void on_actionHelpAbout_triggered();
/// Called to clean up when the window is about to close
void closeEvent(QCloseEvent *event);
private slots:
void loadFile(QString filename);
private:
bool shouldAbortClose();
Ui::MainWindow *ui;
RecentFiles m_recentFiles;
};
#endif // MAINWINDOW_H