summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Layouts/NavInRouteLayout.qml
blob: d0f240f4b99e08f026284a9e1302c8854b732343 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"

FLayout {
    id: mapLayout
    width: 800
    height: 480

    property alias zoomIn: zoomIn.touchBtn
    property alias zoomOut: zoomOut.touchBtn
    property alias compass: compass.touchBtn
    property alias cancel: cancel.touchBtn
    property alias mute: mute.touchBtn
    property alias muteSt: mute.selected
    property alias options: options.touchBtn



    FWdgtImage{
        id: mapImg
        bitmap: "Nav/Map.png"
        anchors.fill: mapLayout
    }

    TouchButtonClimatePCA{
        id: zoomIn
        text: "+"
        x:25
        y:103
        image: "buttons/zoom_9_9.png"
        imageActive: "buttons/zoomSelected.png"
        imagePressed: "buttons/zoomPressed_9_9.png"
        txtColor: "white"
        txtSize: 40

    }
    TouchButtonClimatePCA{
        id: zoomOut
        text: "-"
        x:25
        y:223
        image: "buttons/zoom_9_9.png"
        imageActive: "buttons/zoomSelected.png"
        imagePressed: "buttons/zoomPressed_9_9.png"
        txtColor: "white"
        txtSize: 40
    }
    TouchButtonClimatePCA{
        id: options
        x:659
        y:80
        image: "Nav/Options_9_9.png"
        imageActive: "Nav/OptionsInActive.png"
        imagePressed: "Nav/OptionsPressed_9_9.png"
    }
    TouchButtonClimatePCA{
        id: compass
        x:34
        y:352
        image: "Nav/compass.png"
        imageActive: "Nav/compass.png"
        imagePressed: "Nav/compass.png"
    }
    TouchButtonClimatePCA{
        id: mute
        x:25
        y:419
        image: "buttons/mute_9_9.png"
        imageActive: "buttons/muteActive.png"
        imagePressed: "buttons/mutePressed_9_9.png"
        imageInActive: "buttons/muteInActive.png"
    }
    FWdgtImage{
        bitmap: "Nav/turnArrow.png"
        x:97
        y:428
    }
    BaseText{
        text: "0.2 mi on Cherry Hill Rd."
        pxSize: 22
        x:144
        y:434
        color: "white"
    }

    BaseText{
        text: "2 hrs 27 min"
        pxSize: 22
        anchors.right: cancel.left
        anchors.rightMargin: 26
        horAlignment: Text.AlignRight
        y:434
        color: "white"
    }

    TouchButtonSpecial_PCA{
        id: cancel
        x:621
        y:419
        textWidth: 110
        bitmap: "Nav/destIcon.png"
        bitmap2: "Nav/destIconBlack.png"
        imageShift: -9
        spacing: 0
        text: " Cancel"
        text1: ""
        text2: ""
        totHD: -1

    }
    FWdgtImage{
        id: currStBkgrnd
        bitmap: "Nav/current street.png"
        x:265
        y:349
    }

    BaseText{
        id: currentStreet
        x:312
        y:360
        text: "East Capital St. NE"
        pxSize: 18
        theFont: "../Fonts/HelveticaNeueLTCom-Lt.ttf"
        horAlignment: Text.AlignLeft
        vertAlignment: Text.AlignTop
    }

}