summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Vehicle/menu.qml
blob: b95bc52da8f47584420cf21b3fa23f375535dc7e (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
import QtQuick 2.0
import "../../Components"
import "../../Layouts"

LeftThirdSection {
    MultiPointTouchArea {
        anchors.fill: parent
    }

    Grid {
        anchors.verticalCenter: parent.verticalCenter
        anchors.horizontalCenter: parent.horizontalCenter
        spacing: 10

        GraphicalButton {
            text: "HEV"
            image: "../../Assets/EvIcon.png"
        }

        GraphicalButton {
            text: "Ambient Lighting"
            image: "../../Assets/LightingIcon.png"
        }

        GraphicalButton {
            text: "Wallpaper"
            image: "../../Assets/WallpaperIcon.png"
        }

        GraphicalButton {
            text: "Wi-Fi"
            image: "../../Assets/WifiIcon.png"
        }

        GraphicalButton {
            text: "Health Report"
            image: "../../Assets/VhrIcon.png"
        }

        GraphicalButton {
            text: "Seats"
            image: "../../Assets/SeatsIcon.png"
        }

        GraphicalButton {
            text: "Keypad Entry"
            image: "../../Assets/KeypadEntryIcon.png"
        }

        GraphicalButton {
            text: "Sync Services"
            image: "../../Assets/ServicesIcon.png"
        }

        GraphicalButton {
            text: "Add Shortcut"
            image: "../../Assets/AddIcon.png"
        }
    }
}