1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
- Available via Academic Free License >= 2.1 OR the modified BSD license.
- see: http://dojotoolkit.org/license for details
- */
- if(!dojo._hasResource["dojox.sketch.Slider"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
- dojo._hasResource["dojox.sketch.Slider"] = true;
- dojo.provide("dojox.sketch.Slider");
- dojo.require("dijit.form.HorizontalSlider");
- dojo.declare("dojox.sketch.Slider",dojox.sketch._Plugin,{
- _initButton: function(){
- this.slider=new dijit.form.HorizontalSlider({minimum:5,maximum:100,style:"width:100px;",baseClass:'dijitInline dijitSlider'});
- this.slider._movable.node.title='Double Click to "Zoom to Fit"'; //I18N
- this.connect(this.slider,'onChange','_setZoom');
- this.connect(this.slider.sliderHandle,'ondblclick','_zoomToFit');
- },
- _zoomToFit: function(){
- var r=this.figure.getFit();
- this.slider.attr('value',this.slider.maximum<r?this.slider.maximum:(this.slider.minimum>r?this.slider.minimum:r));
- },
- _setZoom: function(v){
- if(v && this.figure){
- this.figure.zoom(v);
- }
- },
- reset: function(){
- //reset slider to maximum so that onChange will be fired when _zoomToFit is called
- this.slider.attr('value',this.slider.maximum);
- this._zoomToFit();
- },
- setToolbar: function(t){
- this._initButton();
- t.addChild(this.slider);
- if(!t._reset2Zoom){
- t._reset2Zoom=true;
- this.connect(t,'reset','reset');
- }
- }
- });
- dojox.sketch.registerTool("Slider", dojox.sketch.Slider);
- }
|