skin.pellucid/1080i/View_Albums.xml

299 lines
14 KiB
XML
Raw Normal View History

2015-04-06 21:57:56 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<includes>
<!--Album browser-->
2017-03-25 19:46:39 +01:00
<include name="musicalbum">
2018-08-30 20:34:50 +02:00
<control type="group">
2018-10-06 20:24:09 +02:00
<visible>$EXP[isMusicAlbum] + !$EXP[isMusicArtistCatalogue]</visible>
2018-05-14 21:11:10 +02:00
<control type="image">
2018-08-30 20:34:50 +02:00
<visible>control.hasfocus(9998) | control.hasfocus(9123)</visible>
<include>dimensionsFullscreen</include>
<texture fallback="colors/black.png">$INFO[container(9998).listitem.art(fanart)]</texture>
<colordiffuse>FF555555</colordiffuse>
<aspectratio>scale</aspectratio>
<fadetime>250</fadetime>
2018-05-14 21:11:10 +02:00
</control>
2018-08-30 20:34:50 +02:00
<control type="image">
<visible>!control.hasfocus(9998) + !control.hasfocus(9123)</visible>
<include>dimensionsFullscreen</include>
<texture fallback="colors/black.png">$INFO[container.listitem.art(fanart)]</texture>
<colordiffuse>FF555555</colordiffuse>
<aspectratio>scale</aspectratio>
<fadetime>250</fadetime>
</control>
<control type="group" id="9125">
<visible>$EXP[isMusicAlbum] + !$EXP[isMusicArtistCatalogue] + !Skin.HasSetting(disableRecentAlbums)</visible>
<animation type="Conditional" condition="!controlgroup(9125).hasfocus">
<effect type="slide" start="0,0" end="0,-200" time="200"/>
<effect type="fade" start="100" end="0" time="200"/>
</animation>
<animation type="Conditional" condition="controlgroup(9125).hasfocus">
<effect type="slide" start="0,-200" end="0,0" time="200" delay="300"/>
<effect type="fade" start="0" end="100" time="300" delay="350"/>
</animation>
<!--quick link selector-->
<control type="list" id="9123">
<posx>col-1-begin</posx>
<posy>180</posy>
<width>24-col</width>
<height>2-row</height>
<onleft>9000</onleft>
<ondown>9998</ondown>
<onback>9000</onback>
<orientation>horizontal</orientation>
<itemlayout width="246" height="2-row">
<control type="label">
<posx>0</posx>
<posy>0</posy>
<width>246</width>
<height>2-row</height>
<font>menuTitle</font>
<aligny>center</aligny>
<textcolor>textDisabled</textcolor>
<shadowcolor></shadowcolor>
<label>$INFO[ListItem.property(textTitle)]</label>
</control>
</itemlayout>
<focusedlayout width="246" height="2-row">
<control type="label">
<posx>0</posx>
<posy>0</posy>
<width>246</width>
<height>2-row</height>
<font>menuTitle</font>
<aligny>center</aligny>
<textcolor>textActive</textcolor>
<shadowcolor></shadowcolor>
<label>$INFO[ListItem.property(textTitle)]</label>
<animation type="conditional" condition="control.hasfocus(9123)" loop="true">
<effect type="fade" start="100" end="50" time="1000"/>
</animation>
</control>
</focusedlayout>
<content>
<item>
<label>special://skin/extras/playlists/recentAlbums.xsp</label>
<property name="textTitle">31180</property>
</item>
<item>
<label>special://skin/extras/playlists/topAlbums.xsp</label>
<property name="textTitle">31187</property>
</item>
<item>
<label>special://skin/extras/playlists/randomAlbums.xsp</label>
<property name="textTitle">31181</property>
</item>
</content>
</control>
<!--quick links-->
<control type="panel" id="9998">
<posx>90</posx>
<posy>288</posy>
<width>24-col</width>
<height>11-row</height>
<onup>9123</onup>
2018-10-14 14:51:20 +02:00
<ondown>54</ondown>
2018-08-30 20:34:50 +02:00
<onleft>9000</onleft>
<onback>9000</onback>
<orientation>horizontal</orientation>
<onclick>activatewindow(music,musicdb://albums/$INFO[listitem.DBID]/,return)</onclick>
<onclick>Control.SetFocus(50)</onclick>
<itemlayout width="352" height="5-col-gutter">
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>324</width>
2018-05-22 00:00:46 +02:00
<height>324</height>
2018-08-30 20:34:50 +02:00
<aspectratio>stretch</aspectratio>
<texture>colors/black.png</texture>
2018-10-10 23:49:39 +02:00
<bordersize>12</bordersize>
2018-08-30 20:34:50 +02:00
<colordiffuse>overlay</colordiffuse>
</control>
2017-09-20 21:10:17 +02:00
<control type="image">
2018-08-30 20:34:50 +02:00
<posx>0</posx>
<posy>0</posy>
<width>324</width>
2018-05-22 00:00:46 +02:00
<height>324</height>
2018-08-30 20:34:50 +02:00
<aspectratio>stretch</aspectratio>
2018-09-11 20:41:30 +02:00
<texture fallback="noAlbumCover.jpg">$INFO[ListItem.Art(thumb)]</texture>
2018-10-10 23:49:39 +02:00
<bordersize>12</bordersize>
2018-08-30 20:34:50 +02:00
<colordiffuse>BBffffff</colordiffuse>
</control>
<control type="label">
2017-09-20 01:10:41 +02:00
<visible>!controlgroup(9000).hasfocus</visible>
<posx>12</posx>
2018-05-22 00:00:46 +02:00
<posy>318</posy>
2018-08-30 20:34:50 +02:00
<width>276</width>
2017-09-20 01:10:41 +02:00
<height>2-row</height>
<aligny>center</aligny>
<font>thumbTitle</font>
<textcolor>textActive</textcolor>
2018-10-01 22:38:21 +02:00
<label>[B]$INFO[ListItem.Title][/B][CR]$INFO[ListItem.artist] - $INFO[listitem.year]</label>
2018-08-30 20:34:50 +02:00
</control>
</itemlayout>
<focusedlayout width="352" height="5-col-gutter">
<control type="group">
<include>focusThumb</include>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>324</width>
<height>324</height>
<aspectratio>stretch</aspectratio>
<texture>colors/black.png</texture>
<bordertexture colordiffuse="ffFFFFFF">colors/white.png</bordertexture>
<bordersize>6</bordersize>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>324</width>
<height>324</height>
<aspectratio>stretch</aspectratio>
2018-09-11 20:41:30 +02:00
<texture fallback="noAlbumCover.jpg">$INFO[ListItem.Art(thumb)]</texture>
2018-08-30 20:34:50 +02:00
<bordersize>6</bordersize>
<colordiffuse>ffffffff</colordiffuse>
</control>
<control type="label">
<visible>!controlgroup(9000).hasfocus</visible>
<posx>12</posx>
<posy>318</posy>
<width>276</width>
<height>2-row</height>
<aligny>center</aligny>
<font>thumbTitle</font>
<textcolor>textActive</textcolor>
2018-10-01 22:38:21 +02:00
<label>[B]$INFO[ListItem.Title][/B][CR]$INFO[ListItem.artist] - $INFO[listitem.year]</label>
2018-08-30 20:34:50 +02:00
</control>
2017-09-20 01:10:41 +02:00
</control>
2018-08-30 20:34:50 +02:00
</focusedlayout>
<content>$INFO[control.getlabel(9123)]</content>
</control>
</control>
<!--all albums-->
<control type="group" id="9124">
<animation type="Conditional" condition="controlgroup(9124).hasfocus | controlgroup(8000).hasfocus | controlgroup(9000).hasfocus">
<effect type="slide" start="0,0" end="0,-576" tween="sine" time="400"/>
</animation>
<control type="label">
<visible>!controlgroup(9000).hasfocus + $EXP[isMusicAlbum] + !$EXP[isMusicArtistCatalogue]</visible>
<posx>col-1-begin</posx>
<posy>760</posy>
<width>12-col</width>
<height>2-row</height>
<aligny>center</aligny>
<font>menuTitle</font>
<textcolor>textActive</textcolor>
<label>$LOCALIZE[31223]</label>
</control>
<control type="panel" id="54">
<visible>$EXP[isMusicAlbum]</visible>
2018-10-10 23:49:39 +02:00
<posx>90</posx>
2018-08-30 20:34:50 +02:00
<posy>864</posy>
<width>1800</width>
<height>23-row</height>
<onleft>9000</onleft>
<onright>60</onright>
2018-10-14 14:51:20 +02:00
<ondown>54</ondown>
2019-06-22 18:32:41 +02:00
<onup>54</onup>
2018-10-06 20:24:09 +02:00
<onback>9000</onback>
2018-08-30 20:34:50 +02:00
<pagecontrol>60</pagecontrol>
<scrolltime tween="cubic" easing="out">600</scrolltime>
2018-10-06 20:24:09 +02:00
<itemlayout width="293" height="360">
2018-08-30 20:34:50 +02:00
<control type="image">
2017-09-19 22:24:15 +02:00
<posx>0</posx>
<posy>0</posy>
<width>4-col-gutter</width>
<height>4-col-gutter</height>
<aspectratio>stretch</aspectratio>
2018-01-22 00:45:57 +01:00
<texture>colors/black.png</texture>
2018-10-10 23:49:39 +02:00
<bordersize>12</bordersize>
2018-08-30 20:34:50 +02:00
<colordiffuse>overlay</colordiffuse>
2017-09-19 22:24:15 +02:00
</control>
2017-09-20 21:10:17 +02:00
<control type="image">
2018-09-11 20:41:30 +02:00
<visible>!ListItem.IsParentFolder</visible>
2018-08-30 20:34:50 +02:00
<posx>0</posx>
<posy>0</posy>
<width>4-col-gutter</width>
<height>4-col-gutter</height>
<aspectratio>stretch</aspectratio>
2018-09-11 20:41:30 +02:00
<texture fallback="noAlbumCover.jpg">$INFO[ListItem.Art(thumb)]</texture>
2018-10-10 23:49:39 +02:00
<bordersize>12</bordersize>
2018-08-30 20:34:50 +02:00
<colordiffuse>BBffffff</colordiffuse>
</control>
2017-09-19 22:24:15 +02:00
<control type="textbox">
2017-12-21 15:16:56 +01:00
<visible>String.IsEmpty(listitem.title)</visible>
2017-09-19 22:24:15 +02:00
<posx>24</posx>
<posy>3-row</posy>
<width>228</width>
<height>6-row</height>
2018-01-24 17:55:58 +01:00
<font>largeTitle</font>
2017-09-19 22:24:15 +02:00
<wrapmultiline>true</wrapmultiline>
<textcolor>textActive</textcolor>
<label>$INFO[ListItem.label]</label>
</control>
2018-08-30 20:34:50 +02:00
<control type="label">
2017-09-20 01:10:41 +02:00
<visible>!controlgroup(9000).hasfocus</visible>
<posx>12</posx>
2018-02-25 14:05:53 +01:00
<posy>258</posy>
2018-08-30 20:34:50 +02:00
<width>226</width>
2017-09-20 01:10:41 +02:00
<height>2-row</height>
<aligny>center</aligny>
<font>thumbTitle</font>
<textcolor>textActive</textcolor>
2018-10-01 22:38:21 +02:00
<label>[B]$INFO[ListItem.Title][/B][CR]$INFO[ListItem.artist] - $INFO[listitem.year]</label>
2017-09-20 01:10:41 +02:00
</control>
2018-08-30 20:34:50 +02:00
</itemlayout>
2018-10-06 20:24:09 +02:00
<focusedlayout width="4-col" height="360">
2018-08-30 20:34:50 +02:00
<control type="group">
<include>focusThumb</include>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>4-col-gutter</width>
<height>4-col-gutter</height>
<aspectratio>stretch</aspectratio>
<texture>colors/black.png</texture>
<bordertexture colordiffuse="FFFFFFFF">colors/white.png</bordertexture>
<bordersize>6</bordersize>
<colordiffuse>FF000000</colordiffuse>
</control>
<control type="image">
2018-09-11 20:41:30 +02:00
<visible>!ListItem.IsParentFolder</visible>
2018-08-30 20:34:50 +02:00
<posx>0</posx>
<posy>0</posy>
<width>4-col-gutter</width>
<height>4-col-gutter</height>
<aspectratio>stretch</aspectratio>
2018-09-11 20:41:30 +02:00
<texture fallback="noAlbumCover.jpg">$INFO[ListItem.Art(thumb)]</texture>
2018-08-30 20:34:50 +02:00
<bordersize>6</bordersize>
</control>
<control type="textbox">
<visible>String.IsEmpty(listitem.title)</visible>
<posx>24</posx>
<posy>3-row</posy>
<width>228</width>
<height>6-row</height>
<font>largeTitle</font>
<wrapmultiline>true</wrapmultiline>
<textcolor>textActive</textcolor>
<label>$INFO[ListItem.label]</label>
</control>
<control type="label">
<visible>!controlgroup(9000).hasfocus</visible>
<posx>12</posx>
<posy>258</posy>
<width>226</width>
<height>2-row</height>
<aligny>center</aligny>
<font>thumbTitle</font>
<textcolor>textActive</textcolor>
2018-10-01 22:38:21 +02:00
<label>[B]$INFO[ListItem.Title][/B][CR]$INFO[ListItem.artist] - $INFO[listitem.year]</label>
2018-08-30 20:34:50 +02:00
</control>
</control>
</focusedlayout>
</control>
</control>
2017-09-20 01:10:41 +02:00
</control>
2015-04-06 21:57:56 +02:00
</include>
</includes>