blob: 3f86080160e7982692b1afe99be9b23a073d5101 (
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
34
35
36
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
height="400"
layout="topleft"
name="floater_aaa"
can_resize="true"
width="500">
<string name="bump_parabuild">1</string>
<text
bottom="390"
left="10"
name="right_aligned_text"
width="300"
halign="right"
top_pad="10">
Right aligned text
</text>
<text
bottom="390"
left="10"
name="centered_text"
width="300"
halign="center"
top_pad="10">
Centered text
</text>
<text
left="10"
name="left_aligned_text"
width="300"
halign="left"
top_pad="10">
Left aligned text
</text>
</floater>
|