summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual/qdeclarativetext/baseline/parentanchor.qml
blob: 80f0f03c37f54ecfd65e45a8ffa257516c712e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.6

Rectangle {
    id: s; width: 600; height: 100; color: "lightsteelblue"
    property string text: "The quick brown fox jumps over the lazy dog."
    Text {
        text: s.text
        anchors.verticalCenter: s.verticalCenter
    }
    Text {
        text: s.text
        anchors.baseline: s.verticalCenter
    }
}