QmlDesigner: Adding support for font spacings

Change-Id: I55843cade308cab00f4394a239507447fb84e0da
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Thomas Hartmann
2016-10-12 12:07:13 +02:00
committed by Tim Jenssen
parent eed82c8268
commit 33e5ff9ecf

View File

@@ -178,5 +178,41 @@ Section {
model: ["Normal", "Outline", "Raised", "Sunken"] model: ["Normal", "Outline", "Raised", "Sunken"]
scope: "Text" scope: "Text"
} }
Label {
text: qsTr("Spacing")
}
SecondColumnLayout {
Label {
text: qsTr("Word")
tooltip: qsTr("Sets the word spacing for the font.")
width: 42
}
SpinBox {
maximumValue: 9999999
minimumValue: -9999999
decimals: 0
backendValue: backendValues.font_wordSpacing
Layout.fillWidth: true
}
Item {
width: 4
height: 4
}
Label {
text: qsTr("Letter")
tooltip: qsTr("Sets the letter spacing for the font.")
width: 42
}
SpinBox {
maximumValue: 9999999
minimumValue: -9999999
decimals: 0
backendValue: backendValues.font_letterSpacing
Layout.fillWidth: true
}
}
} }
} }