31 lines
601 B
QML
31 lines
601 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: container
|
|
property var model
|
|
property int margins
|
|
|
|
color: "#99ffffff"
|
|
height: 140
|
|
|
|
MediaProgress{
|
|
id: progress
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.margins: container.margins
|
|
|
|
model: container.model
|
|
}
|
|
|
|
PlayerButtons{
|
|
id: buttons
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.top: progress.bottom
|
|
anchors.bottom: parent.bottom
|
|
|
|
model: container.model
|
|
spacing: 20
|
|
}
|
|
}
|