Warning, /libraries/pulseaudio-qt/tests/painspector/PAPage.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.pulseaudioqt.tests 0.1 as PulseAudioQt
0011 
0012 import org.kde.kirigami 2.15 as Kirigami
0013 
0014 Kirigami.ScrollablePage {
0015 
0016     property alias model: repeater.model
0017     property alias delegate: repeater.delegate
0018 
0019     // Initially invisible, managed by NavigationTabBar's actions
0020     visible: false
0021 
0022     ColumnLayout {
0023         Kirigami.FormLayout {
0024             id: mainLayout
0025         }
0026 
0027         Repeater {
0028             id: repeater
0029             onItemAdded: (index, item) => item.twinFormLayouts = mainLayout
0030         }
0031     }
0032 }