blob: b58c006b3f539d35242200161a86048673e973f0 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
legacy_header_height="18"
can_resize="true"
height="500"
layout="topleft"
name="floater_test_toolbar"
translate="false"
width="500">
<toolbar name="test_toolbar_top"
follows="left|right|top"
height="50"
width="500"
left="0"
top="20"
min_button_width="0"
max_button_width="100"
side="top">
<button auto_resize="true"
use_ellipses="true"
label="Button"/>
<button auto_resize="true"
label="Button with long label"/>
<button auto_resize="true"
use_ellipses="true"
label="Button with longest label of all"/>
</toolbar>
<toolbar name="test_toolbar_left"
follows="left|bottom|top"
height="380"
width="200"
left="0"
top="70"
min_button_width="100"
side="left">
<button height="30"
label="Button"/>
<button height="50"
label="Button with long label"/>
<button height="60"
label="Button with longest label of all"/>
</toolbar>
<toolbar name="test_toolbar_right"
follows="right|bottom|top"
height="380"
width="200"
right="500"
top="70"
side="right">
<button auto_resize="true"
label="Button 1"/>
<button auto_resize="true"
label="Button with long label"/>
<button auto_resize="true"
label="Button with longest label of all"/>
</toolbar>
<toolbar name="test_toolbar_bottom"
follows="left|right|bottom"
height="50"
width="500"
left="0"
bottom="500"
min_button_width="100"
side="bottom">
<button auto_resize="true"
label="Button"/>
<button auto_resize="true"
label="Button with long label"/>
<button auto_resize="true"
label="Button with longest label of all"/>
</toolbar>
</floater>
|