diff options
author | Kris Moore <kris@pcbsd.org> | 2014-09-04 11:42:13 -0400 |
---|---|---|
committer | Kris Moore <kris@pcbsd.org> | 2014-09-04 11:42:13 -0400 |
commit | 71737f70949bd25f9aa8bc4e7d03039ba83c6cb1 (patch) | |
tree | ab29e864d1ae59d10cc6875af9541e3ad306b2fb /lumina-desktop/LDesktop.h | |
parent | Initial commit (diff) | |
download | lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.tar.gz lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.tar.bz2 lumina-71737f70949bd25f9aa8bc4e7d03039ba83c6cb1.zip |
Initial import of the lumina code from pcbsd git repo
Diffstat (limited to 'lumina-desktop/LDesktop.h')
-rw-r--r-- | lumina-desktop/LDesktop.h | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/lumina-desktop/LDesktop.h b/lumina-desktop/LDesktop.h new file mode 100644 index 00000000..503a820f --- /dev/null +++ b/lumina-desktop/LDesktop.h @@ -0,0 +1,98 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2012, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#ifndef _LUMINA_DESKTOP_LDESKTOP_H +#define _LUMINA_DESKTOP_LDESKTOP_H + +#include <QCoreApplication> + + +#include <QSettings> +#include <QFile> +#include <QList> +#include <QDebug> +#include <QTimer> +#include <QFileSystemWatcher> +#include <QLabel> +#include <QWidgetAction> +#include <QMdiArea> +#include <QMdiSubWindow> + + +#include <LuminaXDG.h> + +#include "LPanel.h" +#include "Globals.h" +#include "AppMenu.h" +#include "desktop-plugins/LDPlugin.h" +#include "desktop-plugins/LDPluginContainer.h" +#include "desktop-plugins/NewDP.h" + +class LDesktop : public QObject{ + Q_OBJECT +public: + LDesktop(int deskNum=0); + ~LDesktop(); + + int Screen(); //return the screen number this object is managing + void show(); + void hide(); + +public slots: + void SystemLogout(); + void SystemTerminal(); + void SystemFileManager(); + void SystemApplication(QAction*); + +private: + QSettings *settings; + QTimer *bgtimer; + QDesktopWidget *desktop; + QString DPREFIX; + int desktopnumber; + //int xoffset; + bool defaultdesktop, desktoplocked, changingsettings, issyncing; + QList<LPanel*> PANELS; + QMdiArea *bgDesktop; //desktop widget area + QWidget *bgWindow; //full screen background + QMenu *deskMenu; + AppMenu *appmenu; + QLabel *workspacelabel; + QWidgetAction *wkspaceact; + QList<LDPlugin*> PLUGINS; + QFileSystemWatcher *watcher; + QString CBG; //current background + + void CreateDesktopPluginContainer(LDPlugin*); + +private slots: + void SettingsChanged(); + void UnlockSettings(){ issyncing=false; } + void UpdateMenu(bool fast = false); + void ShowMenu(){ + UpdateMenu(true); //run the fast version + deskMenu->popup(QCursor::pos()); + } + + //Desktop plugin system functions + void UpdateDesktop(); + void ToggleDesktopLock(); + void AlignDesktopPlugins(); + void DesktopPluginRemoved(QString); + + void UpdatePanels(); + + void UpdateDesktopPluginArea(); //make sure the area is not underneath any panels + + void UpdateBackground(); + void UpdateGeometry(int screen){ + if(screen==desktopnumber){ + bgWindow->setGeometry(desktop->screenGeometry(desktopnumber)); + QTimer::singleShot(0, this, SLOT(UpdatePanels())); + } + } +}; +#endif |