home *** CD-ROM | disk | FTP | other *** search
/ Minami 78 / MINAMI78.iso / Extra / vlc-0.8.5-win32.exe / http / dialogs / playlist < prev    next >
Text File  |  2006-05-06  |  6KB  |  93 lines

  1. <vlc id="if" param1="0" />
  2. vim:syntax=html
  3. <!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  4. <  playlist: VLC media player web interface - playlist dialog
  5. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
  6. <  Copyright (C) 2005-2006 the VideoLAN team
  7. <  $Id: playlist 14869 2006-03-22 00:19:29Z dionoea $
  8. <  Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
  9. <  This program is free software; you can redistribute it and/or modify
  10. <  it under the terms of the GNU General Public License as published by
  11. <  the Free Software Foundation; either version 2 of the License, or
  12. <  (at your option) any later version.
  13. <  This program is distributed in the hope that it will be useful,
  14. <  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. <  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. <  GNU General Public License for more details.
  17. <  You should have received a copy of the GNU General Public License
  18. <  along with this program; if not, write to the Free Software
  19. <  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  20. < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  21. This dialog needs the following dialogs to be fully functional: <none>
  22. <vlc id="end" />
  23.  
  24. <div id="playlist" class="dialog" >
  25.   <div class="title">
  26.     Playlist
  27.     <img class="close" src="images/white_cross_small.png" alt="Close" onclick="hide('playlist');"/>
  28.   </div>
  29.   <div class="controls">
  30.     <table>
  31.       <tr>
  32.         <td>
  33.           <!--<button id="btn_delete" onmouseover="button_over(this);" onmouseout="button_out(this);">
  34.             <img src="images/delete.png" alt="Delete" />
  35.             <span class="btn_text">Delete</span>
  36.           </button>-->
  37.           <button id="btn_empty" onclick="pl_empty();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Empty" >
  38.             <img src="images/empty.png" alt="Empty" />
  39.             <span class="btn_text">Empty</span>
  40.           </button>
  41.           <button id="btn_shuffle" onclick="pl_shuffle();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Shuffle" >
  42.             <img src="images/shuffle.png" alt="Shuffle" />
  43.             <span class="btn_text">Shuffle</span>
  44.           </button>
  45.           <button id="btn_loop" onclick="pl_loop();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Loop" >
  46.             <img src="images/loop.png" alt="Loop" />
  47.             <span class="btn_text">Loop</span>
  48.           </button>
  49.           <button id="btn_repeat" onclick="pl_repeat();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Repeat" >
  50.             <img src="images/repeat.png" alt="Repeat" />
  51.             <span class="btn_text">Repeat</span>
  52.           </button>
  53.         </td>
  54.         <td onmouseout="hide_menu('menu_sort');" onmouseover="show_menu('menu_sort');" >
  55.           <button id="btn_sort" title="Sort" >
  56.             <img src="images/sort.png" alt="Sort" />
  57.             <span class="btn_text">Sort</span>
  58.           </button>
  59.           <div id="menu_sort" class="menu" >
  60.             <button class="menuout" onclick="pl_sort(1,0);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Name ascending" >Name</button><br/>
  61.             <button class="menuout" onclick="pl_sort(1,1);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Name descending" >Name reverse</button><br/>
  62.             <button class="menuout" onclick="pl_sort(3,0);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Author ascending" >Author</button><br/>
  63.             <button class="menuout" onclick="pl_sort(3,1);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Author ascending" >Author reverse</button><br/>
  64.             <button class="menuout" onclick="pl_sort(5,0);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Randomize" >Random</button><br/>
  65.             <button class="menuout" onclick="pl_sort(7,0);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Track number" >Track number</button><br/>
  66.             <button class="menuout" onclick="pl_sort(0,0);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Id ascending" >Id</button><br/>
  67.             <button class="menuout" onclick="pl_sort(0,1);hide_menu('menu_sort');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" title="Sort by Id descending" >Id reverse</button><br/>
  68.           </div>
  69.         </td>
  70.         <td onmouseover="show_menu('menu_sd');" onmouseout="hide_menu('menu_sd');">
  71.           <button id="btn_sd" title="Services Discovery" >
  72.             <img src="images/sd.png" alt="Services Discovery" />
  73.             <span class="btn_text">Services Discovery</span>
  74.           </button>
  75.           <div id="menu_sd" class="menu" >
  76.             <vlc id="rpn" param1="services_discovery" />
  77.             <vlc id="foreach" param1="sd" param2="object" />
  78.             <button onclick="pl_sd('<vlc id="value" param1="sd" />');hide_menu('menu_sd');" onmouseover="setclass(this,'menuover');" onmouseout="setclass(this,'menuout');" class="menuout" title="Toggle <vlc id="value" param1="sd.name" />" ><vlc id="value" param1="sd.name" /></button><br/>
  79.             <vlc id="end" />
  80.           </div>
  81.         </td>
  82.       </tr>
  83.     </table>
  84.   </div>
  85.   <div id="playtree">
  86.     (?)
  87.   </div>
  88. </div>
  89.