Warning, /libraries/pulseaudio-qt/tests/painspector/DeviceDelegate.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 Kirigami.FormLayout {
0013
0014 Label {
0015 Kirigami.FormData.label: "Name:"
0016 text: Name
0017 }
0018
0019 Label {
0020 Kirigami.FormData.label: "Description:"
0021 text: Description
0022 }
0023
0024 Row {
0025 Kirigami.FormData.label: "Icon:"
0026 spacing: 5
0027 Label {
0028 id: iconNameLabel
0029 text: IconName
0030 }
0031 Kirigami.Icon {
0032 height: iconNameLabel.height
0033 width: height
0034 source: IconName
0035 }
0036 }
0037
0038 Label {
0039 Kirigami.FormData.label: "Volume:"
0040 text: Volume
0041 }
0042
0043 Label {
0044 Kirigami.FormData.label: "Muted:"
0045 text: Muted
0046 }
0047
0048 Label {
0049 Kirigami.FormData.label: "Volume writable:"
0050 text: VolumeWritable
0051 }
0052
0053 PortsItem {}
0054
0055 PropertiesItem {}
0056 }