blob: 984ca6a1ed5668b93d904831abee0a909bfb6a62 [file] [log] [blame]
import QtQuick 2.0
//vary font style
Item {
width: 320
height: 480
Column {
anchors.fill: parent
Repeater {
model: [Text.Normal, Text.Outline, Text.Raised, Text.Sunken]
Text {
renderType: Text.QtRendering
width: parent.width
wrapMode: Text.Wrap
font.pointSize: 10
style: modelData
styleColor: "green"
text: "The quick fox jumps in style " + modelData
}
}
Repeater {
model: [Text.Normal, Text.Outline, Text.Raised, Text.Sunken]
Text {
renderType: Text.NativeRendering
width: parent.width
wrapMode: Text.Wrap
font.pointSize: 10
style: modelData
styleColor: "green"
text: "The quick fox jumps in style " + modelData
}
}
}
}