From 49065b25b2e41e3cfc7037e1459c9c33ab94d6d4 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 22 Jun 2016 15:28:49 -0400 Subject: Continue splitting up all the various pages/tabs into distinct pages for lumina-config. All the UI files are now split up - starting to add in the cpp/h files now. (Still not tied into build yet) --- src-qt5/core-utils/lumina-config/pages/page_main.h | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src-qt5/core-utils/lumina-config/pages/page_main.h (limited to 'src-qt5/core-utils/lumina-config/pages/page_main.h') diff --git a/src-qt5/core-utils/lumina-config/pages/page_main.h b/src-qt5/core-utils/lumina-config/pages/page_main.h new file mode 100644 index 00000000..cbdf1cbd --- /dev/null +++ b/src-qt5/core-utils/lumina-config/pages/page_main.h @@ -0,0 +1,32 @@ +//=========================================== +// Lumina Desktop Source Code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#ifndef _LUMINA_CONFIG_PAGE_MAIN_H +#define _LUMINA_CONFIG_PAGE_MAIN_H +#include "../globals.h" + +namespace Ui{ + class page_main; +}; + +class page_main : public PageWidget{ + Q_OBJECT +public: + page_main(QWidget *parent); + ~page_main(); + +public slots: + void SaveSettings(); + void LoadSettings(int screennum); + void updateIcons(); + +private: + Ui::page_main *ui; + +private slots: + +}; +#endif -- cgit