summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml
blob: cbe1737984b405d926bf03726d024e4687fa2677 (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
// 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
    width: 200
    height: 178

    property alias bitmap : _img.bitmap
    property alias touch: _touch


    FWdgtImage{
        id: _img
        anchors.centerIn: theItem
    }

    FWdgtTouchArea{
        id: _touch
        anchors.fill: theItem
    }

}