jf-roku/components/music/MusicArtistDetails.xml

23 lines
1.2 KiB
XML
Raw Normal View History

2022-05-14 02:35:50 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<component name="MusicArtistDetails" extends="JFGroup">
<children>
<Poster id="backdrop" opacity=".4" loadDisplayMode="scaleToZoom" width="1920" height="1200" blendColor="#3f3f3f" />
<LayoutGroup id="toplevel" layoutDirection="vert" itemSpacings="[35]" >
2022-05-14 02:35:50 +00:00
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[15]" >
2022-05-21 20:45:01 +00:00
<Poster id="artistImage" width="450" height="450" />
<Label id="overview" wrap="true" maxLines="9" width="1250" ellipsisText=" ... (Press * to read more)" />
2022-05-14 02:35:50 +00:00
</LayoutGroup>
<Rectangle id='albumRect' translation="[0, 0]" width="1720" height="325" color="0x00000066">
<MusicArtistAlbumRow id="albums" translation="[35, 10]" rowLabelColor="#999999" rowLabelFont="font:SmallestSystemFont" />
</Rectangle>
2022-05-14 02:35:50 +00:00
</LayoutGroup>
</children>
<interface>
2022-05-21 20:45:01 +00:00
<field id="pageContent" type="node" onChange="pageContentChanged" />
2022-05-14 21:14:15 +00:00
<field id="musicArtistAlbumData" type="assocarray" alias="albums.MusicArtistAlbumData" />
<field id="musicAlbumSelected" alias="albums.rowItemSelected" />
2022-05-14 02:35:50 +00:00
</interface>
<script type="text/brightscript" uri="pkg:/source/utils/misc.brs" />
<script type="text/brightscript" uri="MusicArtistDetails.brs" />
</component>