﻿<?xml version="1.0" encoding="utf-8"?>
<layout onLaunch="launch" onVolumeUp="volume_up" onVolumeDown="volume_down" onResume="play_pause" onPause="play_pause">
  <tabs>
    <tab text="Player">
      <grid>
        <row>
          <label id="info" />
        </row>
        <row>
          <button icon="vdown" onTap="volume_down" />
          <button icon="vmute" onTap="volume_mute" />
          <button icon="vup" onTap="volume_up" />
        </row>
        <row>
          <button icon="previous" onTap="previous" />
          <button icon="playpause" onTap="play_pause" />
          <button icon="next" onTap="next" />
        </row>
        <row>
          <button icon="rwd" ontap="rewind" />
          <button icon="stop" onTap="stop" />
          <button icon="ff" ontap="forward" />
        </row>
      </grid>
    </tab>
    <tab text="Playback order">
      <row weight="1">
        <button text="Default" onTap="orderDefault" />
        <button text="Random" onTap="orderRandom" />
      </row>
      <row weight="1">
        <button text="Repeat (playlist)" onTap="orderRepeatPlaylist" />
        <button text="Repeat (track)" onTap="orderRepeatTrack" />
      </row>
      <row weight="1">
        <button text="Shuffle (albums)" onTap="orderShuffleAlbums" />
        <button text="Shuffle (folders)" onTap="orderShuffleFolders" />
        <button text="Shuffle (tracks)" onTap="orderShuffleTracks" />
      </row>
    </tab>
  </tabs>
</layout>
