summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video/qmlvideo/qmlvideo/VideoDummy.qml
blob: a30b9ebf64e0b08f76f433d053d2cb0ca32cfc93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls

// Item which is loaded by VideoItem if Qt Multimedia is not available
Rectangle {
    id: root
    color: "grey"
    height: width
    property int duration: 0
    property int position: 0
    property string source
    property real volume: 1.0
    property real playbackRate: 1.0

    signal fatalError
    signal sizeChanged
    signal framePainted

    Label {
        anchors.fill: parent
        anchors.margins: 10
        horizontalAlignment: Text.AlignHCenter
        text: qsTr("Failed to create Video item\n\nCheck that Qt Multimedia is installed")
        verticalAlignment: Text.AlignVCenter
        wrapMode: Text.Wrap
    }

    onWidthChanged: height = width
    onHeightChanged: root.sizeChanged()

    function start() { }
    function stop() { }
    function seek() { }
}