blob: 2a3a6fc2cc319fc4f4da783ad1c4a9666a284e2c (
plain) (
blame)
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
|
<?xml version="1.0"?>
<!--
license:CC0
-->
<mamelayout version="2">
<!-- define elements -->
<element name="lcd_bg"><rect><color red="0.54" green="0.57" blue="0.58" /></rect></element>
<element name="digit" defstate="0">
<led7seg><color red="0.2" green="0.16" blue="0.16" /></led7seg>
</element>
<!-- build screen -->
<view name="Internal Layout">
<bounds left="0" right="80" top="0" bottom="15" />
<element ref="lcd_bg"><bounds x="0" y="0" width="80" height="15" /></element>
<element name="digit0" ref="digit"><bounds x="0" y="0" width="10" height="15" /></element>
<element name="digit1" ref="digit"><bounds x="10" y="0" width="10" height="15" /></element>
<element name="digit2" ref="digit"><bounds x="20" y="0" width="10" height="15" /></element>
<element name="digit3" ref="digit"><bounds x="30" y="0" width="10" height="15" /></element>
<element name="digit4" ref="digit"><bounds x="40" y="0" width="10" height="15" /></element>
<element name="digit5" ref="digit"><bounds x="50" y="0" width="10" height="15" /></element>
<element name="digit6" ref="digit"><bounds x="60" y="0" width="10" height="15" /></element>
<element name="digit7" ref="digit"><bounds x="70" y="0" width="10" height="15" /></element>
</view>
</mamelayout>
|