2016-03-07 08:54:14 -08:00
|
|
|
import QtQuick 2.4
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
antialiasing: true
|
|
|
|
source: "image://images/"
|
|
|
|
objectName: "cellImg"
|
|
|
|
property int index: 0
|
2016-03-07 21:40:07 -08:00
|
|
|
height: 100
|
2016-03-07 08:54:14 -08:00
|
|
|
transformOrigin: Item.TopLeft
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
2016-03-21 22:03:46 -07:00
|
|
|
//cache: false
|
2016-04-12 10:22:14 -07:00
|
|
|
MouseArea {
|
|
|
|
id: cellMouse
|
|
|
|
hoverEnabled: true
|
|
|
|
enabled: true
|
|
|
|
objectName: "cellMouse"
|
|
|
|
anchors.fill: parent
|
|
|
|
acceptedButtons: Qt.AllButtons
|
|
|
|
}
|
2016-03-07 08:54:14 -08:00
|
|
|
}
|