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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Controls.Material
Item {
id: rootItem
property bool show: true
property real showAnimation: show ? 1 : 0
Material.theme: Material.Dark
Material.accent: Material.LightGreen
width: settings.settingsViewWidth
x: -(width + 30) * (1 - showAnimation) + 20
Behavior on showAnimation {
NumberAnimation {
duration: 400
easing.type: Easing.InOutQuad
}
}
// Open/close button
Item {
width: 30 * dp
height: 30 * dp
anchors.left: parent.right
anchors.leftMargin: 20
anchors.top: parent.top
anchors.topMargin: -10
Rectangle {
anchors.fill: parent
color: "#404040"
opacity: 0.4
border.width: 1
border.color: "#808080"
}
Image {
anchors.centerIn: parent
source: "images/arrow.png"
rotation: rootItem.showAnimation * 180
}
MouseArea {
anchors.fill: parent
anchors.margins: -30 * dp
onClicked: {
rootItem.show = !rootItem.show;
}
}
}
// Background
Rectangle {
anchors.fill: scrollView
opacity: showAnimation ? 0.6 : 0
visible: opacity
anchors.margins: -10
color: "#202020"
border.color: "#808080"
border.width: 1
}
ScrollView {
id: scrollView
anchors.fill: parent
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
ScrollBar.vertical.interactive: false
clip: true
Column {
id: settingsArea
width: rootItem.width
opacity: showAnimation
visible: opacity
spacing: 8 * dp
Item {
width: 1
height: 20 * dp
}
Image {
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
width: parent.width * 0.8
height: width * 0.25
source: "images/Built_with_Qt_RGB_logo.png"
}
Item {
width: 1
height: 28 * dp
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
text: qsTr("Switching Effects")
font.pixelSize: 20 * dp
font.bold: true
color: "#f0f0f0"
}
SettingsComponentButton {
text: "Blinds"
selected: settings.effectIndex === 0
onClicked: {
settings.effectIndex = 0;
}
}
SettingsComponentButton {
text: "Blurry"
selected: settings.effectIndex === 1
onClicked: {
settings.effectIndex = 1;
}
}
SettingsComponentButton {
text: "Heart"
selected: settings.effectIndex === 2
onClicked: {
settings.effectIndex = 2;
}
}
SettingsComponentButton {
text: "Stars"
selected: settings.effectIndex === 3
onClicked: {
settings.effectIndex = 3;
}
}
SettingsComponentButton {
text: "Thunder"
selected: settings.effectIndex === 4
onClicked: {
settings.effectIndex = 4;
}
}
SettingsComponentButton {
text: "3D Flip"
selected: settings.effectIndex === 5
onClicked: {
settings.effectIndex = 5;
}
}
Item {
width: 1
height: 10
}
SettingsComponentSlider {
text: qsTr("Animation Duration") + ": " + value.toFixed(0) + " ms"
value: settings.switchDuration
from: 500
to: 5000
onMoved: {
settings.switchDuration = value;
}
}
SettingsComponentSlider {
text: qsTr("Animation Time") + ": " + (value * settings.switchDuration).toFixed(0) + " ms"
value: itemSwitcher.inAnimation
from: 0
to: 1
onMoved: {
itemSwitcher.inAnimation = value;
}
}
}
}
}
|