import QtQuick 1.1
import Qt.labs.folderlistmodel 1.0
import com.nokia.symbian 1.1
Component {
Item {
id: wrapper; width: wrapper.ListView.view.width; height: 86
Item {
id: moveMe
Rectangle { color: "gray"; opacity: index % 2 ? 0.2 : 0.4; height: 84; width: wrapper.width; y: 1 }
Rectangle {
x: 6; y: 20; width: 77; height: 77; color: "transparent"; smooth: true
//Image { source: imagePath; x: 1; y: 1 }
Image { source: "qrc:/new/prefix1/music.png" }
}
Column {
x: 92; width: wrapper.ListView.view.width - 95; y: 25; spacing: 2
Text { text: title; color: "White"; width: parent.width; font.pixelSize: 18; font.bold: false; elide: Text.ElideRight; style: Text.Raised; styleColor: "black" }
Text { text: size; width: parent.width; font.pixelSize: 14; elide: Text.ElideLeft; color: "White"; style: Text.Raised; styleColor: "black" }
}
}