5import QtQuick.Controls 2.0
6import QtQuick.Layouts 1.2
7import "../../constants" 1.0
12 Layout.fillHeight:
true
13 Layout.fillWidth:
true
15 property string propLabel:
""
24 color: Num.sysPalette.light
28 function addField(isNumber, deviceName, propName, fieldName, propText, writable) {
31 var textComp =
Qt.createComponent(
"KSINDITextField.qml");
32 textItem = textComp.createObject(
this)
33 textItem.deviceName = deviceName
34 textItem.propName = propName
35 textItem.fieldName = fieldName
36 textItem.textField.text = propText
37 textItem.isNumber = isNumber
39 textItem =
Qt.createQmlObject(
'import QtQuick 2.6
40 import QtQuick.Layouts 1.2
41 import "../../constants" 1.0
42 import "../../modules"
45 textItem.text = propText
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:38:43 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.