summaryrefslogtreecommitdiffstats
path: root/examples/multimedia/video/mediaplayer/controls/MetadataInfo.qml
blob: 3e68faa8e4a286111315695c6f59a89e17ce015c (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
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick

Item {
    property alias metadata: listModel
    property alias count: listModel.count

    function clear() {
        listModel.clear()
    }

    //! [0]
    function read(metadata) {
        if (!metadata)
            return
        for (const key of metadata.keys())
            if (metadata.stringValue(key))
                listModel.append({
                                    name: metadata.metaDataKeyToString(key),
                                    value: metadata.stringValue(key)
                                })
    }

    ListModel {
        id: listModel
    }
    //! [0]
}