| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import QtQuick 2.0
- import Sailfish.Silica 1.0
- CoverBackground {
- Image {
- id: coverimg
- source: Qt.resolvedUrl("harbour-tvspielfilm.png")
- anchors.horizontalCenter: parent.horizontalCenter
- //aspect ration einhalten
- fillMode: Image.PreserveAspectFit
- anchors.top: parent.top
- anchors.topMargin: Theme.paddingLarge
- smooth: true
- }
- Label {
- id: coverlbl
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.top: coverimg.bottom
- anchors.topMargin: Theme.paddingLarge
- font.pixelSize: Theme.fontSizeSmall
- color: Theme.primaryColor
- text: qsTr("TVSpielfilm\n(unofficial)")
- }
- // CoverActionList {
- // id: coverAction
- // CoverAction {
- // iconSource: "image://theme/icon-cover-next"
- // }
- // CoverAction {
- // iconSource: "image://theme/icon-cover-pause"
- // }
- // }
- }
|