blob: 9f78bce091c5e9f45c4d611d89b2d2504cca7f6a (
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
66
67
68
69
70
71
72
73
74
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls
Item {
id: rootItem
property real showState: AppSettings.showSettingsView ? 1.0 : 0.0
default property alias content: settingsArea.children
width: settingsDrawer.width
height: settingsDrawer.height
Button {
x: (settingsDrawer.visible) ? settingsDrawer.x - width : Window.window.width - width
anchors.top: parent.top
width: AppSettings.iconSize
height: width
opacity: rootItem.showState * 0.6 + 0.4
visible: opacity
icon.width: width * 0.3
icon.height: height * 0.3
icon.source: "qrc:/images/icon_settings.png"
icon.color: "transparent"
background: Rectangle {
color: "transparent"
}
onClicked: {
AppSettings.showSettingsView = !AppSettings.showSettingsView;
}
}
Drawer {
id: settingsDrawer
modal: false
edge: Qt.RightEdge
interactive: false
leftInset: -10
topInset: -20
bottomInset: -20
topMargin: 10
visible: AppSettings.showSettingsView
background: Rectangle {
color: "#80404040"
border.color: "#000000"
border.width: 1
opacity: 0.8
}
Column {
id: settingsArea
}
enter: Transition {
NumberAnimation {
property: "position"
to: 1.0
duration: 800
easing.type: Easing.InOutQuad
}
}
exit: Transition {
NumberAnimation {
property: "position"
to: 0.0
duration: 800
easing.type: Easing.InOutQuad
}
}
}
}
|