1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <mythuitheme>
|
---|
3 |
|
---|
4 | <window name="welcome_screen">
|
---|
5 |
|
---|
6 | <!--
|
---|
7 | First, define all the fonts we need on this screen
|
---|
8 | -->
|
---|
9 | <font name="title" from="baselarge">>
|
---|
10 | <color>#ffff00</color>
|
---|
11 | <dropcolor>#000000</dropcolor>
|
---|
12 | <pixelsize>34</pixelsize>
|
---|
13 | <shadow>2,2</shadow>
|
---|
14 | <bold>yes</bold>
|
---|
15 | </font>
|
---|
16 |
|
---|
17 | <font name="time" from="basesmall">
|
---|
18 | <color>#9999cc</color>
|
---|
19 | <pixelsize>20</pixelsize>
|
---|
20 | <bold>yes</bold>
|
---|
21 | </font>
|
---|
22 |
|
---|
23 | <font name="label" from="basesmall">
|
---|
24 | <color>#ffff00</color>
|
---|
25 | <dropcolor>#000000</dropcolor>
|
---|
26 | <pixelsize>26</pixelsize>
|
---|
27 | <shadow>2,2</shadow>
|
---|
28 | <bold>yes</bold>
|
---|
29 | </font>
|
---|
30 |
|
---|
31 | <font name="info" from="basesmall">
|
---|
32 | <color>#ffffff</color>
|
---|
33 | <pixelsize>22</pixelsize>
|
---|
34 | <bold>yes</bold>
|
---|
35 | </font>
|
---|
36 |
|
---|
37 | <font name="warning" from="basesmall">
|
---|
38 | <color>#ff0000</color>
|
---|
39 | <dropcolor>#000000</dropcolor>
|
---|
40 | <pixelsize>22</pixelsize>
|
---|
41 | <shadow>2,2</shadow>
|
---|
42 | <bold>yes</bold>
|
---|
43 | </font>
|
---|
44 |
|
---|
45 | <font name="buttons" from="basesmall">
|
---|
46 | <color>#ffff00</color>
|
---|
47 | <pixelsize>20</pixelsize>
|
---|
48 | <bold>yes</bold>
|
---|
49 | </font>
|
---|
50 |
|
---|
51 |
|
---|
52 | <textarea name="title" from="basetextarea">
|
---|
53 | <area>80,12,1120,48</area>
|
---|
54 | <font>title</font>
|
---|
55 | <align>allcenter</align>
|
---|
56 | <value>Welcome to MythTV</value>
|
---|
57 | </textarea>
|
---|
58 |
|
---|
59 | <!--
|
---|
60 | date & time
|
---|
61 | -->
|
---|
62 | <clock name="date">
|
---|
63 | <area>32,24,304,84</area>
|
---|
64 | <font>time</font>
|
---|
65 | <format>dddd\ndd MMMM yyyy</format>
|
---|
66 | <align>left,top</align>
|
---|
67 | <cutdown>true</cutdown>
|
---|
68 | </clock>
|
---|
69 |
|
---|
70 | <clock name="time" from="date">
|
---|
71 | <area>1072,24,176,36</area>
|
---|
72 | <format>%TIME%</format>
|
---|
73 | <align>right</align>
|
---|
74 | </clock>
|
---|
75 |
|
---|
76 | <!--
|
---|
77 | current myth status
|
---|
78 | -->
|
---|
79 | <textarea name="status_text" from="basetextarea">
|
---|
80 | <area>32,84,1216,72</area>
|
---|
81 | <multiline>yes</multiline>
|
---|
82 | <font>info</font>
|
---|
83 | <align>hcenter</align>
|
---|
84 | <value>MythTV is idle and will shutdown shortly.</value>
|
---|
85 | </textarea>
|
---|
86 |
|
---|
87 | <!--
|
---|
88 | current recordings status
|
---|
89 | -->
|
---|
90 | <textarea name="recording_label" from="basetextarea">
|
---|
91 | <area>32,156,1216,36</area>
|
---|
92 | <font>label</font>
|
---|
93 | <align>hcenter</align>
|
---|
94 | <value>Current Recording(s)</value>
|
---|
95 | </textarea>
|
---|
96 |
|
---|
97 | <textarea name="recording_text" from="status_text">
|
---|
98 | <area>32,198,1216,180</area>
|
---|
99 | <value>Retrieving Recording Status ...</value>
|
---|
100 | </textarea>
|
---|
101 |
|
---|
102 | <!--
|
---|
103 | next scheduled recording status
|
---|
104 | -->
|
---|
105 | <textarea name="scheduled_label" from="recording_label">
|
---|
106 | <area>32,384,1216,36</area>
|
---|
107 | <value>Next Scheduled Recording(s)</value>
|
---|
108 | </textarea>
|
---|
109 |
|
---|
110 | <textarea name="scheduled_text" from="recording_text">
|
---|
111 | <area>32,426,1216,144</area>
|
---|
112 | <value>Retrieving Scheduled Recordings ...</value>
|
---|
113 | </textarea>
|
---|
114 |
|
---|
115 | <!--
|
---|
116 | scheduled recordings conflict warning
|
---|
117 | -->
|
---|
118 | <textarea name="conflicts_text" from="basetextarea">
|
---|
119 | <area>32,588,1216,36</area>
|
---|
120 | <font>warning</font>
|
---|
121 | <align>hcenter</align>
|
---|
122 | <value>WARNING: There are conflicting scheduled recordings!</value>
|
---|
123 | </textarea>
|
---|
124 |
|
---|
125 | <!--
|
---|
126 | start frontend button. Changed to baseverywidebutton (JM)
|
---|
127 | -->
|
---|
128 | <button name="startfrontend_button" from="baseverywidebutton">
|
---|
129 | <position>340,642</position>
|
---|
130 | <value>Start Frontend</value>
|
---|
131 | </button>
|
---|
132 |
|
---|
133 |
|
---|
134 | </window>
|
---|
135 |
|
---|
136 | </mythuitheme>
|
---|