summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Layouts/NavNoRouteLayout.qml
blob: 7c65e911a70a1cdefff3c9bb9445129900b25858 (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
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 destSearch: destSearch.touchBtn
    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"
    }
    TouchButtonSpecial_PCA{
        id: destSearch
        x:601
        y:419
        textWidth: 130
        bitmap: "Nav/destIcon.png"
        bitmap2: "Nav/destIconBlack.png"
        imageShift: -9
        spacing: 0
        text: " Destination"
        text1: ""
        text2: ""
        totHD: -1

    }
}