37 lines
798 B
QML
37 lines
798 B
QML
/*
|
|
SPDX-FileCopyrightText: 2013 Marco Martin <mart@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
import QtQuick.Controls 1.0 as QtControls
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
|
|
Item {
|
|
id: iconsPage
|
|
width: childrenRect.width
|
|
height: childrenRect.height
|
|
implicitWidth: mainColumn.implicitWidth
|
|
implicitHeight: pageColumn.implicitHeight
|
|
|
|
property alias cfg_Test: testConfigField.text
|
|
|
|
Column {
|
|
id: pageColumn
|
|
anchors.fill: parent
|
|
spacing: 4
|
|
Row {
|
|
QtControls.Label {
|
|
text: "Text Config value"
|
|
}
|
|
QtControls.TextField {
|
|
id: testConfigField
|
|
}
|
|
}
|
|
}
|
|
}
|