-
Notifications
You must be signed in to change notification settings - Fork 1
/
status-ui.xml
100 lines (98 loc) · 4.05 KB
/
status-ui.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE mythuitheme SYSTEM "http://www.mythtv.org/schema/mythuitheme.dtd">
<mythuitheme>
<window name="status">
<imagetype name="background">
<filename>images/Backgrounds/BackgroundInformation.jpg</filename>
<area>0,0,100%,100%</area>
</imagetype>
<group name="decoration" from="basecontentdecoration"/>
<buttonlist name="category" from="baseitemlist">
<area>25,500,50%-25,-75</area>
<statetype name="buttonitem">
<state name="selectedactive" from="active">
<area>0,0,100%,55</area>
<imagetype name="icon">
<position>100%-25,50%-12</position>
<filename>images/ArrowRightBig.png</filename>
<alpha>50</alpha>
</imagetype>
</state>
<state name="inactive" from="active">
<alpha>0</alpha>
</state>
<state name="selectedinactive" from="selectedactive">
<alpha>0</alpha>
</state>
</statetype>
</buttonlist>
<buttonlist name="log" from="baseitemlist">
<area>25,500,50%-25,-75</area>
<statetype name="buttonitem">
<state name="inactive" from="active">
<alpha>0</alpha>
</state>
<state name="selectedinactive" from="selectedactive">
<alpha>0</alpha>
</state>
</statetype>
</buttonlist>
<textarea name="helptext" from="basetext_m">
<area>50%+25,500,-25,-75</area>
<multiline>yes</multiline>
<alpha>200</alpha>
<align>top,left</align>
<value>This screen displays the status of various system components</value>
</textarea>
<textarea name="justhelptext" from="basehelptext">
<area>25,100%-50,-25,100%</area>
<align>center</align>
</textarea>
</window>
<!--====================================================================-->
<window name="standbymode">
<!-- make slightly smaller than fullscreen to avoid default window background -->
<area>0,1,100%,100%</area>
<shape name="background" from="basebackground">
<alpha>225</alpha>
</shape>
<group name="pageheader" from="baseheader"/>
<group name="popup">
<area>50%-400,0,800,180</area>
<group name="decoration" from="basepopupdecoration"/>
<textarea name="title" from="basepopuptitletext">
<value>MythTV is in standby</value>
</textarea>
<statetype name="backendstatus">
<area>25,75,-25,80</area>
<state name="idle">
<area>0,0,100%,80</area>
<textarea name="status" from="basetext_m">
<area>0,0,100%,80</area>
<align>center</align>
<multiline>yes</multiline>
<alpha>200</alpha>
<value>Backend is idle</value>
</textarea>
</state>
<state name="shuttingdown" from="idle">
<textarea name="status">
<value>Backend is shutting down</value>
</textarea>
</state>
<state name="recording" from="idle">
<textarea name="status">
<value>Backend is recording</value>
</textarea>
</state>
<state name="offline" from="idle">
<textarea name="status">
<font>basefont_m_bad</font>
<alpha>150</alpha>
<value>Backend is offline</value>
</textarea>
</state>
</statetype>
</group>
</window>
</mythuitheme>