summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml')
-rw-r--r--SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml b/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml
new file mode 100644
index 000000000..cbe173798
--- /dev/null
+++ b/SDL_Core/src/components/qt_hmi/References/Look/WidgetLayouts/GridViewImgItemLayout.qml
@@ -0,0 +1,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
+ }
+
+}