Web intf: new CSS and images for the updated interface

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Elminster2031 2011-06-20 11:54:00 +02:00 committed by Jean-Baptiste Kempf
parent cb8cd77566
commit 9e23147f48
22 changed files with 443 additions and 0 deletions

123
share/lua/http/css/main.css Normal file
View File

@ -0,0 +1,123 @@
root {
display: block;
}
body{
}
#mainContainer{
text-align: center;
width: 800px;
}
#controlContainer{
float: left;
width: 800px;
}
#libraryContainer{
width: 300px;
float: left;
}
#libraryTree{
height: 477px;
overflow:scroll;
white-space: nowrap;
text-align: left;
}
#viewContainer{
width: 500px;
float: left;
}
#mediaViewer{
min-height: 500px;
}
#player{
height: 500px;
width: 500px;
}
#seekSlider{
width: 90%;
}
#volumeSlider{
width: 100px;
display: inline-block;
margin-bottom: 20px;
}
#currentVolume{
display: inline-block;
margin-left: -70px;
}
#mediaTitle{
text-align: left;
}
#currentTime{
text-align: left;
}
#totalTime{
text-align: right;
}
#controlButtons{
text-align: left;
}
.button48{
width: 48px;
height: 48px;
margin: 5px 0px 5px 2px;
background: none;
border: none;
display: inline-block;
cursor: pointer;
}
.button{
cursor: pointer;
display: inline-block;
}
#buttonOpen{
background-image: url("../images/button_eject-48.png");
}
#buttonStop{
background-image: url("../images/button_stop-48.png");
}
#buttonPlay{
background-image: url("../images/button_play-48.png") ;
}
#buttonPause{
background-image: url("../images/button_pause-48.png") ;
}
#buttonPrev{
background-image: url("../images/button_first-48.png") ;
}
#buttonNext{
background-image: url("../images/button_last-48.png") ;
}
#buttonFull{
background-image: url("../images/button_full-48.png") ;
}
#buttonSout{
background-image: url("../images/button_stream-48.png") ;
}
#window_browse ol{
list-style-type: none;
}
#window_browse ol li{
list-style-type: none;
float: left;
padding: 5px;
}
.system_icon{
width:80px;
text-align:center;
vertical-align:top;
display: inline-block;
cursor: pointer;
padding: 2px;
border: 1px solid #823D0A;
margin: 2px;
height: 92px;
background-color: #E1E1E1;
overflow: hidden;
}
#window_create_stream table tr td{
font-size: 11px;
}
.footer{
text-align: center;
font-size: 11px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

View File

@ -0,0 +1,9 @@
function format_time( s ){
var hours = Math.floor(s/3600);
var minutes = Math.floor((s/60)%60);
var seconds = Math.floor(s%60);
hours = hours<10 ? "0"+hours : hours;
minutes = minutes<10 ? "0"+minutes : minutes;
seconds = seconds<10 ? "0"+seconds : seconds;
return hours+":"+minutes+":"+seconds;
}

View File

@ -0,0 +1,311 @@
var current_id = 1;
var currentArt = null;
var current_que = 'main';
function updateStatus(){
$.ajax({
url: 'requests/status.xml',
success: function(data,status,jqXHR){
if(current_que=='main'){
$('.dynamic').empty();
$('#mediaTitle').append($('[name="filename"]',data).text());
$('#totalTime').append(format_time($('length',data).text()));
$('#currentTime').append(format_time($('time',data).text()));
$('#seekSlider').slider({value: ($('time',data).text()/$('length',data).text()*100) })
$('#currentVolume').append(Math.round($('volume',data).text()/5.12)+'%');
$('#volumeSlider').slider({value: ($('volume',data).text()/5.12) });
$('#rateSlider').slider({value: ($('rate',data).text()) });
$('#currentRate').append(Math.round($('rate',data).text()*100)/100+'x');
$('#audioSlider').slider({value: ($('audiodelay',data).text()) });
$('#currentAudioDelay').append(Math.round($('audiodelay',data).text()*100)/100+'s');
$('#subtitleSlider').slider({value: ($('subtitledelay',data).text()) });
$('#currentSubtitleDelay').append(Math.round($('subtitledelay',data).text()*100)/100+'s');
$('#seekSlider').attr('totalLength',$('length',data).text());
$('#buttonPlay').attr('state',$('state',data).text());
if($('state',data).text()=='playing'){
$('#buttonPlay').css({
'background-image':'url("images/button_pause-48.png")'
});
}else{
$('#buttonPlay').css({
'background-image':'url("images/button_play-48.png")'
});
}
if($('random',data).text()=='true'){
$('#buttonShuffle').removeClass('ui-state-default');
$('#buttonShuffle').addClass('ui-state-active');
}else{
$('#buttonShuffle').addClass('ui-state-default');
$('#buttonShuffle').removeClass('ui-state-active');
}
if($('loop',data).text()=='true'){
$('#buttonLoop').removeClass('ui-state-default');
$('#buttonLoop').addClass('ui-state-active');
}else{
$('#buttonLoop').addClass('ui-state-default');
$('#buttonLoop').removeClass('ui-state-active');
}
if($('repeat',data).text()=='true'){
$('#buttonRepeat').removeClass('ui-state-default');
$('#buttonRepeat').addClass('ui-state-active');
}else{
$('#buttonRepeat').addClass('ui-state-default');
$('#buttonRepeat').removeClass('ui-state-active');
}
if($('[name="artwork_url"]',data).text()!=currentArt){
var tmp = new Date();
$('#albumArt').attr('src','/art?'+tmp.getTime());
currentArt = $('[name="artwork_url"]',data).text();
$('#albumArt').css({
'visibility':'visible',
'display':'none'
});
}else if($('[name="artwork_url"]',data).text()==""){
$('#albumArt').css({
'visibility':'hidden',
'display':'none'
});
}
setTimeout( updateStatus, 1000 );
}
},
error: function(jqXHR,status,error){
setTimeout( updateStatus, 500 );
}
});
}
function updatePlayList(){
$('#libraryTree').jstree('refresh',-1);
}
function sendCommand(params){
if(current_que=='stream'){
$.ajax({
url: 'requests/status.xml',
data: params,
success:function(data,status,jqXHR){
updateStatus();
updatePlayList();
}
});
}else{
$.ajax({
url: 'requests/status.xml',
data: params,
success:function(data,status,jqXHR){
updatePlayList();
}
});
}
}
function browse(dir){
dir = dir==undefined ? '~' : dir;
$.ajax({
url: 'requests/browse.xml',
data:'dir='+encodeURIComponent(dir),
success: function(data,status,jqXHR){
$('#browse_elements').empty();
$('element',data).each(function(){
if($(this).attr('type')=='dir' || $.inArray($(this).attr('name').substr(-3),video_types)!=-1 || $.inArray($(this).attr('name').substr(-3),audio_types)!=-1){
$('#browse_elements').append(createElementLi($(this).attr('name'),$(this).attr('type'),$(this).attr('path'),$(this).attr('name').substr(-3)));
}
});
$('[opendir]').dblclick(function(){
browse($(this).attr('opendir'));
});
$('[openfile]').dblclick(function(){
var tgt = browse_target.indexOf('__')==-1 ? browse_target : browse_target.substr(0,browse_target.indexOf('__'));
switch(tgt){
case '#stream_input':
$(browse_target).val($(this).attr('openfile'));
break;
case '#mosaic_open':
$('li',browse_target).remove();
$(browse_target).append(this);
$(this).css({
'margin-left' : -40,
'margin-top' : -46,
'float' : 'left'
});
break;
default:
sendCommand('command=in_play&input=file://'+encodeURIComponent($(this).attr('openfile')));
break;
}
$('#window_browse').dialog('close');
});
$('[selectable]').selectable();
},
error: function(jqXHR,status,error){
setTimeout('browse("'+dir+'")',1041);
}
});
}
function updateStreams(){
$.ajax({
url: 'requests/vlm.xml',
success:function(data,status,jqXHR){
$('#stream_info').accordion("destroy");
$('#stream_info').empty();
$('broadcast',data).each(function(){
var stream_div = $('#stream_status_').clone();
var name = $(this).attr('name');
var loop = $(this).attr('loop')=='yes';
var playing = $('instance',$(this)).attr('state')=='playing';
var file = $('input',$(this)).text();
var output = $('output',$(this)).text();
var time = isNaN(Math.round($('instance',$(this)).attr('time')/1000000)) ? 0 : Math.round($('instance',$(this)).attr('time')/1000000);
var length = isNaN(Math.round($('instance',$(this)).attr('length')/1000000)) ? 0 : Math.round($('instance',$(this)).attr('length')/1000000);
$('[id]',stream_div).each(function(){
$(this).attr('id',$(this).attr('id')+name);
});
$(stream_div).attr('id',$(stream_div).attr('id')+name);
$('#stream_title_'+name,stream_div).append(name);
$('#stream_file_'+name,stream_div).append(file);
$('#stream_pos_'+name,stream_div).slider({
value: 0,
range: "min",
min: 0,
slide: function( event, ui ) {
$( "#stream_current_time_"+name,stream_div ).empty();
$( "#stream_current_time_"+name,stream_div ).append( format_time(ui.value) );
$( "#stream_total_time_"+name,stream_div ).empty();
$( "#stream_total_time_"+name,stream_div ).append( format_time($('#stream_pos_'+name,stream_div).slider('option','max')) );
sendVLMCmd('control '+name+' seek '+Math.round(ui.value/$('#stream_pos_'+name,stream_div).slider('option','max')*100));
},
change: function(event, ui){
$( "#stream_current_time_"+name,stream_div ).empty();
$( "#stream_current_time_"+name,stream_div ).append( format_time(ui.value) );
$( "#stream_total_time_"+name,stream_div ).empty();
$( "#stream_total_time_"+name,stream_div ).append( format_time($('#stream_pos_'+name,stream_div).slider('option','max')) );
}
});
$('#button_stream_stop_'+name,stream_div).click(function(){
sendVLMCmd('control '+name+' stop');
return false;
});
$('#button_stream_play_'+name,stream_div).click(function(){
if($('span',this).hasClass('ui-icon-pause')){
sendVLMCmd('control '+name+' pause');
}else{
sendVLMCmd('control '+name+' play');
}
});
$('#button_stream_loop_'+name,stream_div).click(function(){
if(loop){
sendVLMCmd('setup '+name+' unloop');
}else{
sendVLMCmd('setup '+name+' loop');
}
});
$('#button_stream_delete_'+name,stream_div).click(function(){
sendVLMCmd('del '+name);
});
$('#stream_pos_'+name,stream_div).slider({
max: length,
value: time
});
if(playing){
$('span',$('#button_stream_play_'+name,stream_div)).removeClass('ui-icon-play');
$('span',$('#button_stream_play_'+name,stream_div)).addClass('ui-icon-pause');
}
if(loop){
$('#button_stream_loop_'+name,stream_div).addClass('ui-state-active');
}
$(stream_div).css({
'visibility':'',
'display':''
});
$('#stream_info').append(stream_div);
});
$('.button').hover(
function() { $(this).addClass('ui-state-hover'); },
function() { $(this).removeClass('ui-state-hover'); }
);
$('#stream_info').accordion({
header: "h3",
collapsible: true,
autoHeight: true
});
if(current_que=='stream'){
$('.dynamic').empty();
$('#mediaTitle').append($('[name="Current"] input',data).text());
$('#totalTime').append(format_time(isNaN($('[name="Current"] instance',data).attr('length')) ? 0 : $('[name="Current"] instance',data).attr('length')/1000000));
$('#currentTime').append(format_time(isNaN($('[name="Current"] instance',data).attr('time')) ? 0 : $('[name="Current"] instance',data).attr('time')/1000000));
$('#seekSlider').slider({value: (($('[name="Current"] instance',data).attr('time')/1000000)/($('[name="Current"] instance',data).attr('length')/1000000)*100) });
$('#seekSlider').attr('totalLength',$('[name="Current"] instance',data).attr('length')/1000000);
$('#buttonPlay').attr('state',$('[name="Current"] instance',data).length>0 ? $('[name="Current"] instance',data).attr('state') : 'stopped');
if($('[name="Current"] instance',data).attr('state')=='playing'){
$('#buttonPlay').css({
'background-image':'url("images/button_pause-48.png'
});
}else{
$('#buttonPlay').css({
'background-image':'url("images/button_play-48.png'
});
}
setTimeout( updateStreams, 1000 );
}
}
});
}
function sendVLMCmd(command){
var commands = command.split(';');
if(commands.length>1){
sendBatchVLMCmd(command);
}else{
if(current_que=='main'){
$.ajax({
url: 'requests/vlm_cmd.xml',
data: 'command='+encodeURIComponent(command),
success: function(data,status,jqXHR){
updateStreams();
}
});
}else{
$.ajax({
url: 'requests/vlm_cmd.xml',
data: 'command='+encodeURIComponent(command)
});
}
}
}
function sendBatchVLMCmd(command){
var commands = command.split(';');
$.ajax({
url: 'requests/vlm_cmd.xml',
data: 'command='+encodeURIComponent(commands.shift()),
success:function(data,status,jqXHR){
sendVLMCmd(commands.join(';'));
}
});
}
$(function(){
$('#libraryTree').jstree({
"xml_data":{
"ajax":{
"url" : "requests/playlist.xml"
},
"xsl" : "nest"
},
"themeroller":{
"item_leaf":"ui-icon-video"
},
"plugins" : ["xml_data","ui","themeroller"]
}).bind("loaded.jstree", function (event, data) {
$('[current]','[id^="plid_"]').each(function(){
$(this).addClass('ui-state-highlight');
current_id = $(this).attr('id').substr(5);
});
}).bind("refresh.jstree",function(event,data){
$('[current]','[id^="plid_"]').each(function(){
$(this).addClass('ui-state-highlight');
current_id = $(this).attr('id').substr(5);
});
});
updateStatus();
updateStreams();
});