show dolby, crypt and format status in the infobar - we don't have functionality...
[enigma2.git] / data / skin.xml
index 4209f281e66d4ec301e1fffa03722b74d97f0b57..aac69c581b2e55cfc91639bd2266023037e6450c 100644 (file)
                        <widget name="entries" position="20,70" size="320,150" />
                        <widget name="bottom" position="20,230" size="320,25" font="Arial;23" />
                </screen>
-               <screen name="NimSetup" position="140,165" size="360,180" title="Satconfig">
-                       <widget name="config" position="20,10" size="320,150" />
+               <screen name="NimSetup" position="140,165" size="360,250" title="Satconfig">
+                       <widget name="config" position="20,10" size="320,220" />
                </screen>
                <screen name="Satconfig" position="140,125" size="460,280" title="Satconfig">
                        <widget name="config" position="10,50" size="420,150" />
                </screen>
-               <screen name="ScanSetup" position="100,100" size="500,400" title="Service scan">
+               <screen name="ScanSetup" position="90,100" size="520,400" title="Service scan">
                        <widget name="config" position="20,10" size="460,350" />
-                       <widget name="introduction" position="20,360" size="280,30" font="Arial;23" />
+                       <widget name="introduction" position="20,360" size="350,30" font="Arial;23" />
                </screen>
                <screen name="ScanSimple" position="150,100" size="400,300" title="Service scan">
                        <widget name="header" position="20,10" size="280,25" font="Arial;23"/>
                        <widget name="theClock" position="10,60" size="280,50" />
                </screen>
                <screen name="InfoBar" flags="wfNoBorder" position="0,380" size="720,148" title="InfoBar">
-                       <ePixmap position="0,0" size="720,148" pixmap="/usr/share/enigma2/info-bg.png" />
-                       
+                       <ePixmap position="0,0" zPosition="1" size="720,148" pixmap="/usr/share/enigma2/info-bg.png" />
+                                               
+                       <widget name="BlinkingPoint" pixmap="/usr/share/enigma2/record.png" position="430,35" size="20,20" />
+
+                       <widget name="CryptActive" pixmap="/usr/share/enigma2/crypt.png" position="570,40" size="12,15" />
+                       <widget name="DolbyActive" pixmap="/usr/share/enigma2/dolby.png" position="585,40" size="25,15" />
+                       <widget name="FormatActive" pixmap="/usr/share/enigma2/format.png" position="613,40" size="28,15" />
+
                        <widget name="ServiceName" position="69,25" size="427,26" valign="center" font="Arial;22" backgroundColor="#101258" />
                        <widget name="CurrentTime" position="575,10" size="90,30" backgroundColor="dark" font="Arial;19" />
                        <widget name="Event_Now_StartTime" position="210,68" size="60,22" font="Arial;20" backgroundColor="dark" />
                        <widget name="key_blue" position="420,0" size="140,40" backgroundColor="blue" font="Arial;21" />
                </screen>
                <screen name="EPGSelection" position="90,100" size="560,415" title="EPG Selection">
-                       <widget name="list" position="10,5" size="550,400" />
+                       <widget name="key_red" position="0,0" size="140,30" backgroundColor="red" font="Arial;21" />
+                       <widget name="key_green" position="140,0" size="140,30" backgroundColor="green" font="Arial;21" />
+                       <widget name="key_yellow" position="280,0" size="140,30" backgroundColor="yellow" font="Arial;21" />
+                       <widget name="key_blue" position="420,0" size="140,30" backgroundColor="blue" font="Arial;21" />
+
+                       <widget name="list" position="10,40" size="550,370" />
                </screen>
                <screen name="EventView" position="100,100" size="520,380" title="Eventview">
                        <widget name="epg_description" position="10,5" size="500,335" font="Arial;22" />
                        <eLabel position="500,40" size="220,60" text="help..." font="Arial;50" />
                </screen>
                <screen name="MessageBox" position="0,300" size="720,10" title="Message">
-                       <widget name="text" position="0,0" size="650,0" font="Arial;22" />
+                       <widget name="text" position="0,35" size="650,0" font="Arial;22" />
+                       <widget name="key_red" position="0,0" size="140,30" backgroundColor="red" font="Arial;21" />
+                       <widget name="key_green" position="140,0" size="140,30" backgroundColor="green" font="Arial;21" />
                        <applet type="onLayoutFinish">
 # this should be factored out into some helper code, but currently demonstrates applets.
 from enigma import eSize, ePoint
@@ -231,7 +244,12 @@ textsize = self["text"].getSize()
 
 # y size still must be fixed in font stuff...
 textsize = (textsize[0], textsize[1] + 50)
-wsize = (textsize[0] + 50, textsize[1] + 50)
+wsizex = textsize[0] + 50
+wsizey = textsize[1] + 50
+if (280 > wsizex):
+       wsizex = 280
+wsize = (wsizex, wsizey)
+
 
 # resize 
 self.instance.resize(eSize(*wsize))