blob: 55cfd462acc6f1725876976afabe5496a2a6a94e (
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
|
<?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_horizontal"
follows="left|right|top"
height="50"
width="500"
left="0"
top="20"
orientation="horizontal">
<button width="0"
auto_resize="true"
label="Button 1"/>
<button width="0"
auto_resize="true"
label="Button with long label"/>
<button width="0"
auto_resize="true"
label="Button with longest label of all"/>
</toolbar>
<toolbar name="test_toolbar_vertical"
follows="left|bottom|top"
height="430"
width="100"
left="0"
top="70"
orientation="vertical">
<button height="30"
label="Button 1"/>
<button height="50"
label="Button 2"/>
<button height="60"
label="Button 3"/>
</toolbar>
</floater>
|