2019-03-14 17:11:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2022-05-10 07:05:02 +00:00
|
|
|
<component name="MovieDetails" extends="JFScreen">
|
2019-03-14 17:11:51 +00:00
|
|
|
<children>
|
2020-03-05 04:00:33 +00:00
|
|
|
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[30]">
|
2022-09-03 07:31:15 +00:00
|
|
|
<Poster id="moviePoster" translation="[250,150]" width="300" height="450" />
|
2022-06-18 19:07:07 +00:00
|
|
|
<LayoutGroup layoutDirection="vert" translation="[455, 150]" itemSpacings="[25]" id="details">
|
2020-04-04 18:18:41 +00:00
|
|
|
<LayoutGroup layoutDirection="horiz" itemSpacings="[100]" id="infoGroup">
|
2019-03-14 17:11:51 +00:00
|
|
|
<Label id="releaseYear" />
|
|
|
|
<Label id="runtime" />
|
|
|
|
<Label id="officialRating" />
|
2020-11-29 05:02:06 +00:00
|
|
|
<LayoutGroup id="communityRatingGroup" layoutDirection="horiz" itemSpacings="[-5]">
|
2020-03-05 04:00:33 +00:00
|
|
|
<Poster id="star" uri="pkg:/images/sharp_star_white_18dp.png" height="32" width="32" blendColor="#cb272a" />
|
|
|
|
<Label id="communityRating" />
|
|
|
|
</LayoutGroup>
|
2020-04-04 18:18:41 +00:00
|
|
|
<LayoutGroup layoutDirection="horiz" itemSpacings="[-5]" id="criticRatingGroup">
|
2022-03-13 08:46:03 +00:00
|
|
|
<Poster id="criticRatingIcon" height="32" width="32" />
|
|
|
|
<Label id="criticRatingLabel" />
|
|
|
|
</LayoutGroup>
|
2019-03-14 17:11:51 +00:00
|
|
|
<Label id="ends-at" />
|
|
|
|
</LayoutGroup>
|
|
|
|
<Label id="genres" />
|
|
|
|
<Label id="director" />
|
2022-09-03 07:31:15 +00:00
|
|
|
<LayoutGroup layoutDirection="horiz">
|
2022-04-07 06:31:16 +00:00
|
|
|
<Label id="video_codec" vertAlign="bottom" height="39" />
|
|
|
|
<label id="video_codec_count" font="font:smallestSystemFont" vertAlign="top" color="#ceffff" />
|
|
|
|
</LayoutGroup>
|
2022-09-03 07:31:15 +00:00
|
|
|
<LayoutGroup layoutDirection="horiz">
|
2022-04-07 06:31:16 +00:00
|
|
|
<Label id="audio_codec" vertAlign="bottom" height="39" />
|
|
|
|
<label id="audio_codec_count" font="font:smallestSystemFont" vertAlign="top" color="#ceffff" />
|
|
|
|
</LayoutGroup>
|
2019-03-14 17:11:51 +00:00
|
|
|
<ButtonGroupHoriz id="buttons" itemSpacings="[10]">
|
2022-09-03 07:31:15 +00:00
|
|
|
<Button text="Play" id="play-button" iconUri="" focusedIconUri="" maxWidth="175" minWidth="175" />
|
|
|
|
<Button text="Options" id="options-button" iconUri="" focusedIconUri="" maxWidth="250" minWidth="250" />
|
2022-05-11 16:07:38 +00:00
|
|
|
<Button text="Watched" id="watched-button" iconUri="" focusedIconUri="" maxWidth="350" minWidth="300" />
|
2022-03-13 00:36:11 +00:00
|
|
|
<Button text="Favorite" id="favorite-button" iconUri="" focusedIconUri="" maxWidth="300" minWidth="300" />
|
2022-09-03 07:31:15 +00:00
|
|
|
<Button id="trailer-button" visible="false" iconUri="" focusedIconUri="" maxWidth="300" minWidth="300" />
|
2019-03-14 17:11:51 +00:00
|
|
|
</ButtonGroupHoriz>
|
|
|
|
<Label id="tagline" />
|
2020-03-05 04:00:33 +00:00
|
|
|
<Label id="overview" wrap="true" maxLines="8" />
|
2019-03-14 17:11:51 +00:00
|
|
|
</LayoutGroup>
|
|
|
|
</LayoutGroup>
|
2022-04-07 06:31:16 +00:00
|
|
|
<MovieOptions id="movieOptions" visible="false" />
|
2022-03-13 08:46:03 +00:00
|
|
|
<!-- "Cast and Crew" row -->
|
|
|
|
<extrasSlider id="movieExtras" />
|
2019-03-14 17:11:51 +00:00
|
|
|
</children>
|
|
|
|
<interface>
|
2022-03-13 02:18:54 +00:00
|
|
|
<field id="itemContent" type="node" />
|
2022-09-03 07:31:15 +00:00
|
|
|
<field id="trailerAvailable" type="bool" onChange="trailerAvailableChanged" value="false" />
|
2020-10-24 16:23:20 +00:00
|
|
|
<field id="selectedAudioStreamIndex" type="integer" />
|
2022-03-13 00:36:11 +00:00
|
|
|
<field id="selectedVideoStreamId" type="string" />
|
2019-03-14 17:11:51 +00:00
|
|
|
</interface>
|
2019-03-22 03:27:31 +00:00
|
|
|
<script type="text/brightscript" uri="pkg:/source/utils/misc.brs" />
|
2022-06-18 19:07:07 +00:00
|
|
|
<script type="text/brightscript" uri="pkg:/source/utils/config.brs" />
|
2020-03-18 09:10:31 +00:00
|
|
|
<script type="text/brightscript" uri="MovieDetails.brs" />
|
2019-03-14 17:11:51 +00:00
|
|
|
</component>
|