equal
deleted
inserted
replaced
|
1 import Qt 4.7 |
|
2 |
|
3 Rectangle { |
|
4 width: 500 |
|
5 height: 50 |
|
6 color: "lightBlue" |
|
7 Rectangle { |
|
8 width: myText.width |
|
9 height: myText.height |
|
10 color: "white" |
|
11 anchors.centerIn: parent |
|
12 Text { |
|
13 id: myText |
|
14 width: NumberAnimation { from: 500; to: 0; loops: Animation.Infinite; duration: 1000 } |
|
15 elide: "ElideRight" |
|
16 text: "Brevity is the soul of wit, and tediousness the limbs and outward flourishes.\x9CBrevity is a great charm of eloquence.\x9CBe concise!\x9CSHHHHHHHHHHHHHHHHHHHHHHHHHHHH" |
|
17 } |
|
18 } |
|
19 } |