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

FLayout {
    id: alphaLayout
    width: 800
    height: 480


    Item {
        id: _fg

        width: 800; height: 480
        x:0
        y:0

        FWdgtTouchArea{
            id: blockTouch
            x:0
            y:0
            height: 480
            width: 800
        }

        Rectangle{
            anchors.fill: blockTouch
            color: "black"
            opacity: 0.8
        }

        FWdgtImage{
            id: popupBg
            anchors.centerIn: blockTouch
            bitmap: "climate/ring.png"
        }

        BaseText{
            id:curTemp
            anchors.centerIn: popupBg
            text: dataPool.drvTemp + "\xBA"
            pxSize: 96
        }

        BaseText{
            id:drvPass
            anchors.horizontalCenter: popupBg.horizontalCenter
            anchors.bottom: curTemp.top
            horAlignment: Text.AlignHCenter
            text: "Driver"
            pxSize: 28
        }

    }


}