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

import "../Widgets"

FLayout {
    width: 800
    height: 480

    property alias m1: m1.children
    property alias list: listView
    property alias list_data: listView.list_data
    property alias list_itemWidget: listView.list_itemWidget
    property alias listWrap: listView.listWrap
    property alias fg: _fg



    Item {
        id: _fg

        width: 800; height: 480

        GridViewWidget {
            id: listView
            x: 135; y: 170
            width: 530; height: 200
            gridItemHeight: 100; gridItemWidth: 180

        }

        FWdgtContainer {
            id: m1
            width: 530; height: 55
        }
    }
}