summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/Layouts/OffLayout.qml
blob: f5cc5d57a6f2c0a61deb6e6afd4303bdb9e9ba33 (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
import QtQuick 2.0
import com.ford.hmiframework 1.0

FLayout {
    width: 800
    height: 480

    property alias offTouch: offTouch

    Rectangle {
        id: bk
        anchors.fill: parent
        color: "black"
    }

    FWdgtTouchArea{
        id: offTouch
        anchors.fill: bk
    }

/*    RectangularGlow {
        id: effect
        anchors.fill: rect
        glowRadius: 4
        spread: 0.7
        color: "#1d81d5"
        cornerRadius: rect.radius //+ glowRadius
    }

    Rectangle {
        id: rect
        color: "black"
        x:40
        y:40
        width: 160
        height: 45
        radius: 23
        border.width: 1
        border.color: "#1d81d5"
    }

    FWdgtImage{
        id: img
        x:40
        y:90
        bitmap: "OButton.png"
    }

    FWdgtImage{
        id: img
        x:40
        y:40
        bitmap: "Radio/ButtonEnd_8_8.png"
    }

    FWdgtImage{
        id: img1
        anchors.left: img.right
        anchors.top: img.top
        width:2
        fillMode: Image.Stretch
        bitmap: "Radio/ButtonCenter_0_8.png"
    }

    FWdgtImage{
        id: img2
        anchors.left: img1.right
        anchors.top: img1.top
        bitmap: "Radio/ButtonOtherEnd_8_8.png"
    }*/
}