]> www.average.org Git - mkgallery.git/blobdiff - include/show.js
outline strategy on window resize
[mkgallery.git] / include / show.js
index 066485c88cb597534ac27ce26ce77e942384ff8e..a5f2abd5ddea8a5ac0e09e70f800416f76a767b3 100644 (file)
   - On "stop": if "playing" cancel autoswitch; break "playing".
   - On "start show": set up things; set "playing" state; show needed image.
   - On "stop show": cancel any schedules, hide things.
   - On "stop": if "playing" cancel autoswitch; break "playing".
   - On "start show": set up things; set "playing" state; show needed image.
   - On "stop show": cancel any schedules, hide things.
+  - On resize: recalculate existing image size and position; determine
+    what image is needed; if it is not the one on display then request
+    "show image" for the new image.
 */
 
 var Show = new Class({
 
        getOptions: function(){
                return {
 */
 
 var Show = new Class({
 
        getOptions: function(){
                return {
-                       onClick: $empty,
+                       cbStart: function(){ alert('show start undefined'); },
+                       cbExit: function(){ alert('show exit undefined'); },
                }
        },
 
                }
        },
 
@@ -59,6 +63,43 @@ var Show = new Class({
                alert('show.scroller called');
        },
 
                alert('show.scroller called');
        },
 
+       prev: function(){
+               this.controls.info(-1,this.vimgs.length,
+                               '<ref>','prev called');
+       },
+
+       stop: function(){
+               this.controls.info(0,this.vimgs.length,
+                               '<ref>','stop called');
+               this.controls.running(0);
+       },
+
+       play: function(){
+               this.controls.info(999,this.vimgs.length,
+                               '<ref>','play called');
+               this.controls.running(1);
+       },
+
+       next: function(){
+               this.controls.info(1,this.vimgs.length,
+                               '<ref>','next called');
+       },
+
+       start: function(id, play){
+               this.options.cbStart();
+               /* real job here */
+               return false; /* tao make it usable from href links */
+       },
+
+       exit: function(){
+               this.options.cbExit();
+       },
+
+       comm: function(){
+               alert('show.comm called, do nothing');
+       },
+
 });
 Show.implement(new Options);
 });
 Show.implement(new Options);
+Show.implement(new Events);