X-Git-Url: http://www.average.org/gitweb/?p=mkgallery.git;a=blobdiff_plain;f=include%2Fshow.js;h=427cb38a834fc0fec1887cf59035b7b35fbc1b58;hp=cdd6af07129873c243fa4c6fa5d963c8e14f864c;hb=f8281d2d6eaaa20f2c65d9753a2870df1310fd1a;hpb=a84dd4b65779d3d35693db3f1d732505cb933938 diff --git a/include/show.js b/include/show.js index cdd6af0..427cb38 100644 --- a/include/show.js +++ b/include/show.js @@ -1,4 +1,6 @@ /* + $Id$ + This is a part of mkgallery.pl suite http://www.average.org/mkgallery/ @@ -35,6 +37,7 @@ var Show = new Class({ getOptions: function(){ return { onClick: $empty, + exit: function(){ alert('show exit undefined'); }, } }, @@ -57,6 +60,37 @@ var Show = new Class({ alert('show.scroller called'); }, + 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.exit(); + }, + + comm: function(){ + alert('show.comm called, do nothing'); + }, + }); Show.implement(new Options); +Show.implement(new Events);