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

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

        GraphicalButton {
            text: "Do Not Disturb"
            image: "../../Assets/DndIcon.png"
        }

        GraphicalButton {
            text: "Phonebook"
            image: "../../Assets/PhonebookIcon.png"
        }

        GraphicalButton {
            text: "Voicemail"
            image: "../../Assets/VoicemailIcon.png"
        }

        GraphicalButton {
            text: "Messages"
            image: "../../Assets/MessagesIcon.png"
        }

        GraphicalButton {
            text: "Recent Calls"
            image: "../../Assets/RecentCallsIcon.png"
            onPress: section.state = 'recent_calls'
        }

        GraphicalButton {
            text: "Keypad"
            image: "../../Assets/KeypadIcon.png"
            onPress: section.state = 'keypad'
        }

        GraphicalButton {
            text: "Speed Dial"
            image: "../../Assets/SpeedDialIcon.png"
        }

        GraphicalButton {
            text: "Devices"
            image: "../../Assets/SpeedDialIcon.png"
            onPress: section.state = 'manage_devices'
        }
    }
}