blob: e3b0241e7f84fa6c70f9adcc25f65288e4a0afc8 (
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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
<?xml version="1.0"?>
<!--
license:CC0
Basic display of LEDs for the DEC VT100
-->
<mamelayout version="2">
<element name="red_led">
<disk state="0">
<color red="1.0" green="0.0" blue="0.0" />
</disk>
</element>
<element name="ON_LINE">
<text string="ON LINE">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="LOCAL">
<text string="LOCAL">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="KBDLOCKED">
<text string="KBDLOCKED">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="L1">
<text string="L1">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="L2">
<text string="L2">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="L3">
<text string="L3">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<element name="L4">
<text string="L4">
<color red="1.0" green="1.0" blue="1.0" />
</text>
</element>
<view name="Keyboard LEDs">
<bounds left="0" top="0" right="1024" bottom="870" />
<screen index="0">
<bounds x="0" y="0" width="1024" height="768" />
</screen>
<element name="online_txt" ref="ON_LINE">
<bounds left="0" right="100" top="800" bottom="820" />
</element>
<element name="online_led" ref="red_led">
<bounds left="40" right="60" top="830" bottom="850" />
</element>
<element name="local_txt" ref="LOCAL">
<bounds left="100" right="200" top="800" bottom="820" />
</element>
<element name="local_led" ref="red_led">
<bounds left="140" right="160" top="830" bottom="850" />
</element>
<element name="locked_txt" ref="KBDLOCKED">
<bounds left="200" right="300" top="800" bottom="820" />
</element>
<element name="locked_led" ref="red_led">
<bounds left="240" right="260" top="830" bottom="850" />
</element>
<element name="l1_txt" ref="L1">
<bounds left="300" right="400" top="800" bottom="820" />
</element>
<element name="l1_led" ref="red_led">
<bounds left="340" right="360" top="830" bottom="850" />
</element>
<element name="l2_txt" ref="L2">
<bounds left="400" right="500" top="800" bottom="820" />
</element>
<element name="l2_led" ref="red_led">
<bounds left="440" right="460" top="830" bottom="850" />
</element>
<element name="l3_txt" ref="L3">
<bounds left="500" right="600" top="800" bottom="820" />
</element>
<element name="l3_led" ref="red_led">
<bounds left="540" right="560" top="830" bottom="850" />
</element>
<element name="l4_txt" ref="L4">
<bounds left="600" right="700" top="800" bottom="820" />
</element>
<element name="l4_led" ref="red_led">
<bounds left="640" right="660" top="830" bottom="850" />
</element>
</view>
</mamelayout>
|