aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-22 16:31:09 -0400
committerKen Moore <moorekou@gmail.com>2016-06-22 16:31:09 -0400
commit4f5edf23d6ea103cfd05bb7a4afb0c0db1a0ed11 (patch)
treeb8888da1a524b7c5822350d2fac673be4ad0b9f1 /src-qt5/core-utils/lumina-config/pages
parentGet the new lumina-config UI all setup and tied into the build for compilatio... (diff)
downloadlumina-4f5edf23d6ea103cfd05bb7a4afb0c0db1a0ed11.tar.gz
lumina-4f5edf23d6ea103cfd05bb7a4afb0c0db1a0ed11.tar.bz2
lumina-4f5edf23d6ea103cfd05bb7a4afb0c0db1a0ed11.zip
Get the general page loading system all setup for the new mainWindow class.
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages')
-rw-r--r--src-qt5/core-utils/lumina-config/pages/PageWidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/PageWidget.h b/src-qt5/core-utils/lumina-config/pages/PageWidget.h
index ab81ba1b..937e6692 100644
--- a/src-qt5/core-utils/lumina-config/pages/PageWidget.h
+++ b/src-qt5/core-utils/lumina-config/pages/PageWidget.h
@@ -31,6 +31,8 @@ public:
PageWidget(QWidget *parent) : QWidget(parent){}
~PageWidget(){}
+ virtual bool needsScreenSelector(){ return false; } //change this to true for pages which load/set options on a per-screen basis
+
signals:
//emit this when the page has changes which are waiting to be saved
void HasPendingChanges(bool);
bgstack15