blob: a01413ddbbded76e32e3a93df978e8ab501b43aa (
plain)
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
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2014-2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include <QMainWindow>
namespace Ui{
class MainUI;
};
class MainUI : public QMainWindow {
Q_Object
public:
MainUI();
~MainUI();
public slots:
void setupIcons();
private:
Ui::MainUI *ui;
private slots:
void closeApplication() {
this->close();
}
//protected:
//events go here
};
|