blob: d0114bc70f2e642abb25ddd55fa5cc6d9a516129 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtApplicationManager
import QtApplicationManager.SystemUI
Item {
width: 800
height: 600
IntentModel {
id: intentModel
filterFunction: function(i) { return i.categories.includes("launcher") }
sortFunction: function(li, ri) { return li.name > ri.name }
}
// Show intent names and icons
Column {
spacing: 20
Repeater {
model: intentModel
Column {
id: delegate
required property url icon
required property string applicationId
required property string intentId
required property string name
Image {
source: delegate.icon
MouseArea {
anchors.fill: parent
onPressAndHold: {
var app = ApplicationManager.application(delegate.applicationId)
if (app.runState === Am.Running)
app.stop()
}
onClicked: {
IntentClient.sendIntentRequest(delegate.intentId,
delegate.applicationId, {})
}
}
}
Text {
font.pixelSize: 20
text: delegate.name
}
}
}
}
// Show windows
Column {
anchors.right: parent.right
Repeater {
model: WindowManager
WindowItem {
required property var model
width: 600
height: 200
window: model.window
}
}
}
}
|