31 lines
672 B
QML
31 lines
672 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2019 Nicolas Fella <nicolas.fella@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick 2.15
|
|
import org.kde.kirigami 2.20 as Kirigami
|
|
|
|
Kirigami.Page {
|
|
id: root
|
|
property string configFile
|
|
property string device
|
|
|
|
@KIRIGAMI_PAGE_ACTIONS@: loader.item && loader.item.action ? loader.item.action : null
|
|
|
|
onConfigFileChanged: loader.setSource(configFile, {
|
|
device: root.device
|
|
})
|
|
|
|
Loader {
|
|
anchors.fill: parent
|
|
id: loader
|
|
Component.onCompleted: setSource(configFile, {
|
|
device: root.device
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
|