]> jspc29.x-matter.uni-frankfurt.de Git - labtools.git/commitdiff
add arrow keys to select pictures to show to all in presenter
authorJan Michel <j.michel@gsi.de>
Sat, 9 Jul 2016 13:03:33 +0000 (15:03 +0200)
committerJan Michel <j.michel@gsi.de>
Sat, 9 Jul 2016 13:03:52 +0000 (15:03 +0200)
presenter/scripts.js
presenter/showroom.pl
presenter/style.css

index 5b2cafad6d9aa993651899d0be2457dc0ade4c37..720d97d6707946e8e9e7afa61cb2c94aaec7226b 100644 (file)
@@ -39,6 +39,25 @@ function present(f) {
     alert("Select a file to show!");
     }
   }
+  
+function presentNext(d) {
+  if(d==40) d=1;
+  else if(d==38) d=-1;
+  else return true;
+  current = currentPic.split(',',1);
+  for(i=0;i<document.getElementById('filelist').children.length;i++){
+    if (document.getElementById('filelist').children[i].getAttribute('value') == current[0]) {
+      break;
+      }
+    }  
+  f = '';
+  if(document.getElementById('filelist').children[i+d]) {
+    f = document.getElementById('filelist').children[i+d].getAttribute('value');
+    }
+  if(f != "") {
+    getData("showPic.pl?img="+f+"&room="+currentRoom+'&posx=-1&posy=-1');
+    }  
+  }
 
 function deletePic(f) {
   if(f != "") {
@@ -71,6 +90,10 @@ function updatepresentation(t) {
       }
     else { x=0;y=0; }  
     document.getElementById("content").innerHTML = '<img id="screen" onClick="pointer(event);" src="store/'+currentRoom+'/'+i[0]+'"><div id="pointer" style="left:'+x+'px;top:'+y+'px;">&nbsp;</div>';
+    
+    c = currentPic.split(',',1);
+    document.getElementById('current').innerHTML = "Current: "+c[0];
+
     }
   setTimeout('getData("getPic.pl?old='+t+'&room='+currentRoom+'",null,updatepresentation)',1000);  
   }
index 2fc030b1ccac627dcf931c068019d1b96ed0b778..1cc9b3255a64d4ad0f40abd65b3dd6ac8d2ca2e0 100755 (executable)
@@ -25,7 +25,7 @@ print <<HDOC;
  <script src="scripts.js" type="text/javascript"></script>
  <meta  charset="UTF-8"/>
 </head>
-<body id="showroom" room="$room">
+<body id="showroom" room="$room" onKeyup="presentNext(event.keyCode)">
 HDOC
 print <<HDOC;
 <div id="content">Remote Presenter<br>&lt;-- Click to show or just watch!</div>
@@ -41,8 +41,7 @@ Select a file and press upload.
 <button type="button" onClick="window.open('store/$room/'+document.getElementById('filelist').value)">Show 2 Me</button>
 <button type="button" onClick="present(document.getElementById('filelist').value)">Show 2 All</button>
 <button type="button" onClick="deletePic(document.getElementById('filelist').value)">Delete</button>
-<div id="preview"></div>
-
+<div id="current"></div><div id="preview"></div>
 </body></html>
 HDOC
   
index f4981158654a621cb3d6610f73192cdd7270e98a..66585e010272a87feda4bc1494fe6750908c48b0 100644 (file)
@@ -2,6 +2,7 @@ html {
   height:100%;
   margin:0;
   padding:0;
+  font-size:9pt;
 }
 
 
@@ -115,3 +116,4 @@ h1 {
   text-align:center;
   background:white;
   }
+