aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaOS-template.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-09-19 10:20:49 -0400
committerKen Moore <ken@pcbsd.org>2014-09-19 10:20:49 -0400
commit136d287ae121eb8bfb1d9c5c0857cc5aa2fb507f (patch)
tree7bcc4e8b41025ccbe9c288c0c334f7dc7fd17a5a /libLumina/LuminaOS-template.cpp
parentAdd the ability to lock the screen from the log out menu in lumina-desktop. (diff)
downloadlumina-136d287ae121eb8bfb1d9c5c0857cc5aa2fb507f.tar.gz
lumina-136d287ae121eb8bfb1d9c5c0857cc5aa2fb507f.tar.bz2
lumina-136d287ae121eb8bfb1d9c5c0857cc5aa2fb507f.zip
Add support for detecting whether the running user has permission to shutdown/restart the system, and enable/disable those options in the logout menu appropriately.
Diffstat (limited to 'libLumina/LuminaOS-template.cpp')
-rw-r--r--libLumina/LuminaOS-template.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/libLumina/LuminaOS-template.cpp b/libLumina/LuminaOS-template.cpp
index 0bfac22a..b975d5a1 100644
--- a/libLumina/LuminaOS-template.cpp
+++ b/libLumina/LuminaOS-template.cpp
@@ -64,6 +64,11 @@ void LOS::startMixerUtility(){
//not implemented yet
}
+//Check for user system permission (shutdown/restart)
+bool LOS::userHasShutdownAccess(){
+ return false; //not implemented yet
+}
+
//System Shutdown
void LOS::systemShutdown(){ //start poweroff sequence
QProcess::startDetached("shutdown -p now");
bgstack15