blob: cce82b3cfd135c8b520084b9be0c9dbf898701e8 (
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
|
/* Copyright (C) 2015, Jaguar Land Rover. All Rights Reserved.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import QtQuick 2.0
import QtGraphicalEffects 1.0
Item {
width: 170 * height / 80
height: 80
property bool value
property bool showLabels: false
Image {
anchors.fill: parent
source: "../../doc/images/switchplate_" + (value ? "on" : "off") + ".png"
}
Item {
id: shadowTarget
x: value ? parent.width * 0.375 : -11
width: parent.width * 0.7
height: parent.height
Image {
id: control
anchors.centerIn: parent
width: parent.height * 0.9
fillMode: Image.PreserveAspectFit
source: "../../doc/images/switchcontrol.png"
}
}
DropShadow {
anchors.fill: shadowTarget
cached: true
horizontalOffset: parent.height * 0.05
verticalOffset: parent.height * 0.05
radius: 16
samples: 32
color: Qt.rgba(0, 0, 0, 0.35)
smooth: true
source: shadowTarget
}
Text {
text: qsTr("OFF")
font.family: "Source Sans Pro"
anchors.right: parent.left
anchors.rightMargin: 30
anchors.verticalCenter: parent.verticalCenter
font.pointSize: 25
font.letterSpacing: -0.5
font.weight: value ? Font.Normal : Font.Bold
color: value ? "#C4C4C4" : "#FE9C00"
visible: showLabels
}
Text {
id: onText
text: qsTr("ON")
font.family: "Source Sans Pro"
anchors.left: parent.right
anchors.leftMargin: 30
font.pointSize: 25
anchors.verticalCenter: parent.verticalCenter
font.letterSpacing: -0.5
font.weight: value ? Font.Bold : Font.Normal
color: value ? "#59FF00" : "#C4C4C4"
visible: showLabels
}
MouseArea {
anchors.fill: parent
onClicked: value = !value
}
}
|