aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/nodetypes/Text.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/nodetypes/Text.qml')
-rw-r--r--tests/manual/nodetypes/Text.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/manual/nodetypes/Text.qml b/tests/manual/nodetypes/Text.qml
index 573bf4c959..fb0c92cb10 100644
--- a/tests/manual/nodetypes/Text.qml
+++ b/tests/manual/nodetypes/Text.qml
@@ -42,6 +42,7 @@ import QtQuick 2.0
Item {
Text {
+ id: text1
anchors.top: parent.top
text: "árvíztűrő tükörfúrógép\nÁRVÍZTŰRŐ TÜKÖRFÚRÓGÉP"
}
@@ -58,4 +59,13 @@ Item {
color: "green"
NumberAnimation on rotation { from: 0; to: 360; duration: 2000; loops: Animation.Infinite; }
}
+
+ Row {
+ anchors.top: text1.bottom
+ anchors.margins: 10
+ Text { font.pointSize: 24; text: "Normal" }
+ Text { font.pointSize: 24; text: "Raised"; style: Text.Raised; styleColor: "#AAAAAA" }
+ Text { font.pointSize: 24; text: "Outline"; style: Text.Outline; styleColor: "red" }
+ Text { font.pointSize: 24; text: "Sunken"; style: Text.Sunken; styleColor: "#AAAAAA" }
+ }
}