DeskUp 0.3
Loading...
Searching...
No Matches
mainWindow.h
1#ifndef MAINWINDOW_H
2#define MAINWINDOW_H
3
4#include <QMainWindow>
5
6class QAction;
7
8class MainWindow : public QMainWindow
9{
10 Q_OBJECT
11
12public:
13 explicit MainWindow(QWidget *parent = nullptr);
14
15private slots:
16 void onAddWorkspace();
17 void onRestoreWorkspace();
18 void onExit();
19 void onAbout();
20
21private:
22 void setupMenus();
23
24 static void showSaveSuccessful();
25 static void showRestoreSuccessful();
26};
27
28#endif