aboutsummaryrefslogtreecommitdiff
path: root/lumina-wm/WMSession.h
diff options
context:
space:
mode:
authorwilliam <william.os4y@gmail.com>2015-03-26 19:18:45 +0100
committerwilliam <william.os4y@gmail.com>2015-03-26 19:18:45 +0100
commit851c91e92ef57de3cdec582048a134ff5b5552f8 (patch)
tree8d7119048c2ca9b3f60c9a8a2f5699f6a18eb1b2 /lumina-wm/WMSession.h
parentWarn the user is they want to change a elemnt having translated values. (diff)
parentActually move the file/dir copy onto itself check earlier in the procedure, t... (diff)
downloadlumina-851c91e92ef57de3cdec582048a134ff5b5552f8.tar.gz
lumina-851c91e92ef57de3cdec582048a134ff5b5552f8.tar.bz2
lumina-851c91e92ef57de3cdec582048a134ff5b5552f8.zip
Merge remote-tracking branch 'upstream/master' into deskEditor
Diffstat (limited to 'lumina-wm/WMSession.h')
-rw-r--r--lumina-wm/WMSession.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/lumina-wm/WMSession.h b/lumina-wm/WMSession.h
new file mode 100644
index 00000000..a1212af5
--- /dev/null
+++ b/lumina-wm/WMSession.h
@@ -0,0 +1,40 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2015, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#ifndef _LUMINA_DESKTOP_WINDOW_MANAGER_SESSION_H
+#define _LUMINA_DESKTOP_WINDOW_MANAGER_SESSION_H
+
+#include <QObject>
+#include <QStringList>
+
+#include "LScreenSaver.h"
+
+class WMSession : public QObject{
+ Q_OBJECT
+public:
+ WMSession();
+ ~WMSession();
+
+ void start();
+
+private:
+ //XCB Event Watcher
+
+ //ScreenSaver
+ LScreenSaver *SS;
+
+ //Window Manager
+
+
+public slots:
+ void reloadIcons();
+ void newInputsAvailable(QStringList);
+
+private slots:
+
+};
+
+#endif \ No newline at end of file
bgstack15