aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/Globals.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-10 14:00:16 -0500
committerKen Moore <ken@ixsystems.com>2016-11-10 14:00:16 -0500
commit9553d3929dc5b32c80c23fc426da09ed80c36ed3 (patch)
treeded71dd6fdc8c088364da967a34e86e6f631bb02 /src-qt5/core/lumina-desktop/Globals.h
parentAdd pass-through for context menu requests on many desktop plugins. (diff)
downloadlumina-9553d3929dc5b32c80c23fc426da09ed80c36ed3.tar.gz
lumina-9553d3929dc5b32c80c23fc426da09ed80c36ed3.tar.bz2
lumina-9553d3929dc5b32c80c23fc426da09ed80c36ed3.zip
Add a new panel plugin:
"audioplayer": This is panel-based implementation of the desktop plugin with the same name. Allows the user to load/play audio files directly from the desktop session without loading any external applications.
Diffstat (limited to 'src-qt5/core/lumina-desktop/Globals.h')
-rw-r--r--src-qt5/core/lumina-desktop/Globals.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src-qt5/core/lumina-desktop/Globals.h b/src-qt5/core/lumina-desktop/Globals.h
index 14dfd93f..3df48741 100644
--- a/src-qt5/core/lumina-desktop/Globals.h
+++ b/src-qt5/core/lumina-desktop/Globals.h
@@ -8,17 +8,20 @@
#define _LUMINA_DESKTOP_GLOBALS_H
#include <LUtils.h>
+#include <LuminaXDG.h>
+#include <LuminaOS.h>
#include <LDesktopUtils.h>
-//#include "../global.h"
+
+#include <QWidgetAction>
+#include <QMenu>
+#include <QString>
+#include <QIcon>
+#include <QWidget>
+#include <QAction>
#include <unistd.h>
#include <stdio.h>
-/*#ifdef __linux
- // Needed for BUFSIZ
- #include <stdio.h>
-#endif // #ifdef __linux*/
-
class Lumina{
public:
enum STATES {NONE, VISIBLE, INVISIBLE, ACTIVE, NOTIFICATION, NOSHOW};
bgstack15