]> git.sesse.net Git - vlc/blob - share/http/dialogs/main
begining of a VLM interface and some code organisations changes. The vlm
[vlc] / share / http / dialogs / main
1 <vlc id="if" param1="0" />
2 vim:syntax=html
3 <!--  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >
4 <  main: VLC media player web interface - main VLC controler
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
26 This dialog needs the following dialogs to be fully functional: input,
27 sout and playlist .
28 <vlc id="end" />
29
30 <div id="main" class="dialog" >
31   <div class="title">
32     VLC media player
33     <button id="btn_toggle_text" onclick="toggle_btn_text();">
34       <img src="images/help.png" alt="Help" />
35       Help
36     </button>
37   </div>
38   <div class="controls">
39     <button id="btn_open" onclick="toggle_show('input');" onmouseover="button_over(this);" onmouseout="button_out(this);">
40       <img src="images/eject.png" alt="Open" />
41       <span class="btn_text">Open</span>
42     </button>
43     &nbsp;
44     <button id="btn_stop" onclick="pl_stop();" onmouseover="button_over(this);" onmouseout="button_out(this);">
45       <img src="images/stop.png" alt="Stop" />
46       <span class="btn_text">Stop</span>
47     </button>
48     <!--<button id="btn_play" onclick="alert('FIXME');" onmouseover="button_over(this);" onmouseout="button_out(this);">
49       <img src="images/play.png" alt="Play" />
50       <span class="btn_text">Play</span>
51     </button>-->
52     <button id="btn_pause" onclick="pl_pause();" onmouseover="button_over(this);" onmouseout="button_out(this);">
53       <img src="images/pause.png" alt="Pause" id="btn_pause_img" />
54       <span class="btn_text">Pause</span>
55     </button>
56     &nbsp;
57     <button id="btn_previous" onclick="pl_previous();" onmouseover="button_over(this);" onmouseout="button_out(this);">
58       <img src="images/prev.png" alt="Previous" />
59       <span class="btn_text">Previous</span>
60     </button>
61     <button id="btn_next" onclick="pl_next();" onmouseover="button_over(this);" onmouseout="button_out(this);">
62       <img src="images/next.png" alt="Next" />
63       <span class="btn_text">Next</span>
64     </button>
65     &nbsp;
66     <button id="btn_sout" onclick="toggle_show('sout');" onmouseover="button_over(this);" onmouseout="button_out(this);">
67       <img src="images/sout.png" alt="Stream Output" />
68       <span class="btn_text">Stream Output</span>
69     </button>
70     <button id="btn_playlist" onclick="toggle_show('playlist');" onmouseover="button_over(this);" onmouseout="button_out(this);">
71       <img src="images/playlist.png" alt="Playlist" />
72       <span class="btn_text">Playlist</span>
73     </button>
74     &nbsp;
75     <button id="btn_fullscreen" onclick="fullscreen();" onmouseover="button_over(this);" onmouseout="button_out(this);">
76       <img src="images/fullscreen.png" alt="Fullscreen" />
77       <span class="btn_text">Fullscreen</span>
78     </button>
79     &nbsp;
80     <button id="btn_volume_down" onclick="volume_down();" onmouseover="button_over(this);" onmouseout="button_out(this);">
81       <img src="images/volume_down.png" alt="Decrease Volume" />
82       <span class="btn_text">Decrease Volume</span>
83     </button>
84     <button id="btn_volume_up" onclick="volume_up();" onmouseover="button_over(this);" onmouseout="button_out(this);">
85       <img src="images/volume_up.png" alt="Increase Volume" />
86       <span class="btn_text">Increase Volume</span>
87     </button>
88   </div>
89   <div id="status">
90     <span id="state">(?)</span>
91     -
92     Time : <span id="time">(?)</span>/<span id="length">(?)</span>
93     -
94     Volume : <span id="volume">(?)</span>
95     <br/>
96     <span id="nowplaying">(?)</span>
97   </div>
98 </div>