1<?xml version="1.0" encoding="UTF-8"?>
2<layout>
3  <font name="status-font"
4        file="fonts/Vera.ttf"
5        drop-shadow="true"
6        size="20" />
7  <font name="small-font"
8        file="fonts/Vera.ttf"
9        drop-shadow="true"
10        size="14" />
11
12  <!-- Status area -->
13  <label text="Speed"
14         name="speed_label"
15         font="status-font"
16         x="10" y="10" />
17  <throttle-meter font="status-font"
18                 name="throttle_meter"
19                 x="10" y="35"/>
20  <label text="Brake on"
21         name="brake_label"
22         font="status-font"
23         x="10" y="60"
24         colour="255 0 0"/>
25  <label text="Reverse"
26         name="reverse_label"
27         font="status-font"
28         x="10" y="85"
29         visible="false"
30         colour="255 0 0"/>
31
32  <!-- Station loading/unloading window -->
33  <window width="300" height="200" border="5" visible="false"
34          name="station">
35    <label name="name" text="" x="0" y="0" />
36  </window>
37
38  <from-bottom offset="30" name="fps">
39    <label text="FPS: "
40           name="fps_label"
41           font="small-font"
42           x="5" y="0"/>
43  </from-bottom>
44</layout>
45