aboutsummaryrefslogtreecommitdiff
path: root/lumina-wm-INCOMPLETE/WMSession.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-29 11:12:12 -0400
committerKen Moore <ken@pcbsd.org>2015-04-29 11:41:54 -0400
commita209ff054390f7f0b1f51d5358891e9a839b3888 (patch)
tree42122aab02ff913476bb188118e39eb3bb988070 /lumina-wm-INCOMPLETE/WMSession.h
parentAdd the "file:" flag to the beginning of any local file in lumina-open if the... (diff)
downloadlumina-a209ff054390f7f0b1f51d5358891e9a839b3888.tar.gz
lumina-a209ff054390f7f0b1f51d5358891e9a839b3888.tar.bz2
lumina-a209ff054390f7f0b1f51d5358891e9a839b3888.zip
Rename the lumina-wm directory to lumina-wm-INCOMPLETE so people know it is not ready yet. Also update the readme with the information about the new release.
Diffstat (limited to 'lumina-wm-INCOMPLETE/WMSession.h')
-rw-r--r--lumina-wm-INCOMPLETE/WMSession.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/lumina-wm-INCOMPLETE/WMSession.h b/lumina-wm-INCOMPLETE/WMSession.h
new file mode 100644
index 00000000..a1212af5
--- /dev/null
+++ b/lumina-wm-INCOMPLETE/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