diff options
Diffstat (limited to 'src-qt5/experimental/lumina-screencast/MainUI.h')
-rw-r--r-- | src-qt5/experimental/lumina-screencast/MainUI.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src-qt5/experimental/lumina-screencast/MainUI.h b/src-qt5/experimental/lumina-screencast/MainUI.h new file mode 100644 index 00000000..a01413dd --- /dev/null +++ b/src-qt5/experimental/lumina-screencast/MainUI.h @@ -0,0 +1,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 +}; |