summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewPresetItemLayout.qml
blob: 9b28e961f929ba9427bc75554df1c64988cbad3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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 presetName : _preset.presetName
    property alias presetNumber: _preset.presetNumber
    property alias pressed: _preset.active
    property alias touchBtn: _preset.touchBtn


    PresetPCA{
        id: _preset
        anchors.horizontalCenter: theItem.horizontalCenter
        anchors.horizontalCenterOffset: 0
        y:20
    }

}