d4f10cd67e
REVIEW: 128594
57 lines
1.8 KiB
QML
57 lines
1.8 KiB
QML
/*
|
|
* Copyright (C) %{CURRENT_YEAR} by %{AUTHOR} <%{EMAIL}>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2 or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Controls 1.0 as QtControls
|
|
|
|
// for "units"
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
property alias cfg_DisplayText: textField.text
|
|
|
|
RowLayout {
|
|
spacing: units.largeSpacing / 2
|
|
|
|
// To allow aligned integration in the settings form,
|
|
// "formAlignment" is a property injected by the config containment
|
|
// which defines the offset of the value fields
|
|
QtControls.Label {
|
|
Layout.minimumWidth: width
|
|
Layout.maximumWidth: width
|
|
width: formAlignment - units.largeSpacing
|
|
horizontalAlignment: Text.AlignRight
|
|
|
|
// use i18nd in config QML, as the default textdomain is set to that of the config container
|
|
text: i18nd("plasma_wallpaper_org.kde.plasma.%{APPNAMELC}", "Text to Display:")
|
|
}
|
|
QtControls.TextField {
|
|
id: textField
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
|
|
Item { // tighten layout
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|