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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
Column {
id: rootItem
property alias text: textItem.text
property bool show: true
default property alias contents: contentItem.children
property real showHideAnimationSpeed: 400
width: settings.settingsViewWidth
Component.onCompleted: {
// Set initial open state
contentItem.visible = rootItem.show;
contentItem.opacity = rootItem.show;
contentItemArea.height = rootItem.show ? contentItem.height : 0;
}
Item {
id: lightsSettings
width: parent.width
height: 30
Rectangle {
anchors.fill: parent
color: "#404040"
border.width: 1
border.color: "#808080"
opacity: 0.4
}
Image {
x: 8
source: "images/arrow.png"
anchors.verticalCenter: parent.verticalCenter
rotation: rootItem.show ? 90 : 0
Behavior on rotation {
NumberAnimation {
duration: showHideAnimationSpeed
easing.type: Easing.InOutQuad
}
}
}
Text {
id: textItem
x: 30
anchors.verticalCenter: parent.verticalCenter
color: "#f0f0f0"
font.bold: true
font.pixelSize: 16 * dp
}
MouseArea {
anchors.fill: parent
onClicked: {
rootItem.show = !rootItem.show;
if (rootItem.show) {
hideAnimation.stop();
showAnimation.start();
} else {
showAnimation.stop();
hideAnimation.start();
}
}
}
}
Item {
width: 1
height: 5
}
SequentialAnimation {
id: showAnimation
ScriptAction {
script: contentItem.visible = true;
}
ParallelAnimation {
NumberAnimation {
target: contentItemArea
property: "height"
to: contentItem.height
duration: showHideAnimationSpeed
easing.type: Easing.InOutQuad
}
SequentialAnimation {
PauseAnimation {
duration: showHideAnimationSpeed / 2
}
NumberAnimation {
target: contentItem
property: "opacity"
to: 1.0
duration: showHideAnimationSpeed / 2
easing.type: Easing.InOutQuad
}
}
}
}
SequentialAnimation {
id: hideAnimation
ParallelAnimation {
NumberAnimation {
target: contentItemArea
property: "height"
to: 0
duration: showHideAnimationSpeed
easing.type: Easing.InOutQuad
}
SequentialAnimation {
NumberAnimation {
target: contentItem
property: "opacity"
to: 0
duration: showHideAnimationSpeed / 2
easing.type: Easing.InOutQuad
}
PauseAnimation {
duration: showHideAnimationSpeed / 2
}
}
}
ScriptAction {
script: contentItem.visible = false;
}
}
Item {
id: contentItemArea
width: parent.width - 10
x: 5
Column {
id: contentItem
spacing: -10
}
}
Item {
width: 1
height: 5
}
}
|