1 //===========================================
2 //  Lumina-DE source code
3 //  Copyright (c) 2014-2015, Ken Moore
4 //  Available under the 3-clause BSD license
5 //  See the LICENSE file for full details
6 //===========================================
7 
8 #include <QMainWindow>
9 
10 namespace Ui{
11   class MainUI;
12 };
13 
14 class MainUI : public QMainWindow {
15   Q_Object
16 public:
17   MainUI();
18   ~MainUI();
19 
20 public slots:
21   void setupIcons();
22 
23 private:
24   Ui::MainUI *ui;
25 
26 private slots:
closeApplication()27   void closeApplication() {
28     this->close();
29   }
30 //protected:
31 //events go here
32 };
33