summaryrefslogtreecommitdiff
path: root/js/dojo/dojox/sketch/Slider.js
blob: 4c4b433d71d8dcacd859470d4c4f4313acc75dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//>>built
define("dojox/sketch/Slider", [
	"dojo/_base/kernel",
	"dojo/_base/lang",
	"dojo/_base/declare",
	"dijit/form/HorizontalSlider",
	"./_Plugin"
], function(dojo){
	dojo.getObject("sketch", true, dojox);
	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);
	return dojox.sketch.Slider;
});