Warning, /multimedia/kdenlive/src/assets/view/qml/AssetView.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2017 Nicolas Carion
0003     SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004 */
0005 
0006 import QtQuick 2.15
0007 import QtQuick.Controls 2.15
0008 import QtQuick.Window 2.15
0009 import QtQuick.Layouts 1.15
0010 import QtQml.Models 2.15
0011 
0012 Rectangle {
0013     id: assetRoot
0014     property var assetModel
0015     SystemPalette { id: activePalette }
0016     color: "blue"//activePalette.window
0017 
0018 
0019     ListView {
0020         anchors.fill: parent
0021         id: listView
0022         delegate: Label{
0023             text: display
0024         }
0025 
0026         model: assetModel
0027     }
0028 
0029 }