aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/globals.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-22 15:28:49 -0400
committerKen Moore <moorekou@gmail.com>2016-06-22 15:28:49 -0400
commit49065b25b2e41e3cfc7037e1459c9c33ab94d6d4 (patch)
tree7966904cb9e209037372bc08f15c3ecdf3faf24c /src-qt5/core-utils/lumina-config/globals.h
parentAdd the backtrace of the dbus crash on Qt 5.6.1 (diff)
downloadlumina-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/globals.h')
-rw-r--r--src-qt5/core-utils/lumina-config/globals.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/globals.h b/src-qt5/core-utils/lumina-config/globals.h
new file mode 100644
index 00000000..18302125
--- /dev/null
+++ b/src-qt5/core-utils/lumina-config/globals.h
@@ -0,0 +1,22 @@
+//===========================================
+// 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_GLOBALS_H
+#define _LUMINA_CONFIG_GLOBALS_H
+
+#include <QString>
+#include <QStringList>
+#include <QList>
+#include <QWidget>
+#include <QDesktopWidget>
+
+//Now the Lumina Library classes
+#include <LuminaXDG.h>
+#include <LuminaUtils.h>
+#include <LuminaX11.h>
+#include <LuminaOS.h>
+
+#endif
bgstack15