blob: 23e6885a42a1ed22ff96e963a210387bc513d728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
Rect {
width: contents.width
height: contents.height
VerticalLayout {
width: 80
height: Text.height*4
Text {
elide: "ElideLeft"
text: "aaa bbb ccc ddd eee fff"
width: 80
color: "white"
id: Text
}
Text {
elide: "ElideMiddle"
text: "aaa bbb ccc ddd eee fff"
width: 80
color: "white"
}
Text {
elide: "ElideRight"
text: "aaa bbb ccc ddd eee fff"
width: 80
color: "white"
}
Text {
elide: "ElideNone"
text: "aaa bbb ccc ddd eee fff"
width: 80
color: "white"
}
}
}
|