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

  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: main 14784 2006-03-17 23:13:47Z 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.  
  22. This dialog needs the following dialogs to be fully functional: input,
  23. sout and playlist .
  24. <vlc id="end" />
  25.  
  26. <div id="main" class="dialog" >
  27.   <div class="title">
  28.     VLC media player
  29.     <button id="btn_toggle_text" onclick="toggle_btn_text();" title="Help" >
  30.       <img src="images/help.png" alt="Help" />
  31.       Help
  32.     </button>
  33.   </div>
  34.   <div class="controls">
  35.     <button id="btn_open" onclick="toggle_show('input');" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Open" >
  36.       <img src="images/eject.png" alt="Open" />
  37.       <span class="btn_text">Open</span>
  38.     </button>
  39.      
  40.     <button id="btn_stop" onclick="pl_stop();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Stop" >
  41.       <img src="images/stop.png" alt="Stop" />
  42.       <span class="btn_text">Stop</span>
  43.     </button>
  44.     <!--<button id="btn_play" onclick="alert('FIXME');" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Play" >
  45.       <img src="images/play.png" alt="Play" />
  46.       <span class="btn_text">Play</span>
  47.     </button>-->
  48.     <button id="btn_pause" onclick="pl_pause();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Pause" >
  49.       <img src="images/pause.png" alt="Pause" id="btn_pause_img" />
  50.       <span class="btn_text">Pause</span>
  51.     </button>
  52.      
  53.     <button id="btn_previous" onclick="pl_previous();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Previous" >
  54.       <img src="images/prev.png" alt="Previous" />
  55.       <span class="btn_text">Previous</span>
  56.     </button>
  57.     <button id="btn_next" onclick="pl_next();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Next" >
  58.       <img src="images/next.png" alt="Next" />
  59.       <span class="btn_text">Next</span>
  60.     </button>
  61.      
  62.     <button id="btn_sout" onclick="toggle_show('sout');" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Stream Output" >
  63.       <img src="images/sout.png" alt="Stream Output" />
  64.       <span class="btn_text">Stream Output</span>
  65.     </button>
  66.     <button id="btn_playlist" onclick="toggle_show('playlist');" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Playlist" >
  67.       <img src="images/playlist.png" alt="Playlist" />
  68.       <span class="btn_text">Playlist</span>
  69.     </button>
  70.     <button id="btn_info" onclick="toggle_show('info');" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Info" >
  71.       <img src="images/info.png" alt="Info" />
  72.       <span class="btn_text">Info</span>
  73.     </button>
  74.      
  75.     <button id="btn_fullscreen" onclick="fullscreen();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Fullscreen" >
  76.       <img src="images/fullscreen.png" alt="Fullscreen" />
  77.       <span class="btn_text">Fullscreen</span>
  78.     </button>
  79.      
  80.     <button id="btn_volume_down" onclick="volume_down();" onmouseover="button_over(this);" onmouseout="button_out(this);" title="Decrease Volume" >
  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);" title="Increase Volume" >
  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.     <!-- progress bar -->
  97.     <img src="images/slider_left.png" alt="slider left" /><span id="progressbar" style="background-image: url( 'images/slider_bar.png' ); width: 408px; height:16px; position:absolute;" onclick="slider_seek( event, this );" onmousemove="slider_move( event, this );"><img src="images/slider_point.png" alt="slider point" style="position:relative; left:0px;" id="main_slider_point" onmousedown="slider_down( event, this );" onmouseup="slider_up( event, this.parentNode );" onmouseout="slider_up( event, this.parentNode );"/></span><img src="images/slider_right.png" alt="slider right" style="position:relative;left:408px;" />
  98.     <br/>
  99.     <span id="nowplaying">(?)</span>
  100.   </div>
  101. </div>
  102.  
  103. <div id="info" class="dialog" style="display: none;" >
  104.   <div class="title">
  105.     Stream and media info
  106.     <img class="close" src="images/white_cross_small.png" alt="Close" onclick="hide('info');"/>
  107.   </div>
  108.   <div id="infotree">
  109.   </div>
  110. </div>
  111.