jf-roku/components/tvshows/TVListDetails.xml

44 lines
2.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-02-23 04:47:00 +00:00
<component name="TVListDetails" extends="Group">
<children>
<LayoutGroup id="toplevel" layoutDirection="vert" itemSpacings="[40]">
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[30]">
<Poster id="poster" width="350" height="300" loadDisplayMode="scaleToZoom">
<Rectangle id="playedIndicator" color="#00a4dcFF" width="60" height="46" visible="false" translation="[290, 0]">
<Label id="checkmark" width="60" height="42" font="font:SmallestBoldSystemFont" horizAlign="center" vertAlign="bottom" text="✓" />
2022-12-28 22:31:17 +00:00
</Rectangle>
<Rectangle id="progressBackground" visible="false" color="0x00000098" width="350" height="16" translation="[0,286]">
<Rectangle id="progressBar" color="#00a4dcFF" width="0" height="16" visible="false" />
</Rectangle>
</Poster>
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>
<Label id="overview" font="font:SmallestSystemFont" wrap="true" height="130" width="950" maxLines="3" ellipsizeOnBoundary="true" />
2022-06-11 14:04:53 +00:00
<LayoutGroup layoutDirection="horiz" itemSpacings="[15]">
2023-05-21 04:31:39 +00:00
<ScrollingLabel id="video_codec" font="font:SmallestSystemFont" maxWidth="400" />
2023-05-20 23:33:42 +00:00
<label id="video_codec_count" font="font:smallestSystemFont" vertAlign="top" color="#ceffff" />
2023-05-21 04:31:39 +00:00
<ScrollingLabel id="audio_codec" font="font:SmallestSystemFont" maxWidth="400" />
<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" />
2023-05-20 23:33:42 +00:00
<field id="selectedVideoStreamId" type="string" />
<field id="selectedAudioStreamIndex" type="integer" />
<field id="itemHasFocus" type="boolean" onChange="focusChanged" />
2020-02-23 04:47:00 +00:00
</interface>
</component>