Warning, /libraries/pulseaudio-qt/tests/painspector/PropertiesItem.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2021 Nicolas Fella <nicolas.fella@gmx.de>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 import QtQuick 2.7
0007 import QtQuick.Layouts 1.3
0008 import QtQuick.Controls 2.2
0009 
0010 import org.kde.kirigami 2.10 as Kirigami
0011 
0012 Column {
0013     Kirigami.FormData.label: "Properties:"
0014     Repeater {
0015         model: Object.keys(Properties)
0016         delegate: Label {
0017             text: modelData + ": " + Properties[modelData]
0018         }
0019     }
0020 }