aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/global-objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/global-objects.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/global-objects.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/global-objects.h b/src-qt5/core/lumina-desktop-unified/global-objects.h
new file mode 100644
index 00000000..d712c32b
--- /dev/null
+++ b/src-qt5/core/lumina-desktop-unified/global-objects.h
@@ -0,0 +1,28 @@
+//===========================================
+// Lumina-desktop source code
+// Copyright (c) 2015-2016, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+// Global defines and enumerations for external includes
+//===========================================
+#ifndef _LUMINA_INTERNAL_GLOBAL_OBJECTS_H
+#define _LUMINA_INTERNAL_GLOBAL_OBJECTS_H
+
+#include "Global-includes.h"
+
+//Any special defines for settings/testing
+#define ANIMTIME 80 //animation time in milliseconds
+
+//Global flags/structures
+namespace Lumina{
+ //Flags/enumerations
+ enum WindowAction{MoveResize, Show, Hide, TryClose, Closed, WA_NONE};
+
+ //Data structures and objects
+ extern LXCB *SYSTEM;
+
+};
+
+
+#endif
bgstack15