X-Git-Url: http://www.average.org/gitweb/?p=mkgallery.git;a=blobdiff_plain;f=include%2Fshow.js;h=a614c344b378f4e173125ce566d3884949e0c9d1;hp=066485c88cb597534ac27ce26ce77e942384ff8e;hb=bf4ffba811821b98c05460149d8bf2d8cc807a29;hpb=af2f2275168124e103af685035fafdc0755d45be diff --git a/include/show.js b/include/show.js index 066485c..a614c34 100644 --- a/include/show.js +++ b/include/show.js @@ -30,13 +30,17 @@ - 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 { - onClick: $empty, + cbStart: function(){ alert('show start undefined'); }, + cbExit: function(){ alert('show exit undefined'); }, } }, @@ -48,17 +52,58 @@ var Show = new Class({ this.controls.registershow(this); window.addEvent('resize', this.resizer.bind(this)) - window.addEvent('scroll', this.scroller.bind(this)) }, + /* event handler for window resize */ + resizer: function(){ alert('show.resizer called'); }, - scroller: function(){ - alert('show.scroller called'); + /* prev, play, stop, next, exit, comm are methods for button presses */ + + prev: function(){ + this.controls.info(-1,this.vimgs.length, + '','prev called'); + }, + + stop: function(){ + this.controls.info(0,this.vimgs.length, + '','stop called'); + this.controls.running(0); + }, + + play: function(){ + this.controls.info(999,this.vimgs.length, + '','play called'); + this.controls.running(1); + }, + + next: function(){ + this.controls.info(1,this.vimgs.length, + '','next called'); }, + exit: function(){ + this.options.cbExit(); + }, + + comm: function(){ + /* alert('show.comm called, do nothing'); */ + }, + + /* Entry point: called to start doing things */ + + start: function(id, play){ + this.options.cbStart(); + alert('starting at '+id+', play='+play); + /* real job here */ + return false; /* to make it usable from href links */ + }, + + /* "Private" methods to do the real job */ + }); Show.implement(new Options); +Show.implement(new Events);