<?xml version="1.0" encoding="utf-8"?>
<layout color="#1ED760" onLaunch="launch" onvolumedown="volume_down" onvolumeup="volume_up" onpause="pause" onresume="play">
	<tabs>
		<tab text="Player"> 
			<row weight="wrap">
				<label id="currtitle" text="[Loading]" />
			</row>
			<row>
				<image color="#222326" id="currimg" image="icon_hires.png" />
			</row>
			<row weight="wrap">
				<button icon="previous" ontap="previous" />
				<button id="play" icon="play" ontap="play_pause" />
				<button icon="next" ontap="next" />
			</row>
			<row weight="wrap">
				<slider id="currpos" text="Position" onup="poschange" />
			</row>
			<row weight="wrap">
				<slider id="currvol" text="Volume" progressmax="100" progress="100" onup="volchange" />
			</row>
		</tab>
		<tab text="Playlists">
			<row>
				<list id="playlists" ontap="selected">
					<item>Loading...</item>
				</list>
			</row>
			<row weight="wrap">
				<toggle weight="1" id="shuffle" icon="shuffle" onchange="shuffle" />
				<button weight="2" id="back" icon="back" ontap="back" />
				<button weight="1" id="repeat" icon="repeat" ontap="repeating" />
			</row>
		</tab>
		<tab text="Search">
			<row weight="wrap">
				<text id="search_query" hint="Search..." onchange="search_changed" ondone="search_done" weight="6" />
				<button text="Go" weight="1" ontap="go" />
			</row>
			<row>
				<list id="mainlist" ontap="mainlist"/>
				<list id="artistinfolist" ontap="artistinfolist_tap" visibility="gone">
					<item>Searching...</item>
				</list>
				<list id="tracklist" ontap="tracklist_tap" visibility="gone">
					<item>Searching...</item>
				</list>
				<list id="playlistlist" ontap="playlistlist_tap" visibility="gone">
					<item>Searching...</item>
				</list>
			</row>
		</tab>
	</tabs>	
</layout>