2 Copyright (c) 2009, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
8 * The Slider component is a UI control that enables the user to adjust
9 * values in a finite range along one or two axes. Typically, the Slider
10 * control is used in a web application as a rich, visual replacement
11 * for an input box that takes a number as input. The Slider control can
12 * also easily accommodate a second dimension, providing x,y output for
13 * a selection point chosen from a rectangular region.
16 * @title Slider Widget
17 * @namespace YAHOO.widget
18 * @requires yahoo,dom,dragdrop,event
23 var getXY = YAHOO.util.Dom.getXY,
24 Event = YAHOO.util.Event,
25 _AS = Array.prototype.slice;
28 * A DragDrop implementation that can be used as a background for a
29 * slider. It takes a reference to the thumb instance
30 * so it can delegate some of the events to it. The goal is to make the
31 * thumb jump to the location on the background when the background is
35 * @extends YAHOO.util.DragDrop
36 * @uses YAHOO.util.EventProvider
38 * @param {String} id The id of the element linked to this instance
39 * @param {String} sGroup The group of related DragDrop items
40 * @param {SliderThumb} oThumb The thumb for this slider
41 * @param {String} sType The type of slider (horiz, vert, region)
43 function Slider(sElementId, sGroup, oThumb, sType) {
45 Slider.ANIM_AVAIL = (!YAHOO.lang.isUndefined(YAHOO.util.Anim));
48 this.init(sElementId, sGroup, true);
49 this.initSlider(sType);
50 this.initThumb(oThumb);
54 YAHOO.lang.augmentObject(Slider,{
56 * Factory method for creating a horizontal slider
57 * @method YAHOO.widget.Slider.getHorizSlider
59 * @param {String} sBGElId the id of the slider's background element
60 * @param {String} sHandleElId the id of the thumb element
61 * @param {int} iLeft the number of pixels the element can move left
62 * @param {int} iRight the number of pixels the element can move right
63 * @param {int} iTickSize optional parameter for specifying that the element
64 * should move a certain number pixels at a time.
65 * @return {Slider} a horizontal slider control
68 function (sBGElId, sHandleElId, iLeft, iRight, iTickSize) {
69 return new Slider(sBGElId, sBGElId,
70 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId,
71 iLeft, iRight, 0, 0, iTickSize), "horiz");
75 * Factory method for creating a vertical slider
76 * @method YAHOO.widget.Slider.getVertSlider
78 * @param {String} sBGElId the id of the slider's background element
79 * @param {String} sHandleElId the id of the thumb element
80 * @param {int} iUp the number of pixels the element can move up
81 * @param {int} iDown the number of pixels the element can move down
82 * @param {int} iTickSize optional parameter for specifying that the element
83 * should move a certain number pixels at a time.
84 * @return {Slider} a vertical slider control
87 function (sBGElId, sHandleElId, iUp, iDown, iTickSize) {
88 return new Slider(sBGElId, sBGElId,
89 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 0, 0,
90 iUp, iDown, iTickSize), "vert");
94 * Factory method for creating a slider region like the one in the color
96 * @method YAHOO.widget.Slider.getSliderRegion
98 * @param {String} sBGElId the id of the slider's background element
99 * @param {String} sHandleElId the id of the thumb element
100 * @param {int} iLeft the number of pixels the element can move left
101 * @param {int} iRight the number of pixels the element can move right
102 * @param {int} iUp the number of pixels the element can move up
103 * @param {int} iDown the number of pixels the element can move down
104 * @param {int} iTickSize optional parameter for specifying that the element
105 * should move a certain number pixels at a time.
106 * @return {Slider} a slider region control
109 function (sBGElId, sHandleElId, iLeft, iRight, iUp, iDown, iTickSize) {
110 return new Slider(sBGElId, sBGElId,
111 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, iLeft, iRight,
112 iUp, iDown, iTickSize), "region");
116 * Constant for valueChangeSource, indicating that the user clicked or
117 * dragged the slider to change the value.
118 * @property Slider.SOURCE_UI_EVENT
126 * Constant for valueChangeSource, indicating that the value was altered
127 * by a programmatic call to setValue/setRegionValue.
128 * @property Slider.SOURCE_SET_VALUE
133 SOURCE_SET_VALUE : 2,
136 * Constant for valueChangeSource, indicating that the value was altered
137 * by hitting any of the supported keyboard characters.
138 * @property Slider.SOURCE_KEY_EVENT
143 SOURCE_KEY_EVENT : 3,
146 * By default, animation is available if the animation utility is detected.
147 * @property Slider.ANIM_AVAIL
154 YAHOO.extend(Slider, YAHOO.util.DragDrop, {
157 * Tracks the state of the mouse button to aid in when events are fired.
159 * @property _mouseDown
167 * Override the default setting of dragOnly to true.
175 * Initializes the slider. Executed in the constructor
177 * @param {string} sType the type of slider (horiz, vert, region)
179 initSlider: function(sType) {
182 * The type of the slider (horiz, vert, region)
188 //this.removeInvalidHandleType("A");
190 this.logger = new YAHOO.widget.LogWriter(this.toString());
193 * Event the fires when the value of the control changes. If
194 * the control is animated the event will fire every point
197 * @param {int} newOffset|x the new offset for normal sliders, or the new
198 * x offset for region sliders
199 * @param {int} y the number of pixels the thumb has moved on the y axis
200 * (region sliders only)
202 this.createEvent("change", this);
205 * Event that fires at the beginning of a slider thumb move.
208 this.createEvent("slideStart", this);
211 * Event that fires at the end of a slider thumb move
214 this.createEvent("slideEnd", this);
217 * Overrides the isTarget property in YAHOO.util.DragDrop
221 this.isTarget = false;
224 * Flag that determines if the thumb will animate when moved
228 this.animate = Slider.ANIM_AVAIL;
231 * Set to false to disable a background click thumb move
232 * @property backgroundEnabled
235 this.backgroundEnabled = true;
238 * Adjustment factor for tick animation, the more ticks, the
239 * faster the animation (by default)
240 * @property tickPause
246 * Enables the arrow, home and end keys, defaults to true.
247 * @property enableKeys
250 this.enableKeys = true;
253 * Specifies the number of pixels the arrow keys will move the slider.
255 * @property keyIncrement
258 this.keyIncrement = 20;
261 * moveComplete is set to true when the slider has moved to its final
262 * destination. For animated slider, this value can be checked in
263 * the onChange handler to make it possible to execute logic only
264 * when the move is complete rather than at all points along the way.
265 * Deprecated because this flag is only useful when the background is
266 * clicked and the slider is animated. If the user drags the thumb,
267 * the flag is updated when the drag is over ... the final onDrag event
268 * fires before the mouseup the ends the drag, so the implementer will
271 * @property moveComplete
273 * @deprecated use the slideEnd event instead
275 this.moveComplete = true;
278 * If animation is configured, specifies the length of the animation
280 * @property animationDuration
284 this.animationDuration = 0.2;
287 * Constant for valueChangeSource, indicating that the user clicked or
288 * dragged the slider to change the value.
289 * @property SOURCE_UI_EVENT
292 * @deprecated use static Slider.SOURCE_UI_EVENT
294 this.SOURCE_UI_EVENT = 1;
297 * Constant for valueChangeSource, indicating that the value was altered
298 * by a programmatic call to setValue/setRegionValue.
299 * @property SOURCE_SET_VALUE
302 * @deprecated use static Slider.SOURCE_SET_VALUE
304 this.SOURCE_SET_VALUE = 2;
307 * When the slider value changes, this property is set to identify where
308 * the update came from. This will be either 1, meaning the slider was
309 * clicked or dragged, or 2, meaning that it was set via a setValue() call.
310 * This can be used within event handlers to apply some of the logic only
311 * when dealing with one source or another.
312 * @property valueChangeSource
316 this.valueChangeSource = 0;
319 * Indicates whether or not events will be supressed for the current
325 this._silent = false;
328 * Saved offset used to protect against NaN problems when slider is
329 * set to display:none
330 * @property lastOffset
333 this.lastOffset = [0,0];
337 * Initializes the slider's thumb. Executed in the constructor.
339 * @param {YAHOO.widget.SliderThumb} t the slider thumb
341 initThumb: function(t) {
346 * A YAHOO.widget.SliderThumb instance that we will use to
347 * reposition the thumb when the background is clicked
349 * @type YAHOO.widget.SliderThumb
353 t.cacheBetweenDrags = true;
355 if (t._isHoriz && t.xTicks && t.xTicks.length) {
356 this.tickPause = Math.round(360 / t.xTicks.length);
357 } else if (t.yTicks && t.yTicks.length) {
358 this.tickPause = Math.round(360 / t.yTicks.length);
361 this.logger.log("tickPause: " + this.tickPause);
363 // delegate thumb methods
364 t.onAvailable = function() {
365 return self.setStartSliderState();
367 t.onMouseDown = function () {
368 self._mouseDown = true;
369 self.logger.log('thumb mousedown');
372 t.startDrag = function() {
373 self.logger.log('thumb startDrag');
376 t.onDrag = function() {
377 self.logger.log('thumb drag');
378 self.fireEvents(true);
380 t.onMouseUp = function() {
387 * Executed when the slider element is available
388 * @method onAvailable
390 onAvailable: function() {
391 this._bindKeyEvents();
395 * Sets up the listeners for keydown and key press events.
397 * @method _bindKeyEvents
400 _bindKeyEvents : function () {
401 Event.on(this.id, "keydown", this.handleKeyDown, this, true);
402 Event.on(this.id, "keypress", this.handleKeyPress, this, true);
406 * Executed when a keypress event happens with the control focused.
407 * Prevents the default behavior for navigation keys. The actual
408 * logic for moving the slider thumb in response to a key event
409 * happens in handleKeyDown.
410 * @param {Event} e the keypress event
412 handleKeyPress: function(e) {
413 if (this.enableKeys) {
414 var kc = Event.getCharCode(e);
423 Event.preventDefault(e);
431 * Executed when a keydown event happens with the control focused.
432 * Updates the slider value and display when the keypress is an
433 * arrow key, home, or end as long as enableKeys is set to true.
434 * @param {Event} e the keydown event
436 handleKeyDown: function(e) {
437 if (this.enableKeys) {
438 var kc = Event.getCharCode(e),
440 h = this.getXValue(),
441 v = this.getYValue(),
447 case 0x25: h -= this.keyIncrement; break;
450 case 0x26: v -= this.keyIncrement; break;
453 case 0x27: h += this.keyIncrement; break;
456 case 0x28: v += this.keyIncrement; break;
459 case 0x24: h = t.leftConstraint;
464 case 0x23: h = t.rightConstraint;
465 v = t.bottomConstraint;
468 default: changeValue = false;
473 this._setRegionValue(Slider.SOURCE_KEY_EVENT, h, v, true);
475 this._setValue(Slider.SOURCE_KEY_EVENT,
476 (t._isHoriz ? h : v), true);
485 * Initialization that sets up the value offsets once the elements are ready
486 * @method setStartSliderState
488 setStartSliderState: function() {
490 this.logger.log("Fixing state");
492 this.setThumbCenterPoint();
495 * The basline position of the background element, used
496 * to determine if the background has moved since the last
498 * @property baselinePos
501 this.baselinePos = getXY(this.getEl());
503 this.thumb.startOffset = this.thumb.getOffsetFromParent(this.baselinePos);
505 if (this.thumb._isRegion) {
506 if (this.deferredSetRegionValue) {
507 this._setRegionValue.apply(this, this.deferredSetRegionValue);
508 this.deferredSetRegionValue = null;
510 this.setRegionValue(0, 0, true, true, true);
513 if (this.deferredSetValue) {
514 this._setValue.apply(this, this.deferredSetValue);
515 this.deferredSetValue = null;
517 this.setValue(0, true, true, true);
523 * When the thumb is available, we cache the centerpoint of the element so
524 * we can position the element correctly when the background is clicked
525 * @method setThumbCenterPoint
527 setThumbCenterPoint: function() {
529 var el = this.thumb.getEl();
533 * The center of the slider element is stored so we can
534 * place it in the correct position when the background is clicked.
535 * @property thumbCenterPoint
536 * @type {"x": int, "y": int}
538 this.thumbCenterPoint = {
539 x: parseInt(el.offsetWidth/2, 10),
540 y: parseInt(el.offsetHeight/2, 10)
547 * Locks the slider, overrides YAHOO.util.DragDrop
551 this.logger.log("locking");
557 * Unlocks the slider, overrides YAHOO.util.DragDrop
561 this.logger.log("unlocking");
567 * Handles mouseup event on the thumb
568 * @method thumbMouseUp
571 thumbMouseUp: function() {
572 this._mouseDown = false;
573 this.logger.log("thumb mouseup");
574 if (!this.isLocked() && !this.moveComplete) {
580 onMouseUp: function() {
581 this._mouseDown = false;
582 this.logger.log("background mouseup");
583 if (this.backgroundEnabled && !this.isLocked() && !this.moveComplete) {
589 * Returns a reference to this slider's thumb
591 * @return {SliderThumb} this slider's thumb
593 getThumb: function() {
598 * Try to focus the element when clicked so we can add
599 * accessibility features
604 this.logger.log("focus");
605 this.valueChangeSource = Slider.SOURCE_UI_EVENT;
607 // Focus the background element if possible
608 var el = this.getEl();
614 // Prevent permission denied unhandled exception in FF that can
615 // happen when setting focus while another element is handling
616 // the blur. @TODO this is still writing to the error log
617 // (unhandled error) in FF1.5 with strict error checking on.
623 return !this.isLocked();
627 * Event that fires when the value of the slider has changed
629 * @param {int} firstOffset the number of pixels the thumb has moved
630 * from its start position. Normal horizontal and vertical sliders will only
631 * have the firstOffset. Regions will have both, the first is the horizontal
632 * offset, the second the vertical.
633 * @param {int} secondOffset the y offset for region sliders
634 * @deprecated use instance.subscribe("change") instead
636 onChange: function (firstOffset, secondOffset) {
638 this.logger.log("onChange: " + firstOffset + ", " + secondOffset);
642 * Event that fires when the at the beginning of the slider thumb move
643 * @method onSlideStart
644 * @deprecated use instance.subscribe("slideStart") instead
646 onSlideStart: function () {
648 this.logger.log("onSlideStart");
652 * Event that fires at the end of a slider thumb move
653 * @method onSliderEnd
654 * @deprecated use instance.subscribe("slideEnd") instead
656 onSlideEnd: function () {
658 this.logger.log("onSlideEnd");
662 * Returns the slider's thumb offset from the start position
664 * @return {int} the current value
666 getValue: function () {
667 return this.thumb.getValue();
671 * Returns the slider's thumb X offset from the start position
673 * @return {int} the current horizontal offset
675 getXValue: function () {
676 return this.thumb.getXValue();
680 * Returns the slider's thumb Y offset from the start position
682 * @return {int} the current vertical offset
684 getYValue: function () {
685 return this.thumb.getYValue();
689 * Provides a way to set the value of the slider in code.
692 * @param {int} newOffset the number of pixels the thumb should be
693 * positioned away from the initial start point
694 * @param {boolean} skipAnim set to true to disable the animation
695 * for this move action (but not others).
696 * @param {boolean} force ignore the locked setting and set value anyway
697 * @param {boolean} silent when true, do not fire events
698 * @return {boolean} true if the move was performed, false if it failed
700 setValue: function() {
701 var args = _AS.call(arguments);
702 args.unshift(Slider.SOURCE_SET_VALUE);
703 return this._setValue.apply(this,args);
707 * Worker function to execute the value set operation. Accepts type of
708 * set operation in addition to the usual setValue params.
711 * @param source {int} what triggered the set (e.g. Slider.SOURCE_SET_VALUE)
712 * @param {int} newOffset the number of pixels the thumb should be
713 * positioned away from the initial start point
714 * @param {boolean} skipAnim set to true to disable the animation
715 * for this move action (but not others).
716 * @param {boolean} force ignore the locked setting and set value anyway
717 * @param {boolean} silent when true, do not fire events
718 * @return {boolean} true if the move was performed, false if it failed
721 _setValue: function(source, newOffset, skipAnim, force, silent) {
722 var t = this.thumb, newX, newY;
725 this.logger.log("defer setValue until after onAvailble");
726 this.deferredSetValue = arguments;
730 if (this.isLocked() && !force) {
731 this.logger.log("Can't set the value, the control is locked");
735 if ( isNaN(newOffset) ) {
736 this.logger.log("setValue, Illegal argument: " + newOffset);
741 this.logger.log("Call to setValue for region Slider ignored. Use setRegionValue","warn");
745 this.logger.log("setValue " + newOffset);
747 this._silent = silent;
748 this.valueChangeSource = source || Slider.SOURCE_SET_VALUE;
750 t.lastOffset = [newOffset, newOffset];
751 this.verifyOffset(true);
756 newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
757 this.moveThumb(newX, t.initPageY, skipAnim);
759 newY = t.initPageY + newOffset + this.thumbCenterPoint.y;
760 this.moveThumb(t.initPageX, newY, skipAnim);
767 * Provides a way to set the value of the region slider in code.
768 * @method setRegionValue
769 * @param {int} newOffset the number of pixels the thumb should be
770 * positioned away from the initial start point (x axis for region)
771 * @param {int} newOffset2 the number of pixels the thumb should be
772 * positioned away from the initial start point (y axis for region)
773 * @param {boolean} skipAnim set to true to disable the animation
774 * for this move action (but not others).
775 * @param {boolean} force ignore the locked setting and set value anyway
776 * @param {boolean} silent when true, do not fire events
777 * @return {boolean} true if the move was performed, false if it failed
779 setRegionValue : function () {
780 var args = _AS.call(arguments);
781 args.unshift(Slider.SOURCE_SET_VALUE);
782 return this._setRegionValue.apply(this,args);
786 * Worker function to execute the value set operation. Accepts type of
787 * set operation in addition to the usual setValue params.
789 * @method _setRegionValue
790 * @param source {int} what triggered the set (e.g. Slider.SOURCE_SET_VALUE)
791 * @param {int} newOffset the number of pixels the thumb should be
792 * positioned away from the initial start point (x axis for region)
793 * @param {int} newOffset2 the number of pixels the thumb should be
794 * positioned away from the initial start point (y axis for region)
795 * @param {boolean} skipAnim set to true to disable the animation
796 * for this move action (but not others).
797 * @param {boolean} force ignore the locked setting and set value anyway
798 * @param {boolean} silent when true, do not fire events
799 * @return {boolean} true if the move was performed, false if it failed
802 _setRegionValue: function(source, newOffset, newOffset2, skipAnim, force, silent) {
803 var t = this.thumb, newX, newY;
806 this.logger.log("defer setRegionValue until after onAvailble");
807 this.deferredSetRegionValue = arguments;
811 if (this.isLocked() && !force) {
812 this.logger.log("Can't set the value, the control is locked");
816 if ( isNaN(newOffset) ) {
817 this.logger.log("setRegionValue, Illegal argument: " + newOffset);
822 this.logger.log("Call to setRegionValue for non-region Slider ignored. Use setValue","warn");
826 this._silent = silent;
828 this.valueChangeSource = source || Slider.SOURCE_SET_VALUE;
830 t.lastOffset = [newOffset, newOffset2];
831 this.verifyOffset(true);
835 newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
836 newY = t.initPageY + newOffset2 + this.thumbCenterPoint.y;
837 this.moveThumb(newX, newY, skipAnim);
843 * Checks the background position element position. If it has moved from the
844 * baseline position, the constraints for the thumb are reset
845 * @param checkPos {boolean} check the position instead of using cached value
846 * @method verifyOffset
847 * @return {boolean} True if the offset is the same as the baseline.
849 verifyOffset: function(checkPos) {
851 var xy = getXY(this.getEl()),
854 if (!this.thumbCenterPoint || !this.thumbCenterPoint.x) {
855 this.setThumbCenterPoint();
860 this.logger.log("newPos: " + xy);
862 if (xy[0] != this.baselinePos[0] || xy[1] != this.baselinePos[1]) {
863 this.logger.log("background moved, resetting constraints");
866 this.setInitPosition();
867 this.baselinePos = xy;
870 t.initPageX = this.initPageX + t.startOffset[0];
871 t.initPageY = this.initPageY + t.startOffset[1];
873 this.resetThumbConstraints();
883 * Move the associated slider moved to a timeout to try to get around the
884 * mousedown stealing moz does when I move the slider element between the
885 * cursor and the background during the mouseup event
887 * @param {int} x the X coordinate of the click
888 * @param {int} y the Y coordinate of the click
889 * @param {boolean} skipAnim don't animate if the move happend onDrag
890 * @param {boolean} midMove set to true if this is not terminating
891 * the slider movement
894 moveThumb: function(x, y, skipAnim, midMove) {
901 this.logger.log("thumb is not available yet, aborting move");
905 this.logger.log("move thumb, x: " + x + ", y: " + y);
907 t.setDelta(this.thumbCenterPoint.x, this.thumbCenterPoint.y);
909 _p = t.getTargetCoord(x, y);
910 p = [Math.round(_p.x), Math.round(_p.y)];
912 if (this.animate && t._graduated && !skipAnim) {
913 this.logger.log("graduated");
916 // cache the current thumb pos
917 this.curCoord = getXY(this.thumb.getEl());
918 this.curCoord = [Math.round(this.curCoord[0]), Math.round(this.curCoord[1])];
920 setTimeout( function() { self.moveOneTick(p); }, this.tickPause );
922 } else if (this.animate && Slider.ANIM_AVAIL && !skipAnim) {
923 this.logger.log("animating to " + p);
927 anim = new YAHOO.util.Motion(
928 t.id, { points: { to: p } },
929 this.animationDuration,
930 YAHOO.util.Easing.easeOut );
932 anim.onComplete.subscribe( function() {
933 self.logger.log("Animation completed _mouseDown:" + self._mouseDown);
935 if (!self._mouseDown) {
942 t.setDragElPos(x, y);
943 if (!midMove && !this._mouseDown) {
949 _slideStart: function() {
950 if (!this._sliding) {
953 this.fireEvent("slideStart");
955 this._sliding = true;
959 _slideEnd: function() {
960 if (this._sliding && this.moveComplete) {
961 // Reset state before firing slideEnd
962 var silent = this._silent;
963 this._sliding = false;
964 this._silent = false;
965 this.moveComplete = false;
968 this.fireEvent("slideEnd");
974 * Move the slider one tick mark towards its final coordinate. Used
975 * for the animation when tick marks are defined
976 * @method moveOneTick
977 * @param {int[]} the destination coordinate
980 moveOneTick: function(finalCoord) {
988 nextCoord = this._getNextX(this.curCoord, finalCoord);
989 tmpX = (nextCoord !== null) ? nextCoord[0] : this.curCoord[0];
990 nextCoord = this._getNextY(this.curCoord, finalCoord);
991 tmpY = (nextCoord !== null) ? nextCoord[1] : this.curCoord[1];
993 nextCoord = tmpX !== this.curCoord[0] || tmpY !== this.curCoord[1] ?
994 [ tmpX, tmpY ] : null;
995 } else if (t._isHoriz) {
996 nextCoord = this._getNextX(this.curCoord, finalCoord);
998 nextCoord = this._getNextY(this.curCoord, finalCoord);
1001 this.logger.log("moveOneTick: " +
1002 " finalCoord: " + finalCoord +
1003 " this.curCoord: " + this.curCoord +
1004 " nextCoord: " + nextCoord);
1008 // cache the position
1009 this.curCoord = nextCoord;
1011 // move to the next coord
1012 this.thumb.alignElWithMouse(t.getEl(), nextCoord[0] + this.thumbCenterPoint.x, nextCoord[1] + this.thumbCenterPoint.y);
1014 // check if we are in the final position, if not make a recursive call
1015 if (!(nextCoord[0] == finalCoord[0] && nextCoord[1] == finalCoord[1])) {
1016 setTimeout(function() { self.moveOneTick(finalCoord); },
1020 if (!this._mouseDown) {
1026 if (!this._mouseDown) {
1033 * Returns the next X tick value based on the current coord and the target coord.
1037 _getNextX: function(curCoord, finalCoord) {
1038 this.logger.log("getNextX: " + curCoord + ", " + finalCoord);
1044 if (curCoord[0] > finalCoord[0]) {
1045 thresh = t.tickSize - this.thumbCenterPoint.x;
1046 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
1047 nextCoord = [tmp.x, tmp.y];
1048 } else if (curCoord[0] < finalCoord[0]) {
1049 thresh = t.tickSize + this.thumbCenterPoint.x;
1050 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
1051 nextCoord = [tmp.x, tmp.y];
1053 // equal, do nothing
1060 * Returns the next Y tick value based on the current coord and the target coord.
1064 _getNextY: function(curCoord, finalCoord) {
1070 if (curCoord[1] > finalCoord[1]) {
1071 thresh = t.tickSize - this.thumbCenterPoint.y;
1072 tmp = t.getTargetCoord( curCoord[0], curCoord[1] - thresh );
1073 nextCoord = [tmp.x, tmp.y];
1074 } else if (curCoord[1] < finalCoord[1]) {
1075 thresh = t.tickSize + this.thumbCenterPoint.y;
1076 tmp = t.getTargetCoord( curCoord[0], curCoord[1] + thresh );
1077 nextCoord = [tmp.x, tmp.y];
1079 // equal, do nothing
1086 * Resets the constraints before moving the thumb.
1087 * @method b4MouseDown
1090 b4MouseDown: function(e) {
1091 if (!this.backgroundEnabled) {
1095 this.thumb.autoOffset();
1096 this.resetThumbConstraints();
1100 * Handles the mousedown event for the slider background
1101 * @method onMouseDown
1104 onMouseDown: function(e) {
1105 if (!this.backgroundEnabled || this.isLocked()) {
1109 this._mouseDown = true;
1111 var x = Event.getPageX(e),
1112 y = Event.getPageY(e);
1114 this.logger.log("bg mousedown: " + x + "," + y);
1118 this.moveThumb(x, y);
1122 * Handles the onDrag event for the slider background
1126 onDrag: function(e) {
1127 this.logger.log("background drag");
1128 if (this.backgroundEnabled && !this.isLocked()) {
1129 var x = Event.getPageX(e),
1130 y = Event.getPageY(e);
1131 this.moveThumb(x, y, true, true);
1137 * Fired when the slider movement ends
1141 endMove: function () {
1142 this.logger.log("endMove");
1145 this.moveComplete = true;
1150 * Resets the X and Y contraints for the thumb. Used in lieu of the thumb
1151 * instance's inherited resetConstraints because some logic was not
1153 * @method resetThumbConstraints
1156 resetThumbConstraints: function () {
1159 t.setXConstraint(t.leftConstraint, t.rightConstraint, t.xTickSize);
1160 t.setYConstraint(t.topConstraint, t.bottomConstraint, t.xTickSize);
1164 * Fires the change event if the value has been changed. Ignored if we are in
1165 * the middle of an animation as the event will fire when the animation is
1167 * @method fireEvents
1168 * @param {boolean} thumbEvent set to true if this event is fired from an event
1169 * that occurred on the thumb. If it is, the state of the
1170 * thumb dd object should be correct. Otherwise, the event
1171 * originated on the background, so the thumb state needs to
1172 * be refreshed before proceeding.
1175 fireEvents: function (thumbEvent) {
1177 var t = this.thumb, newX, newY, newVal;
1183 if (! this.isLocked()) {
1185 newX = t.getXValue();
1186 newY = t.getYValue();
1188 if (newX != this.previousX || newY != this.previousY) {
1189 if (!this._silent) {
1190 this.onChange(newX, newY);
1191 this.fireEvent("change", { x: newX, y: newY });
1195 this.previousX = newX;
1196 this.previousY = newY;
1199 newVal = t.getValue();
1200 if (newVal != this.previousVal) {
1201 this.logger.log("Firing onchange: " + newVal);
1202 if (!this._silent) {
1203 this.onChange( newVal );
1204 this.fireEvent("change", newVal);
1207 this.previousVal = newVal;
1216 * @return {string} string representation of the instance
1218 toString: function () {
1219 return ("Slider (" + this.type +") " + this.id);
1224 YAHOO.lang.augmentProto(Slider, YAHOO.util.EventProvider);
1226 YAHOO.widget.Slider = Slider;
1229 * A drag and drop implementation to be used as the thumb of a slider.
1230 * @class SliderThumb
1231 * @extends YAHOO.util.DD
1233 * @param {String} id the id of the slider html element
1234 * @param {String} sGroup the group of related DragDrop items
1235 * @param {int} iLeft the number of pixels the element can move left
1236 * @param {int} iRight the number of pixels the element can move right
1237 * @param {int} iUp the number of pixels the element can move up
1238 * @param {int} iDown the number of pixels the element can move down
1239 * @param {int} iTickSize optional parameter for specifying that the element
1240 * should move a certain number pixels at a time.
1242 YAHOO.widget.SliderThumb = function(id, sGroup, iLeft, iRight, iUp, iDown, iTickSize) {
1245 YAHOO.widget.SliderThumb.superclass.constructor.call(this, id, sGroup);
1248 * The id of the thumbs parent HTML element (the slider background
1250 * @property parentElId
1253 this.parentElId = sGroup;
1257 this.logger = new YAHOO.widget.LogWriter(this.toString());
1260 * Overrides the isTarget property in YAHOO.util.DragDrop
1261 * @property isTarget
1264 this.isTarget = false;
1267 * The tick size for this slider
1268 * @property tickSize
1272 this.tickSize = iTickSize;
1275 * Informs the drag and drop util that the offsets should remain when
1276 * resetting the constraints. This preserves the slider value when
1277 * the constraints are reset
1278 * @property maintainOffset
1282 this.maintainOffset = true;
1284 this.initSlider(iLeft, iRight, iUp, iDown, iTickSize);
1287 * Turns off the autoscroll feature in drag and drop
1291 this.scroll = false;
1295 YAHOO.extend(YAHOO.widget.SliderThumb, YAHOO.util.DD, {
1298 * The (X and Y) difference between the thumb location and its parent
1299 * (the slider background) when the control is instantiated.
1300 * @property startOffset
1306 * Override the default setting of dragOnly to true.
1307 * @property dragOnly
1314 * Flag used to figure out if this is a horizontal or vertical slider
1315 * @property _isHoriz
1322 * Cache the last value so we can check for change
1323 * @property _prevVal
1330 * The slider is _graduated if there is a tick interval defined
1331 * @property _graduated
1339 * Returns the difference between the location of the thumb and its parent.
1340 * @method getOffsetFromParent
1341 * @param {[int, int]} parentPos Optionally accepts the position of the parent
1344 getOffsetFromParent0: function(parentPos) {
1345 var myPos = YAHOO.util.Dom.getXY(this.getEl()),
1346 ppos = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
1348 return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
1351 getOffsetFromParent: function(parentPos) {
1353 var el = this.getEl(), newOffset,
1354 myPos,ppos,l,t,deltaX,deltaY,newLeft,newTop;
1356 if (!this.deltaOffset) {
1358 myPos = YAHOO.util.Dom.getXY(el);
1359 ppos = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
1361 newOffset = [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
1363 l = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
1364 t = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
1366 deltaX = l - newOffset[0];
1367 deltaY = t - newOffset[1];
1369 if (isNaN(deltaX) || isNaN(deltaY)) {
1370 this.logger.log("element does not have a position style def yet");
1372 this.deltaOffset = [deltaX, deltaY];
1376 newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
1377 newTop = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
1379 newOffset = [newLeft + this.deltaOffset[0], newTop + this.deltaOffset[1]];
1386 * Set up the slider, must be called in the constructor of all subclasses
1387 * @method initSlider
1388 * @param {int} iLeft the number of pixels the element can move left
1389 * @param {int} iRight the number of pixels the element can move right
1390 * @param {int} iUp the number of pixels the element can move up
1391 * @param {int} iDown the number of pixels the element can move down
1392 * @param {int} iTickSize the width of the tick interval.
1394 initSlider: function (iLeft, iRight, iUp, iDown, iTickSize) {
1395 this.initLeft = iLeft;
1396 this.initRight = iRight;
1398 this.initDown = iDown;
1400 this.setXConstraint(iLeft, iRight, iTickSize);
1401 this.setYConstraint(iUp, iDown, iTickSize);
1403 if (iTickSize && iTickSize > 1) {
1404 this._graduated = true;
1407 this._isHoriz = (iLeft || iRight);
1408 this._isVert = (iUp || iDown);
1409 this._isRegion = (this._isHoriz && this._isVert);
1414 * Clear's the slider's ticks
1415 * @method clearTicks
1417 clearTicks: function () {
1418 YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);
1420 this._graduated = false;
1425 * Gets the current offset from the element's start position in
1428 * @return {int} the number of pixels (positive or negative) the
1429 * slider has moved from the start position.
1431 getValue: function () {
1432 return (this._isHoriz) ? this.getXValue() : this.getYValue();
1436 * Gets the current X offset from the element's start position in
1439 * @return {int} the number of pixels (positive or negative) the
1440 * slider has moved horizontally from the start position.
1442 getXValue: function () {
1443 if (!this.available) {
1446 var newOffset = this.getOffsetFromParent();
1447 if (YAHOO.lang.isNumber(newOffset[0])) {
1448 this.lastOffset = newOffset;
1449 return (newOffset[0] - this.startOffset[0]);
1451 this.logger.log("can't get offset, using old value: " +
1452 this.lastOffset[0]);
1453 return (this.lastOffset[0] - this.startOffset[0]);
1458 * Gets the current Y offset from the element's start position in
1461 * @return {int} the number of pixels (positive or negative) the
1462 * slider has moved vertically from the start position.
1464 getYValue: function () {
1465 if (!this.available) {
1468 var newOffset = this.getOffsetFromParent();
1469 if (YAHOO.lang.isNumber(newOffset[1])) {
1470 this.lastOffset = newOffset;
1471 return (newOffset[1] - this.startOffset[1]);
1473 this.logger.log("can't get offset, using old value: " +
1474 this.lastOffset[1]);
1475 return (this.lastOffset[1] - this.startOffset[1]);
1482 * @return {string} string representation of the instance
1484 toString: function () {
1485 return "SliderThumb " + this.id;
1489 * The onchange event for the handle/thumb is delegated to the YAHOO.widget.Slider
1490 * instance it belongs to.
1494 onChange: function (x, y) {
1499 * A slider with two thumbs, one that represents the min value and
1500 * the other the max. Actually a composition of two sliders, both with
1501 * the same background. The constraints for each slider are adjusted
1502 * dynamically so that the min value of the max slider is equal or greater
1503 * to the current value of the min slider, and the max value of the min
1504 * slider is the current value of the max slider.
1505 * Constructor assumes both thumbs are positioned absolutely at the 0 mark on
1508 * @namespace YAHOO.widget
1510 * @uses YAHOO.util.EventProvider
1512 * @param {Slider} minSlider The Slider instance used for the min value thumb
1513 * @param {Slider} maxSlider The Slider instance used for the max value thumb
1514 * @param {int} range The number of pixels the thumbs may move within
1515 * @param {Array} initVals (optional) [min,max] Initial thumb placement
1519 var Event = YAHOO.util.Event,
1522 function DualSlider(minSlider, maxSlider, range, initVals) {
1525 ready = { min : false, max : false },
1526 minThumbOnMouseDown, maxThumbOnMouseDown;
1529 * A slider instance that keeps track of the lower value of the range.
1530 * <strong>read only</strong>
1531 * @property minSlider
1534 this.minSlider = minSlider;
1537 * A slider instance that keeps track of the upper value of the range.
1538 * <strong>read only</strong>
1539 * @property maxSlider
1542 this.maxSlider = maxSlider;
1545 * The currently active slider (min or max). <strong>read only</strong>
1546 * @property activeSlider
1549 this.activeSlider = minSlider;
1552 * Is the DualSlider oriented horizontally or vertically?
1553 * <strong>read only</strong>
1557 this.isHoriz = minSlider.thumb._isHoriz;
1559 //FIXME: this is horrible
1560 minThumbOnMouseDown = this.minSlider.thumb.onMouseDown;
1561 maxThumbOnMouseDown = this.maxSlider.thumb.onMouseDown;
1562 this.minSlider.thumb.onMouseDown = function() {
1563 self.activeSlider = self.minSlider;
1564 minThumbOnMouseDown.apply(this,arguments);
1566 this.maxSlider.thumb.onMouseDown = function () {
1567 self.activeSlider = self.maxSlider;
1568 maxThumbOnMouseDown.apply(this,arguments);
1571 this.minSlider.thumb.onAvailable = function () {
1572 minSlider.setStartSliderState();
1575 self.fireEvent('ready',self);
1578 this.maxSlider.thumb.onAvailable = function () {
1579 maxSlider.setStartSliderState();
1582 self.fireEvent('ready',self);
1586 // dispatch mousedowns to the active slider
1587 minSlider.onMouseDown =
1588 maxSlider.onMouseDown = function(e) {
1589 return this.backgroundEnabled && self._handleMouseDown(e);
1592 // Fix the drag behavior so that only the active slider
1595 maxSlider.onDrag = function(e) {
1596 self._handleDrag(e);
1599 // Likely only the minSlider's onMouseUp will be executed, but both are
1600 // overridden just to be safe
1601 minSlider.onMouseUp =
1602 maxSlider.onMouseUp = function (e) {
1603 self._handleMouseUp(e);
1606 // Replace the _bindKeyEvents for the minSlider and remove that for the
1607 // maxSlider since they share the same bg element.
1608 minSlider._bindKeyEvents = function () {
1609 self._bindKeyEvents(this);
1611 maxSlider._bindKeyEvents = function () {};
1613 // The core events for each slider are handled so we can expose a single
1614 // event for when the event happens on either slider
1615 minSlider.subscribe("change", this._handleMinChange, minSlider, this);
1616 minSlider.subscribe("slideStart", this._handleSlideStart, minSlider, this);
1617 minSlider.subscribe("slideEnd", this._handleSlideEnd, minSlider, this);
1619 maxSlider.subscribe("change", this._handleMaxChange, maxSlider, this);
1620 maxSlider.subscribe("slideStart", this._handleSlideStart, maxSlider, this);
1621 maxSlider.subscribe("slideEnd", this._handleSlideEnd, maxSlider, this);
1624 * Event that fires when the slider is finished setting up
1626 * @param {DualSlider} dualslider the DualSlider instance
1628 this.createEvent("ready", this);
1631 * Event that fires when either the min or max value changes
1633 * @param {DualSlider} dualslider the DualSlider instance
1635 this.createEvent("change", this);
1638 * Event that fires when one of the thumbs begins to move
1640 * @param {Slider} activeSlider the moving slider
1642 this.createEvent("slideStart", this);
1645 * Event that fires when one of the thumbs finishes moving
1647 * @param {Slider} activeSlider the moving slider
1649 this.createEvent("slideEnd", this);
1651 // Validate initial values
1652 initVals = YAHOO.lang.isArray(initVals) ? initVals : [0,range];
1653 initVals[0] = Math.min(Math.max(parseInt(initVals[0],10)|0,0),range);
1654 initVals[1] = Math.max(Math.min(parseInt(initVals[1],10)|0,range),0);
1655 // Swap initVals if min > max
1656 if (initVals[0] > initVals[1]) {
1657 initVals.splice(0,2,initVals[1],initVals[0]);
1659 this.minVal = initVals[0];
1660 this.maxVal = initVals[1];
1662 // Set values so initial assignment when the slider thumbs are ready will
1664 this.minSlider.setValue(this.minVal,true,true,true);
1665 this.maxSlider.setValue(this.maxVal,true,true,true);
1667 YAHOO.log("Setting initial values " + this.minVal + ", " + this.maxVal,"info","DualSlider");
1670 DualSlider.prototype = {
1673 * The current value of the min thumb. <strong>read only</strong>.
1680 * The current value of the max thumb. <strong>read only</strong>.
1687 * Pixel distance to maintain between thumbs.
1688 * @property minRange
1695 * Executed when one of the sliders fires the slideStart event
1696 * @method _handleSlideStart
1699 _handleSlideStart: function(data, slider) {
1700 this.fireEvent("slideStart", slider);
1704 * Executed when one of the sliders fires the slideEnd event
1705 * @method _handleSlideEnd
1708 _handleSlideEnd: function(data, slider) {
1709 this.fireEvent("slideEnd", slider);
1713 * Overrides the onDrag method for both sliders
1714 * @method _handleDrag
1717 _handleDrag: function(e) {
1718 YW.Slider.prototype.onDrag.call(this.activeSlider, e);
1722 * Executed when the min slider fires the change event
1723 * @method _handleMinChange
1726 _handleMinChange: function() {
1727 this.activeSlider = this.minSlider;
1732 * Executed when the max slider fires the change event
1733 * @method _handleMaxChange
1736 _handleMaxChange: function() {
1737 this.activeSlider = this.maxSlider;
1742 * Set up the listeners for the keydown and keypress events.
1744 * @method _bindKeyEvents
1747 _bindKeyEvents : function (slider) {
1748 Event.on(slider.id,'keydown', this._handleKeyDown, this,true);
1749 Event.on(slider.id,'keypress',this._handleKeyPress,this,true);
1753 * Delegate event handling to the active Slider. See Slider.handleKeyDown.
1755 * @method _handleKeyDown
1756 * @param e {Event} the mousedown DOM event
1759 _handleKeyDown : function (e) {
1760 this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments);
1764 * Delegate event handling to the active Slider. See Slider.handleKeyPress.
1766 * @method _handleKeyPress
1767 * @param e {Event} the mousedown DOM event
1770 _handleKeyPress : function (e) {
1771 this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments);
1775 * Sets the min and max thumbs to new values.
1777 * @param min {int} Pixel offset to assign to the min thumb
1778 * @param max {int} Pixel offset to assign to the max thumb
1779 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1781 * @param force {boolean} (optional) ignore the locked setting and set
1782 * value anyway. Default false
1783 * @param silent {boolean} (optional) Set to true to skip firing change
1784 * events. Default false
1786 setValues : function (min, max, skipAnim, force, silent) {
1787 var mins = this.minSlider,
1788 maxs = this.maxSlider,
1792 done = { min : false, max : false };
1794 // Clear constraints to prevent animated thumbs from prematurely
1795 // stopping when hitting a constraint that's moving with the other
1797 if (mint._isHoriz) {
1798 mint.setXConstraint(mint.leftConstraint,maxt.rightConstraint,mint.tickSize);
1799 maxt.setXConstraint(mint.leftConstraint,maxt.rightConstraint,maxt.tickSize);
1801 mint.setYConstraint(mint.topConstraint,maxt.bottomConstraint,mint.tickSize);
1802 maxt.setYConstraint(mint.topConstraint,maxt.bottomConstraint,maxt.tickSize);
1805 // Set up one-time slideEnd callbacks to call updateValue when both
1806 // thumbs have been set
1807 this._oneTimeCallback(mins,'slideEnd',function () {
1810 self.updateValue(silent);
1811 // Clean the slider's slideEnd events on a timeout since this
1812 // will be executed from inside the event's fire
1813 setTimeout(function () {
1814 self._cleanEvent(mins,'slideEnd');
1815 self._cleanEvent(maxs,'slideEnd');
1820 this._oneTimeCallback(maxs,'slideEnd',function () {
1823 self.updateValue(silent);
1824 // Clean both sliders' slideEnd events on a timeout since this
1825 // will be executed from inside one of the event's fire
1826 setTimeout(function () {
1827 self._cleanEvent(mins,'slideEnd');
1828 self._cleanEvent(maxs,'slideEnd');
1833 // Must emit Slider slideEnd event to propagate to updateValue
1834 mins.setValue(min,skipAnim,force,false);
1835 maxs.setValue(max,skipAnim,force,false);
1839 * Set the min thumb position to a new value.
1840 * @method setMinValue
1841 * @param min {int} Pixel offset for min thumb
1842 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1844 * @param force {boolean} (optional) ignore the locked setting and set
1845 * value anyway. Default false
1846 * @param silent {boolean} (optional) Set to true to skip firing change
1847 * events. Default false
1849 setMinValue : function (min, skipAnim, force, silent) {
1850 var mins = this.minSlider,
1853 this.activeSlider = mins;
1855 // Use a one-time event callback to delay the updateValue call
1856 // until after the slide operation is done
1858 this._oneTimeCallback(mins,'slideEnd',function () {
1859 self.updateValue(silent);
1860 // Clean the slideEnd event on a timeout since this
1861 // will be executed from inside the event's fire
1862 setTimeout(function () { self._cleanEvent(mins,'slideEnd'); }, 0);
1865 mins.setValue(min, skipAnim, force);
1869 * Set the max thumb position to a new value.
1870 * @method setMaxValue
1871 * @param max {int} Pixel offset for max thumb
1872 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1874 * @param force {boolean} (optional) ignore the locked setting and set
1875 * value anyway. Default false
1876 * @param silent {boolean} (optional) Set to true to skip firing change
1877 * events. Default false
1879 setMaxValue : function (max, skipAnim, force, silent) {
1880 var maxs = this.maxSlider,
1883 this.activeSlider = maxs;
1885 // Use a one-time event callback to delay the updateValue call
1886 // until after the slide operation is done
1887 this._oneTimeCallback(maxs,'slideEnd',function () {
1888 self.updateValue(silent);
1889 // Clean the slideEnd event on a timeout since this
1890 // will be executed from inside the event's fire
1891 setTimeout(function () { self._cleanEvent(maxs,'slideEnd'); }, 0);
1894 maxs.setValue(max, skipAnim, force);
1898 * Executed when one of the sliders is moved
1899 * @method updateValue
1900 * @param silent {boolean} (optional) Set to true to skip firing change
1901 * events. Default false
1904 updateValue: function(silent) {
1905 var min = this.minSlider.getValue(),
1906 max = this.maxSlider.getValue(),
1908 mint,maxt,dim,minConstraint,maxConstraint,thumbInnerWidth;
1910 if (min != this.minVal || max != this.maxVal) {
1913 mint = this.minSlider.thumb;
1914 maxt = this.maxSlider.thumb;
1915 dim = this.isHoriz ? 'x' : 'y';
1917 thumbInnerWidth = this.minSlider.thumbCenterPoint[dim] +
1918 this.maxSlider.thumbCenterPoint[dim];
1920 // Establish barriers within the respective other thumb's edge, less
1921 // the minRange. Limit to the Slider's range in the case of
1922 // negative minRanges.
1923 minConstraint = Math.max(max-thumbInnerWidth-this.minRange,0);
1924 maxConstraint = Math.min(-min-thumbInnerWidth-this.minRange,0);
1927 minConstraint = Math.min(minConstraint,maxt.rightConstraint);
1929 mint.setXConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
1931 maxt.setXConstraint(maxConstraint,maxt.rightConstraint, maxt.tickSize);
1933 minConstraint = Math.min(minConstraint,maxt.bottomConstraint);
1934 mint.setYConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
1936 maxt.setYConstraint(maxConstraint,maxt.bottomConstraint, maxt.tickSize);
1943 if (changed && !silent) {
1944 this.fireEvent("change", this);
1949 * A background click will move the slider thumb nearest to the click.
1950 * Override if you need different behavior.
1951 * @method selectActiveSlider
1952 * @param e {Event} the mousedown event
1955 selectActiveSlider: function(e) {
1956 var min = this.minSlider,
1957 max = this.maxSlider,
1958 minLocked = min.isLocked() || !min.backgroundEnabled,
1959 maxLocked = max.isLocked() || !min.backgroundEnabled,
1960 Ev = YAHOO.util.Event,
1963 if (minLocked || maxLocked) {
1964 this.activeSlider = minLocked ? max : min;
1967 d = Ev.getPageX(e)-min.thumb.initPageX-min.thumbCenterPoint.x;
1969 d = Ev.getPageY(e)-min.thumb.initPageY-min.thumbCenterPoint.y;
1972 this.activeSlider = d*2 > max.getValue()+min.getValue() ? max : min;
1977 * Delegates the onMouseDown to the appropriate Slider
1979 * @method _handleMouseDown
1980 * @param e {Event} mouseup event
1983 _handleMouseDown: function(e) {
1986 this.selectActiveSlider(e);
1987 return YW.Slider.prototype.onMouseDown.call(this.activeSlider, e);
1994 * Delegates the onMouseUp to the active Slider
1996 * @method _handleMouseUp
1997 * @param e {Event} mouseup event
2000 _handleMouseUp : function (e) {
2001 YW.Slider.prototype.onMouseUp.apply(
2002 this.activeSlider, arguments);
2006 * Schedule an event callback that will execute once, then unsubscribe
2008 * @method _oneTimeCallback
2009 * @param o {EventProvider} Object to attach the event to
2010 * @param evt {string} Name of the event
2011 * @param fn {Function} function to execute once
2014 _oneTimeCallback : function (o,evt,fn) {
2015 o.subscribe(evt,function () {
2016 // Unsubscribe myself
2017 o.unsubscribe(evt,arguments.callee);
2018 // Pass the event handler arguments to the one time callback
2019 fn.apply({},[].slice.apply(arguments));
2024 * Clean up the slideEnd event subscribers array, since each one-time
2025 * callback will be replaced in the event's subscribers property with
2026 * null. This will cause memory bloat and loss of performance.
2027 * @method _cleanEvent
2028 * @param o {EventProvider} object housing the CustomEvent
2029 * @param evt {string} name of the CustomEvent
2032 _cleanEvent : function (o,evt) {
2033 var ce,i,len,j,subs,newSubs;
2035 if (o.__yui_events && o.events[evt]) {
2036 for (i = o.__yui_events.length; i >= 0; --i) {
2037 if (o.__yui_events[i].type === evt) {
2038 ce = o.__yui_events[i];
2043 subs = ce.subscribers;
2046 for (i = 0, len = subs.length; i < len; ++i) {
2048 newSubs[j++] = subs[i];
2051 ce.subscribers = newSubs;
2058 YAHOO.lang.augmentProto(DualSlider, YAHOO.util.EventProvider);
2062 * Factory method for creating a horizontal dual-thumb slider
2063 * @for YAHOO.widget.Slider
2064 * @method YAHOO.widget.Slider.getHorizDualSlider
2066 * @param {String} bg the id of the slider's background element
2067 * @param {String} minthumb the id of the min thumb
2068 * @param {String} maxthumb the id of the thumb thumb
2069 * @param {int} range the number of pixels the thumbs can move within
2070 * @param {int} iTickSize (optional) the element should move this many pixels
2072 * @param {Array} initVals (optional) [min,max] Initial thumb placement
2073 * @return {DualSlider} a horizontal dual-thumb slider control
2075 YW.Slider.getHorizDualSlider =
2076 function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
2077 var mint = new YW.SliderThumb(minthumb, bg, 0, range, 0, 0, iTickSize),
2078 maxt = new YW.SliderThumb(maxthumb, bg, 0, range, 0, 0, iTickSize);
2080 return new DualSlider(
2081 new YW.Slider(bg, bg, mint, "horiz"),
2082 new YW.Slider(bg, bg, maxt, "horiz"),
2087 * Factory method for creating a vertical dual-thumb slider.
2088 * @for YAHOO.widget.Slider
2089 * @method YAHOO.widget.Slider.getVertDualSlider
2091 * @param {String} bg the id of the slider's background element
2092 * @param {String} minthumb the id of the min thumb
2093 * @param {String} maxthumb the id of the thumb thumb
2094 * @param {int} range the number of pixels the thumbs can move within
2095 * @param {int} iTickSize (optional) the element should move this many pixels
2097 * @param {Array} initVals (optional) [min,max] Initial thumb placement
2098 * @return {DualSlider} a vertical dual-thumb slider control
2100 YW.Slider.getVertDualSlider =
2101 function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
2102 var mint = new YW.SliderThumb(minthumb, bg, 0, 0, 0, range, iTickSize),
2103 maxt = new YW.SliderThumb(maxthumb, bg, 0, 0, 0, range, iTickSize);
2105 return new YW.DualSlider(
2106 new YW.Slider(bg, bg, mint, "vert"),
2107 new YW.Slider(bg, bg, maxt, "vert"),
2111 YAHOO.widget.DualSlider = DualSlider;
2114 YAHOO.register("slider", YAHOO.widget.Slider, {version: "2.7.0", build: "1799"});