jf-roku/components/tvshows/TVListDetails.xml

39 lines
2.2 KiB
XML
Raw Normal View History

2020-02-23 04:47:00 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<component name="TVListDetails" extends="Group">
<children>
<LayoutGroup id="toplevel" layoutDirection="vert" itemSpacings="[40]">
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[30]">
2022-06-11 14:04:53 +00:00
<Poster id="poster" width="350" height="300" />
2020-02-23 04:47:00 +00:00
<LayoutGroup id="text" layoutDirection="vert" itemSpacings="[15]">
<!-- Using poster of 1 length to get spacing. Not successful with adding translation to title -->
<Poster id="null" height="1" />
2022-06-09 20:51:04 +00:00
<ScrollingLabel id="title" font="font:MediumBoldSystemFont" maxWidth="950" />
2022-12-06 00:33:08 +00:00
<LayoutGroup id="infoBar" layoutDirection="horiz" itemSpacings="[20]">
2020-02-23 04:47:00 +00:00
<Label id="runtime" font="font:SmallestSystemFont" />
2022-11-11 04:35:34 +00:00
<LayoutGroup id="rating" layoutDirection="horiz" itemSpacings="[-5]">
2020-03-05 04:00:33 +00:00
<Poster id="star" uri="pkg:/images/sharp_star_white_18dp.png" height="26" width="26" blendColor="#cb272a" />
<Label id="communityRating" font="font:SmallestSystemFont" />
</LayoutGroup>
2020-02-23 04:47:00 +00:00
<Label id="endtime" font="font:SmallestSystemFont" />
2022-11-09 03:29:38 +00:00
<Label id="aired" font="font:SmallestSystemFont" />
2020-02-23 04:47:00 +00:00
</LayoutGroup>
2022-06-11 14:04:53 +00:00
<Label id="overview" font="font:SmallestSystemFont" wrap="true" height="130" width="950" maxLines="3" ellipsizeOnBoundary="true"/>
<LayoutGroup layoutDirection="horiz" itemSpacings="[15]">
<Label id="video_codec" font="font:SmallestSystemFont" />
<ScrollingLabel id="audio_codec" font="font:SmallestSystemFont" />
<label id="audio_codec_count" font="font:smallestSystemFont" vertAlign="top" color="#ceffff" />
</LayoutGroup>
2020-02-23 04:47:00 +00:00
</LayoutGroup>
</LayoutGroup>
</LayoutGroup>
</children>
<interface>
<field id="itemContent" type="node" onChange="itemContentChanged"/>
<field id="selectedAudioStreamIndex" type="integer" />
<field id="itemHasFocus" type="boolean" onChange="focusChanged" />
2020-02-23 04:47:00 +00:00
</interface>
2020-03-18 09:10:31 +00:00
<script type="text/brightscript" uri="TVListDetails.brs" />
<script type="text/brightscript" uri="pkg:/source/utils/misc.brs" />
<script type="text/brightscript" uri="pkg:/source/utils/config.brs" />
2020-02-23 04:47:00 +00:00
</component>