lena_pi/LenaPi/PlayerControlPannel.qml
2018-12-07 11:23:59 +01:00

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
}
}