aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-desktop/src-qml/ContextMenu.qml
blob: e5bac0b550d64b090efe651bae2b1e29c555dae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===========================================
//  Lumina-desktop source code
//  Copyright (c) 2017, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
import QtQuick 2.2
import QtQuick.Window 2.2
import QtQuick.Controls 2.0

import Lumina.Backend.RootDesktopObject 2.0

Menu { 
    id: contextMenu
    closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
    MenuItem {
      text: "Lock Screen"
      onTriggered: {
        RootObject.lockscreen()
      }
    }

    MenuItem {
      text: "Logout"
      //iconName: "system-log-out"
      indicator: Image{
        asynchronous: true
        //autoTransform: true
        //source: "image://theme/system-logout"
        source: "file:///usr/local/share/icons/material-design-light/scalable/actions/system-log-out.svg"
      }
      onTriggered: {
        RootObject.logout()
      }
    }
  }
bgstack15