<?xml version="1.0" encoding="utf-8"?>
<layout onLaunch="launch" onVolumeDown="next" onVolumeUp="previous" color="#EA642D">
	<tabs>
		<tab text="Show">
			<row weight="wrap">
				<label id="title" text="Loading..." color="#D04727"/>
			</row>
			<row>
				<button text="Start Show" ontap="show_start" />
				<button text="End Show" ontap="show_end" />
			</row>
			<row>
				<button icon="previous" ontap="first" />
				<button icon="left" ontap="previous" />
				<button icon="right" ontap="next" />
				<button icon="next" ontap="last" />
			</row>
			<row weight="wrap">
				<label text="Screen" color="#D04727" />
			</row>
			<row>
				<button text="Black" ontap="black" />
				<button text="White" ontap="white" />
			</row>
			<row weight="wrap">
				<label text="Timer" color="#D04727" />
			</row>
			<row>
				<label id="time_total" text="Total: 00:00" />
				<label id="time_slide" text="Slide: 00:00" />
			</row>

			<row>
				<button text="Start" ontap="timer_start" />
				<button text="Stop" ontap="timer_stop" />
				<button text="Reset" ontap="timer_reset" />
			</row>
		</tab>
		<tab text="Comments">
			<row weight="wrap">
				<label id="title" text="Loading..." color="#D04727" />
			</row>
			<row>
				<text id="comments" multiline="true" text="Loading..." />
			</row>
			<row weight="wrap">
				<button icon="previous" ontap="first" />
				<button icon="left" ontap="previous" />
				<button icon="right" ontap="next" />
				<button icon="next" ontap="last" />
			</row>
		</tab>
		<tab text="Slides">
			<row weight="wrap">
				<label id="title" text="Loading..." color="#D04727"/>
			</row>
			<row>
				<list id="slides" ontap="slides_tap">
					<item>Loading...</item>
				</list>
			</row>
			<row weight="wrap">
				<button icon="previous" ontap="first" />
				<button icon="left" ontap="previous" />
				<button icon="right" ontap="next" />
				<button icon="next" ontap="last" />
			</row>
		</tab>
	</tabs>
</layout>