mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
46 lines
2.8 KiB
XML
46 lines
2.8 KiB
XML
<menusetup x="0" y="0" width="100%" height="100%" fadetime="0" scaletvx="33%" scaletvy="10%" scaletvwidth="65%" scaletvheight="80%" >
|
|
|
|
<scrollbar>
|
|
<area x="30%" y="11%" width="2%" height="78%" layer="2">
|
|
<fill color="{clrBorder}" />
|
|
<drawrectangle x="2" y="2" width="{areawidth} - 4" height="{areaheight} - 4" color="{clrTransparent}" />
|
|
<drawrectangle x="4" y="4 + {areaheight} * {offset} / 1000" width="{areawidth} - 8" height="{areaheight} * {height} / 1000 - 8" color="{clrProgressbar}" />
|
|
</area>
|
|
</scrollbar>
|
|
|
|
<menuitems x="{areawidth}*0.005" y="10%" orientation="vertical" width="28%" height="80%" align="center" numlistelements="10">
|
|
<!-- Available Variables setup menu listelement:
|
|
{label} label of menu item
|
|
{number} number of menu item (or empty string if not set)
|
|
{icon} path of appropriate icon
|
|
{current} true if item is currently selected
|
|
{separator} true if item is a list separator
|
|
-->
|
|
<listelement>
|
|
<area x="0" width="100%" layer="2">
|
|
<drawimage condition="not{current}" imagetype="skinpart" path="menubutton" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/>
|
|
<drawimage condition="{current}" imagetype="skinpart" path="menubuttonactive" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/>
|
|
</area>
|
|
<area x="0" width="100%" layer="7">
|
|
<drawimage imagetype="skinpart" path="menubuttontop" x="0" y="1%" width="{areawidth}" height="{areaheight}*0.98"/>
|
|
</area>
|
|
<area x="0" width="100%" layer="3">
|
|
<drawimage imagetype="menuicon" path="{icon}" x="10" valign="center" width="{areaheight}*0.9" height="{areaheight}*0.9"/>
|
|
</area>
|
|
<areascroll scrollelement="menutext" mode="forthandback" orientation="horizontal" delay="1000" scrollspeed="medium" x="25%" width="75%" layer="3">
|
|
<drawtext condition="not{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItem}" text="{number} {label}" />
|
|
<drawtext condition="{current}" name="menutext" x="0" valign="center" font="{vdrOsd}" fontsize="50%" color="{clrFontMenuItemSelected}" text="{number} {label}" />
|
|
</areascroll>
|
|
</listelement>
|
|
<!-- additional element which is drawn for current element -->
|
|
<!-- Available Variables main menu currentelement:
|
|
{label} label of menu item
|
|
{number} number of menu item (or empty string if not set)
|
|
{icon} path of appropriate icon
|
|
-->
|
|
<currentelement delay="50" fadetime="0">
|
|
</currentelement>
|
|
</menuitems>
|
|
|
|
</menusetup>
|