diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-22 15:28:49 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-22 15:28:49 -0400 |
commit | 49065b25b2e41e3cfc7037e1459c9c33ab94d6d4 (patch) | |
tree | 7966904cb9e209037372bc08f15c3ecdf3faf24c /src-qt5/core-utils/lumina-config/pages/page_main.h | |
parent | Add the backtrace of the dbus crash on Qt 5.6.1 (diff) | |
download | lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.tar.gz lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.tar.bz2 lumina-49065b25b2e41e3cfc7037e1459c9c33ab94d6d4.zip |
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)
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages/page_main.h')
-rw-r--r-- | src-qt5/core-utils/lumina-config/pages/page_main.h | 32 |
1 files changed, 32 insertions, 0 deletions
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 |