aboutsummaryrefslogtreecommitdiff
path: root/lumina-wm-INCOMPLETE/main.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
committerKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
commited5ecf7ea7a482b4649e66ecb35fbc60af680684 (patch)
treeacc0fa17d228259e847f55c678db9fb0a9b50f0c /lumina-wm-INCOMPLETE/main.cpp
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.gz
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.bz2
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.zip
Rearrange the Lumina source tree quite a bit:
Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
Diffstat (limited to 'lumina-wm-INCOMPLETE/main.cpp')
-rw-r--r--lumina-wm-INCOMPLETE/main.cpp58
1 files changed, 0 insertions, 58 deletions
diff --git a/lumina-wm-INCOMPLETE/main.cpp b/lumina-wm-INCOMPLETE/main.cpp
deleted file mode 100644
index 50251fa5..00000000
--- a/lumina-wm-INCOMPLETE/main.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-//===========================================
-// Lumina-DE source code
-// Copyright (c) 2015, Ken Moore
-// Available under the 3-clause BSD license
-// See the LICENSE file for full details
-//===========================================
-
-#include "GlobalDefines.h"
-//Initialize any global structures here
-LXCB *LWM::SYSTEM = 0;
-
-//Local includes
-#include "WMSession.h"
-#include "LWindow.h"
-#include <QDialog>
-
-
-//#define DEBUG 0
-int main(int argc, char ** argv)
-{
- qDebug() << "Starting lumina-wm...";
- LTHEME::LoadCustomEnvSettings();
- LSingleApplication a(argc, argv, "lumina-wm");
- if(!a.isPrimaryProcess()){ return 0; } //Inputs forwarded on to the primary already
- LuminaThemeEngine themes(&a);
-
- //Setup the special settings prefix location
- QSettings::setPath(QSettings::NativeFormat, QSettings::UserScope, QDir::homePath()+"/.lumina");
- //Setup the global structures
- LWM::SYSTEM = new LXCB();
- if( a.inputlist.contains("--test-win") ){
- //Simple override to test out the window class
- qDebug() << "Starting window test...";
- QLabel dlg(0, Qt::Window | Qt::BypassWindowManagerHint); //this test should be ignored by the current WM
- dlg.setText("Sample Window");
- dlg.setWindowTitle("Test");
- dlg.resize(200,100);
- dlg.setStyleSheet("background: rgba(255,255,255,100); color: black;");
- dlg.move(100,100);
- dlg.show();
- //dlg.move(100,100);
- qDebug() << " - Loading window frame...";
- LWindow win(dlg.winId()); //have it wrap around the dialog
- qDebug() << " - Show frame...";
- win.frame()->windowChanged(LWM::Show);
- qDebug() << " - Start event loop...";
- a.setQuitOnLastWindowClosed(true);
- return a.exec();
- }
- WMSession w;
- w.start(a.inputlist.contains("--test-ss"));
- QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(reloadIcons()) );
- QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(newInputsAvailable(QStringList)) );
- if(!a.inputlist.isEmpty()){ w.newInputsAvailable(a.inputlist); }
- int retCode = a.exec();
-
- return retCode;
-}
bgstack15