summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/WidgetLayouts/PhoneListWdgtLayout.qml
blob: ee2c0369f01238d607cd87e8166476dea651ba00 (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
// import QtQuick 2.0 // to target S60 5th Edition or Maemo 5
import QtQuick 2.0
import com.ford.hmiframework 1.0

import "../Widgets"

FLayout {

    id: theItem
    height: 50; width: 50

    property alias cx_text: cx.text
    property alias cn_text: cn.text
    property alias ct_text: ct.text
    property alias touch:_touch

    FWdgtTouchArea {
        id: touch
        anchors.fill: theItem
    }

    Item{


       BaseText{
           color:"#9deaec"
           id: cx
           width: 100; height: 50

       }
       BaseText{
           color:"#9deaec"
           id: cn
           width: 302; height: 50
           x:300
       }

       BaseText{
           color:"#9deaec"
           id: ct
           width: 302; height: 50
           x:500
       }

    }
    FWdgtTouchArea {
        id: _touch
        height: 50; width: 600
    }
}