summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Layouts/ClimatePCALayout.qml
blob: 6b6a2761c577830e8fbf23cbd1da38fd8b378f89 (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
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"

FLayout {
    id: climateLayout
    width: 800
    height: 480

    property alias dualBtn: dualBtn.touchBtn
    property alias drvHeatSeat: drvHeatSeat.touchBtn
    property alias drvCoolSeat: drvCoolSeat.touchBtn
    property alias passCoolSeat: passCoolSeat.touchBtn
    property alias passHeatSeat: passHeatSeat.touchBtn
    property alias heatWheel: heatWheel.touchBtn
    property alias heatWinSheild: heatWinSheild.touchBtn
    property alias defrost: defrost.touchBtn
    property alias pannel: pannel.touchBtn
    property alias floor: floor.touchBtn

    property alias dualBtnSt: dualBtn.selected
    property alias drvHeatSeatSt: drvHeatSeat.selected
    property alias drvCoolSeatSt: drvCoolSeat.selected
    property alias passCoolSeatSt: passCoolSeat.selected
    property alias passHeatSeatSt: passHeatSeat.selected
    property alias heatWheelSt: heatWheel.selected
    property alias heatWinSheildSt: heatWinSheild.selected
    property alias defrostSt: defrost.selected
    property alias pannelSt: pannel.selected
    property alias floorSt: floor.selected



    TouchButtonClimatePCA{
        id: drvHeatSeat
        x:105
        y:178
        bitmap: "climate/heated seat icon.png"
        bitmap2: "climate/heated seat iconBlack.png"
    }
    TouchButtonClimatePCA{
        id: drvCoolSeat
        x:105
        y:273
        bitmap: "climate/A_C icon.png"
        bitmap2: "climate/A_C iconBlack.png"
    }
    TouchButtonClimatePCA{
        id: heatWheel
        x:200
        y:178
        bitmap: "climate/wheel icon.png"
        bitmap2: "climate/wheel iconBlack.png"
    }
    TouchButtonClimatePCA{
        id: heatWinSheild
        x:200
        y:273
        bitmap: "climate/headed dashBlue.png"
        bitmap2: "climate/headed dash.png"
    }

    TouchButtonClimatePCA{
        id: defrost
        x:360
        y:130
        bitmap: "climate/defrost iconBlue.png"
        bitmap2: "climate/defrost icon.png"
    }

    TouchButtonClimatePCA{
        id: pannel
        x:360
        y:226
        bitmap: "climate/face icon.png"
        bitmap2: "climate/face iconBlack.png"
    }

    TouchButtonClimatePCA{
        id: floor
        x:360
        y:322
        bitmap: "climate/feet icon.png"
        bitmap2: "climate/feet iconBlack.png"
    }


    TouchButtonClimatePCA{
        id: dualBtn
        y:225
        x:528
        text: "Dual"
    }

    TouchButtonClimatePCA{
        id: passHeatSeat
        x:615
        y:178
        bitmap: "climate/heated seat icon.png"
        bitmap2: "climate/heated seat iconBlack.png"
    }
    TouchButtonClimatePCA{
        id: passCoolSeat
        x:615
        y:273
        bitmap: "climate/A_C icon.png"
        bitmap2: "climate/A_C iconBlack.png"
    }


}