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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/*
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
SPDX-FileCopyrightText: 2019 Kevin Ottens <kevin.ottens@enioka.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
import QtQuick 2.15
import QtQuick.Controls 2.15 as QQC2
import QtQuick.Layouts 1.15
QQC2.StackView {
id: main
signal configurationChanged
property string sourceFile
implicitHeight: currentItem && currentItem.implicitHeight || 0
Layout.fillWidth: true
onSourceFileChanged: {
pop()
if (sourceFile) {
const props = {}
const shellConfiguration = configDialog.shellConfiguration
for (const key in shellConfiguration) {
props["cfg_" + key] = shellConfiguration[key]
}
const newItem = push(sourceFile, props, QQC2.StackView.ReplaceTransition)
shellConfiguration.valueChanged.connect((key, value) => {
if (newItem["cfg_" + key] !== undefined) {
newItem["cfg_" + key] = value
}
})
const createSignalHandler = key => {
return () => {
configDialog.shellConfiguration[key] = newItem["cfg_" + key]
configurationChanged()
}
}
for (const key in shellConfiguration) {
const changedSignal = newItem["cfg_" + key + "Changed"]
if (changedSignal) {
changedSignal.connect(createSignalHandler(key))
}
}
} else {
push(empty)
}
}
Component {
id: empty
Item {}
}
}
|