summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/Layouts/PhoneContactsLayout.qml
blob: 9e119d99005490716bbc2fdc112f31bd9054a134 (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
import QtQuick 2.0
import com.ford.hmiframework 1.0
import "../Widgets"


FLayout {

    id: theLayout
    width: 800
    height: 480

    property alias list : theListPhoneView
    property alias list_itemWidget: theListPhoneView.itemWidget
    property alias list_data: theListPhoneView.data
    property alias back: back.touchBtn
    TouchButtonClimatePCA{
        id: back
        text: "+"
        x:25
        y:80
        image: "buttons/zoom_9_9.png"
        imageActive: "buttons/zoomSelected.png"
        imagePressed: "buttons/zoomPressed_9_9.png"
        txtColor: "white"
        txtSize: 40
        visible: false

    }
    FWdgtListView {

        width:600
        height:400
        id: theListPhoneView
        x:150
        y:80
        clip: true
        visible:true
    }

}