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

FLayout {
    id: theItem

    property alias cx_text : _btn.text
    property int indentLevel: 0
    property alias touch: _btn.touchBtn
    property alias pressed: _btn.pressed


    TouchButton_PCA{
        id: _btn
        anchors.left: theItem.left
        anchors.leftMargin: 10
        anchors.top: theItem.top
        anchors.topMargin: 10
        textWidth: 100
    }

}