summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Phone/recent_calls.qml
blob: 1873ed43822e733865a9b476a4336a908c853d5d (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
import QtQuick 2.0
import com.ford.phonecore 1.0
import "../../Components"
import "../../Layouts"

TitledLayout {
    title: "Recent calls"
    Component.onCompleted: PhoneCore.hangup()
    back_button: true

    Flickable {
        height: 300
        width: 400
        anchors.top: parent.top
        anchors.horizontalCenter: parent.horizontalCenter
        clip: true
        contentWidth: content.width
        contentHeight: content.height

        Column {
            id: content
            width: parent.width
            spacing: 10

            Button {
                text: "Chris Church: Mobile"
                onPress: PhoneCore.dial("8106567195")
                width: parent.width
            }
            Button {
                text: "Barry Church: Mobile"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
            Button {
                text: "Barry Church: Work"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
            Button {
                text: "Aaron Church: Mobile"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
            Button {
                text: "Aaron Church: Mobile"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
            Button {
                text: "Aaron Church: Mobile"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
            Button {
                text: "Aaron Church: Mobile"
                onPress: PhoneCore.dial("3134074522")
                width: parent.width
            }
        }
    }
}