1<?xml version="1.0" encoding="UTF-8"?>
2<layout>
3  <font name="small-font"
4        file="fonts/Vera.ttf"
5        drop-shadow="true"
6        size="14" />
7
8  <window x="10" y="10" border="5" name="tool_wnd">
9    <label text="Tools"
10           name="tool_label"
11           x="0" y="0"/>
12
13    <toggle-bar name="tools" x="60" y="0">
14      <toggle-button name="track" image="images/track_icon.png"/>
15      <toggle-button name="raise" image="images/raise_icon.png"/>
16      <toggle-button name="lower" image="images/lower_icon.png"/>
17      <toggle-button name="level" image="images/level_icon.png"/>
18      <toggle-button name="smooth" image="images/icons/smooth.png"/>
19      <toggle-button name="delete" image="images/delete_icon.png"/>
20      <toggle-button name="start" image="images/start_icon2.png"/>
21      <toggle-button name="station" image="images/station_icon.png"/>
22      <toggle-button name="building" image="images/buildings_icon.png"/>
23      <toggle-button name="tree" image="images/icons/tree.png"/>
24    </toggle-bar>
25  </window>
26
27  <window x="10" y="60" border="5" visible="false"
28          name="building_wnd">
29    <image-button name="prev" x="5" y="5" width="32" height="32"
30                 image="images/icons/prev.png"/>
31    <image-button name="next" x="37" y="5" width="32" height="32"
32                 image="images/icons/next.png"/>
33    <image-button name="rotate" x="69" y="5" width="32" height="32"
34                 image="images/icons/rotate.png"/>
35
36    <canvas3d name="preview" x="10" y="40" width="170" height="120"
37              clear="false"/>
38
39    <label name="name" x="5" y="165" text="title"
40           font="small-font"/>
41  </window>
42
43  <window x="10" y="60" border="5" visible="false"
44          name="tree_wnd">
45    <image-button name="prev" x="5" y="5" width="32" height="32"
46                 image="images/icons/prev.png"/>
47    <image-button name="next" x="37" y="5" width="32" height="32"
48                 image="images/icons/next.png"/>
49
50    <canvas3d name="preview" x="10" y="40" width="170" height="120"
51              clear="false"/>
52
53    <label name="name" x="5" y="165" text="title"
54           font="small-font"/>
55  </window>
56
57  <from-bottom offset="53" name="lower">
58    <window x="5" y="0" border="5"
59            name="action_wnd">
60      <label text="Actions"
61             name="action_label"
62             x="0" y="0"/>
63      <image-button name="save" x="70" y="0" width="32" height="32"
64                   image="images/icons/save.png"/>
65    </window>
66  </from-bottom>
67
68  <from-bottom offset="80" name="fps">
69    <label text="FPS: "
70           name="fps_label"
71           font="small-font"
72           x="5" y="0"/>
73  </from-bottom>
74</layout>
75