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