aboutsummaryrefslogtreecommitdiffstats
path: root/apps/com.theqtcompany.cluster/panels/DialFramePanel.qml
blob: 391caf0b09b7bb61053ab084f434c139cd650552 (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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/****************************************************************************
**
** Copyright (C) 2019 Luxoft Sweden AB
** Copyright (C) 2018 Pelagicore AG
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Neptune 3 Cluster UI.
**
** $QT_BEGIN_LICENSE:GPL-QTAS$
** Commercial License Usage
** Licensees holding valid commercial Qt Automotive Suite licenses may use
** this file in accordance with the commercial license agreement provided
** with the Software or, alternatively, in accordance with the terms
** contained in a written agreement between you and The Qt Company.  For
** licensing terms and conditions see https://www.qt.io/terms-conditions.
** For further information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/

import QtQuick 2.9
import QtGraphicalEffects 1.0
import QtQuick.Shapes 1.0
import "../helpers" 1.0
import shared.Style 1.0
import shared.Sizes 1.0

Item {
    id: root
    width: Sizes.dp(560)
    height: width

    //public
    property real highLightAng: zeroAng
    property real zeroAng: minAng
    property real maxAng: 90
    property real minAng: -270
    property color positiveColor: Style.accentColor
    property color negativeColor: Style.accentColor

    //private
    QtObject {
        id: d
        readonly property real maxRadin: (root.maxAng > 90) ? (Math.PI / 2) : (root.maxAng / 180 * Math.PI)
        readonly property real minRadin: (root.minAng < -270) ? (-Math.PI * 3 / 2) : (root.minAng / 180 * Math.PI)
        readonly property real zeroRadin: (root.zeroAng > root.maxAng || root.zeroAng < root.minAng) ?
                                root.minRadin : (root.zeroAng / 180 * Math.PI)
        readonly property real highLightRadin: (root.highLightAng < root.minAng) ?
                                root.minRadin : (root.highLightAng > root.maxAng) ?
                                              root.maxRadin : (root.highLightAng / 180 * Math.PI)
        readonly property bool isPositive: (root.highLightAng >= root.zeroAng) ? true : false
        readonly property color fillColor: isPositive ? root.positiveColor : root.negativeColor
    }

    //states and transitions
    state: "stopped"
    states: [
        State {
            name: "stopped"
            PropertyChanges { target: highLightOut; opacity: 0 }
            PropertyChanges { target: highLightIn; opacity: 0 }
            PropertyChanges { target: innerCircle; opacity: 0; width: Sizes.dp(100) }
            PropertyChanges { target: innerCircleShadow; opacity: 0; width: Sizes.dp(112) }
            PropertyChanges { target: outBg; opacity: 0; width: Sizes.dp(140) }
            PropertyChanges { target: outSmallBg; opacity: 0; width: Sizes.dp(150) }
            PropertyChanges { target: outEdge; opacity: 0; width: Sizes.dp(140) }
            PropertyChanges { target: outShadow; opacity: 0; width: Sizes.dp(150) }
        },
        State {
            name: "normal"
            PropertyChanges { target: highLightOut; opacity: 1 }
            PropertyChanges { target: highLightIn; opacity: 1 }
            PropertyChanges { target: innerCircle; opacity: 1; width: Sizes.dp(310) }
            PropertyChanges { target: innerCircleShadow; opacity: 1; width: Sizes.dp(350) }
            PropertyChanges { target: outBg; opacity: 1; width: Sizes.dp(520) }
            PropertyChanges { target: outSmallBg; opacity: 0; width: Sizes.dp(560) }
            PropertyChanges { target: outEdge; opacity: 1; width: Sizes.dp(520) }
            PropertyChanges { target: outShadow; opacity: 1; width: Sizes.dp(560) }
        },
        State {
            name: "navi"
            PropertyChanges { target: highLightOut; opacity: 1 }
            PropertyChanges { target: highLightIn; opacity: 1 }
            PropertyChanges { target: innerCircle; opacity: 1; width: Sizes.dp(310) }
            PropertyChanges { target: innerCircleShadow; opacity: 1; width: Sizes.dp(350) }
            PropertyChanges { target: outBg; opacity: 1; width: Sizes.dp(340) }
            PropertyChanges { target: outSmallBg; opacity: 1; width: Sizes.dp(366.15) }
            PropertyChanges { target: outEdge; opacity: 1; width: Sizes.dp(340) }
            PropertyChanges { target: outShadow; opacity: 1; width: Sizes.dp(366.15) }
        }
    ]

    transitions: [
        Transition {
            from: "stopped"
            to: "normal"
            reversible: true
            SequentialAnimation{
                //fade in circles(1280ms)
                ParallelAnimation {
                    PropertyAnimation { targets: [innerCircle, innerCircleShadow]; properties: "opacity"; duration: 1080 }
                    SequentialAnimation {
                        PauseAnimation { duration: 200 }
                        PropertyAnimation { targets: [outBg, outSmallBg, outEdge, outShadow]; properties: "opacity"; duration: 1080 }
                    }
                }
                //expand circles(320ms)
                ParallelAnimation {
                    PropertyAnimation { targets: [innerCircle, innerCircleShadow]; properties: "width"; duration: 270 }
                    SequentialAnimation {
                        PauseAnimation { duration: 50 }
                        PropertyAnimation { targets: [outBg, outSmallBg, outEdge, outShadow]; properties: "width"; duration: 270 }
                    }
                }
                //wait outside components to fade in & fade in the highlights(640ms)
                PauseAnimation { duration: 510 }
                PropertyAnimation { targets: [highLightOut, highLightIn]; property: "opacity"; duration: 130 }
            }
        },
        Transition {
            from: "normal"
            to: "navi"
            reversible: false
            SequentialAnimation{
                //wait outside components to fade out(160ms)
                PauseAnimation { duration: 160 }
                //shrink the dialframe (160ms)
                ParallelAnimation {
                    PropertyAnimation { targets: [innerCircle, innerCircleShadow]; properties: "opacity, width"; duration: 130 }
                    SequentialAnimation {
                        PauseAnimation { duration: 30 }
                        PropertyAnimation { targets: [outBg, outEdge, outSmallBg, outShadow]; properties: "opacity, width"; duration: 130 }
                    }
                }
                //wait outside components to fade in(160ms)
                PauseAnimation { duration: 160 }
            }
        },
        Transition {
            from: "navi"
            to: "normal"
            reversible: false
            SequentialAnimation{
                //wait outside components to fade out(160ms)
                PauseAnimation { duration: 160 }
                //expand the dialframe (160ms)
                ParallelAnimation {
                    PropertyAnimation { targets: [innerCircle, innerCircleShadow]; properties: "opacity, width"; duration: 130 }
                    SequentialAnimation {
                        PauseAnimation { duration: 30 }
                        PropertyAnimation { targets: [outBg, outEdge, outSmallBg, outShadow]; properties: "opacity, width"; duration: 130 }
                    }
                }
                //wait outside components to fade(160ms)
                PauseAnimation { duration: 160 }
            }
        },
        Transition {
            from: "navi"
            to: "stopped"
            reversible: true
            SequentialAnimation{
                PropertyAnimation { targets: [highLightOut, highLightIn]; property: "opacity"; duration: 130 }
                //wait outside components to fade out
                PauseAnimation { duration: 500 }
                ParallelAnimation {
                    PropertyAnimation { targets: [innerCircle, innerCircleShadow]; properties: "opacity, width"; duration: 270 }
                    SequentialAnimation {
                        PauseAnimation { duration: 50 }
                        PropertyAnimation { targets: [outBg, outEdge, outSmallBg, outShadow]; properties: "opacity, width"; duration: 270 }
                    }
                }
            }
        }
    ]

    //visual components
    Image {
        id: outSmallBg
        width: Sizes.dp(560)
        height: width
        anchors.centerIn: parent
        visible: true
        source: Utils.localAsset("dial-small-bg", Style.theme)
    }

    Image {
        id: outBg
        width: Sizes.dp(520)
        height: width
        anchors.centerIn: parent
        visible: true
        source: Utils.localAsset("dial-outer-circle-bg")
    }

    Image {
        id: outEdge
        width: Sizes.dp(520)
        height: width
        anchors.centerIn: parent
        z: 1
        visible: true
        source: Utils.localAsset("dial-outer-circle-edge")
    }

    Image {
        id: outShadow
        width: Sizes.dp(560)
        height: width
        anchors.centerIn: parent
        z: 1
        visible: true
        source: Utils.localAsset("dial-outer-circle-shadow")
    }

    Shape {
        id: highLightOut
        visible: true
        anchors.fill: outBg

        ShapePath {
            id: highLightOutPath
            readonly property real centerX: highLightOut.width / 2
            readonly property real centerY: highLightOut.height / 2
            readonly property real radiusIn: innerCircle.width / 2
            readonly property real radiusOut: highLightOut.width / 2

            fillColor: d.fillColor
            strokeColor: "transparent"
            strokeWidth: 0
            startX: highLightOutPath.centerX + Math.cos(d.zeroRadin) * highLightOutPath.radiusIn
            startY: highLightOutPath.centerY + Math.sin(d.zeroRadin) * highLightOutPath.radiusIn
            PathLine {
                x: highLightOutPath.centerX + Math.cos(d.zeroRadin) * highLightOutPath.radiusOut
                y: highLightOutPath.centerY + Math.sin(d.zeroRadin) * highLightOutPath.radiusOut
            }
            PathArc {
                x: highLightOutPath.centerX + Math.cos(d.highLightRadin) * highLightOutPath.radiusOut
                y: highLightOutPath.centerY + Math.sin(d.highLightRadin) * highLightOutPath.radiusOut
                radiusX: highLightOutPath.radiusOut
                radiusY: highLightOutPath.radiusOut
                direction: d.isPositive? PathArc.Clockwise : PathArc.Counterclockwise
                useLargeArc: (root.highLightAng - root.zeroAng) >= 180 ? true : false
            }
            PathLine {
                x: highLightOutPath.centerX + Math.cos(d.highLightRadin) * highLightOutPath.radiusIn
                y: highLightOutPath.centerY + Math.sin(d.highLightRadin) * highLightOutPath.radiusIn
            }
            PathArc {
                x: highLightOutPath.centerX + Math.cos(d.zeroRadin) * highLightOutPath.radiusIn
                y: highLightOutPath.centerY + Math.sin(d.zeroRadin) * highLightOutPath.radiusIn
                radiusX: highLightOutPath.radiusIn
                radiusY: highLightOutPath.radiusIn
                direction: d.isPositive? PathArc.Counterclockwise : PathArc.Clockwise
                useLargeArc: (root.highLightAng - root.zeroAng) >= 180 ? true : false
            }
        }
    }


    Shape {
        id: highLightInSource
        visible: true
        width: outBg.width
        height: outBg.height
        x: -1000
        y: -1000

        ShapePath {
            id: highLightInPath
            readonly property real centerX: highLightInSource.width / 2
            readonly property real centerY: highLightInSource.height / 2
            readonly property real radius: highLightInSource.width / 2

            fillGradient: RadialGradient {
                centerX: highLightInPath.centerX
                centerY: highLightInPath.centerY
                focalX: centerX
                focalY: centerY
                centerRadius: highLightInPath.radius
                GradientStop { position: 0;   color: Qt.rgba( d.fillColor.r, d.fillColor.g, d.fillColor.b, 0) }
                GradientStop { position: 0.4; color: Qt.rgba( d.fillColor.r, d.fillColor.g, d.fillColor.b, d.fillColor.a * 0.2) }
                GradientStop { position: 0.8; color: Qt.rgba( d.fillColor.r, d.fillColor.g, d.fillColor.b, d.fillColor.a * 0.3) }
                GradientStop { position: 1;   color: Qt.rgba( d.fillColor.r, d.fillColor.g, d.fillColor.b, d.fillColor.a * 0.4) }
            }
            strokeColor: "transparent"
            strokeWidth: 0
            startX: highLightInPath.centerX
            startY: highLightInPath.centerY
            PathLine {
                x: highLightInPath.centerX + Math.cos(d.zeroRadin) * highLightInPath.radius
                y: highLightInPath.centerY + Math.sin(d.zeroRadin) * highLightInPath.radius
            }
            PathArc {
                x: highLightInPath.centerX + Math.cos(d.highLightRadin) * highLightInPath.radius
                y: highLightInPath.centerY + Math.sin(d.highLightRadin) * highLightInPath.radius
                radiusX: highLightInPath.centerX
                radiusY: highLightInPath.centerY
                direction: d.isPositive? PathArc.Clockwise : PathArc.Counterclockwise
                useLargeArc: (root.highLightAng - root.zeroAng) >= 180 ? true : false
            }
            PathLine {
                x: highLightInPath.centerX
                y: highLightInPath.centerY
            }
        }
    }

    FastBlur {
        id: highLightIn
        anchors.fill: innerCircle
        source: highLightInSource
        radius: 48
        cached: true
        visible: true
    }

    Image {
        id: innerCircle
        width: Sizes.dp(310)
        height: width
        anchors.centerIn: parent
        visible: true
        source: Utils.localAsset("dial-inner-circle")
    }

    Image {
        id: innerCircleShadow
        width: Sizes.dp(350)
        height: width
        anchors.centerIn: parent
        visible: true
        source: Utils.localAsset("dial-inner-circle_shadow")
    }
}