forked from alex-adam/Tesla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKWNeedle.qml
81 lines (58 loc) · 2.42 KB
/
KWNeedle.qml
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
import QtQuick 2.4
import QtGraphicalEffects 1.0
Canvas {
id: canvas
property int value : 0
onValueChanged: {zeiger.rotation = Math.min(Math.max(10, canvas.value*3.5 - 90), 90); canvas.currentValue = zeiger.rotation - 90}
//90 minrotation, 10 maxrotation
width: parent.width; height: parent.height
Rectangle {
id: zeiger
rotation: 90 //siehe minrotation
width: 4
height: parent.width / 2
transformOrigin: Item.Bottom
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.verticalCenter
antialiasing: true
smooth: true
color: "#FFC73E"
onRotationChanged: {canvas.currentValue = zeiger.rotation - 90; canvas.requestPaint()}
Behavior on rotation {
NumberAnimation{
duration: 1000
easing.type: Easing.OutExpo
}
}
}
antialiasing: true
property color secondaryColor: zeiger.color
property real centerWidth: width / 2
property real centerHeight: height / 2
property real radius: Math.min(canvas.width, canvas.height) / 2
property real minimumValue: -360
property real maximumValue: 0
property real currentValue: -360
// this is the angle that splits the circle in two arcs
// first arc is drawn from 0 radians to angle radians
// second arc is angle radians to 2*PI radians
property real angle: (currentValue - minimumValue) / (maximumValue - minimumValue) * 2 * Math.PI + 0.0001
property real angleOffset: Math.Pi//21.288 //to start at 0mph //-Math.PI / 2
onPaint: {
//Magic
var ctx = getContext("2d");
ctx.save();
var gradient2 = ctx.createRadialGradient((parent.width / 2),(parent.height / 2), 500, (parent.width / 2),(parent.height / 2),5);
gradient2.addColorStop(0.5, "#FFB108"); //oben
gradient2.addColorStop(0.48, "#FFB108"); //oben
gradient2.addColorStop(0.47, "#682E00"); //mitte
gradient2.addColorStop(0.33, "transparent"); //unten
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.beginPath();
ctx.lineWidth = 150;
ctx.strokeStyle = gradient2
ctx.arc(canvas.centerWidth, canvas.centerHeight, canvas.radius - (ctx.lineWidth / 2), canvas.angleOffset, canvas.angleOffset + canvas.angle, true);
ctx.stroke();
ctx.restore();
}
}