aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-11-03 13:55:36 -0400
committerKen Moore <ken@ixsystems.com>2016-11-03 13:55:36 -0400
commit43358bcfd3f815d6f124c70d330a3128aeff9c08 (patch)
tree8ec9a3bdb5093754ce5c04b7062abd02788f17c7 /src-qt5/core/lumina-desktop
parentAdd the new Qt5 theme engine setting to lumina-config. (diff)
downloadlumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.tar.gz
lumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.tar.bz2
lumina-43358bcfd3f815d6f124c70d330a3128aeff9c08.zip
Convert the ResizeMenu class into it's own files:
1) Add a new .pri for loading just that class (works stand-alone) 2) Setup the lumina-desktop to use the new build framework for including that class.
Diffstat (limited to 'src-qt5/core/lumina-desktop')
-rw-r--r--src-qt5/core/lumina-desktop/lumina-desktop.pro3
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/lumina-desktop.pro b/src-qt5/core/lumina-desktop/lumina-desktop.pro
index 814725cc..effa0508 100644
--- a/src-qt5/core/lumina-desktop/lumina-desktop.pro
+++ b/src-qt5/core/lumina-desktop/lumina-desktop.pro
@@ -53,6 +53,9 @@ HEADERS += Globals.h \
FORMS += SystemWindow.ui \
BootSplash.ui
+#include all the special classes from the Lumina tree
+include(../libLumina/ResizeMenu.pri)
+
#Now include all the files for the various plugins
include(panel-plugins/panel-plugins.pri)
include(desktop-plugins/desktop-plugins.pri)
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.h b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.h
index 1a17b75b..22742bc5 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.h
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/LStartButton.h
@@ -25,6 +25,7 @@
// libLumina includes
#include <LuminaXDG.h>
#include <LuminaUtils.h>
+#include <ResizeMenu.h>
#include "StartMenu.h"
bgstack15