Dial.js revision e81cc12bafc201061ba76fdfd173f1412371e0ec
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Create a circular dial value range input visualized as a draggable handle on a
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * background element.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @module dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Create a dial to represent an input control capable of representing a
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * series of intermediate states based on the position of the Dial's handle.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * These states are typically aligned to a value algorithm whereby the angle of the handle's
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * position corresponds to a given value.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @class Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @extends Widget
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param config {Object} Configuration object
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @constructor
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Dial.superclass.constructor.apply(this, arguments);
f47f024e093853ad3957be898687fc8317a835daJeff Conniff // Y.Dial static properties
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * The identity of the widget.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.NAME
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type String
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 'dial'
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Static property used to define the default attribute configuration of
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * the Widget.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.ATTRS
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Object}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * minimum value allowed
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute min
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default -220
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * maximum value allowed
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute max
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 220
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff * diameter of the circular background object.
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff * Other objects scale accordingly
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff * Set this only before rendering.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute diameter
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number} the number of px in diameter
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 100
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff * @writeOnce
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * initial value of the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 0
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * amount to increment/decrement the dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * when the arrow up/down/left/right keys are pressed
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute minorStep
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 1
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * amount to increment/decrement the dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * when the page up/down keys are pressed
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute majorStep
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 10
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * number of value increments in one 360 degree revolution
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * of the handle around the dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute stepsPerRev
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 100
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * number of decimal places of accuracy in the value
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @attribute decimalPlaces
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @type {Number}
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @default 0
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * visible strings for the dial UI. This attribute is
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * defined by the base Widget class but has an empty value. The
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Dial is simply providing a default value for the attribute.
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * Gets localized strings in the current language
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute strings
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Object}
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @default {label: 'My label', resetStr: 'Reset', tooltipHandle: 'Drag to set value'}
a90f7fefd9901a8da896d4bfe602441e0b7078d3Jeff Conniff valueFn: function () {
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * distance from the center of the dial to the
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * resting place of the center of the handle and marker.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * The value is a percent of the radius of the dial.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute handleDist
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {number}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 0.75
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * returns a properly formed yui class name
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param {String} string to be appended at the end of class name
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff return Y.ClassNameManager.getClassName(Dial.NAME, str);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * array of static constants used to identify the classname applied to the Dial DOM objects
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.CSS_CLASSES
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Array}
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff markerUserVml : makeClassName("marker-user-vml"),
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff centerButtonVml : makeClassName('center-button-vml'),
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff handleUserVml : makeClassName("handle-user-vml"),
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff dragging : Y.ClassNameManager.getClassName("dd-dragging")
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff /* Static constants used to define the markup templates used to create Dial DOM elements */
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var labelId = Dial.CSS_CLASSES.label + Y.guid(); //get this unique id once then use
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's label.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.LABEL_TEMPLATE
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {String}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div>...</div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff Dial.LABEL_TEMPLATE = '<div id="' + labelId + '" class="' + Dial.CSS_CLASSES.label + '"><span class="' + Dial.CSS_CLASSES.labelString + '">{label}</span><span class="' + Dial.CSS_CLASSES.valueString + '"></span></div>';
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff if(supportsVML === false){
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's background ring.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.RING_TEMPLATE
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {String}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div class="[...-ring]"><div class="[...-northMark]"></div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Dial.RING_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.ring + '"><div class="' + Dial.CSS_CLASSES.northMark + '"></div></div>';
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's current angle marker.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.MARKER_TEMPLATE
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {String}
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff * @default <div class="[...-marker] [...-marker-hidden]"><div class="[...-markerUser]"></div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.marker + ' ' + Dial.CSS_CLASSES.markerHidden + '"><div class="' + Dial.CSS_CLASSES.markerUser + '"></div></div>';
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's center button.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.CENTER_BUTTON_TEMPLATE
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {String}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div class="[...-centerButton]"><div class="[...-resetString]">' + Y.substitute('{resetStr}', Dial.ATTRS.strings.value) + '</div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff Dial.CENTER_BUTTON_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.centerButton + '"><div class="' + Dial.CSS_CLASSES.resetString + '">{resetStr}</div></div>';
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's handle.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.HANDLE_TEMPLATE
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {String}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div class="[...-handle]"><div class="[...-handleUser]" aria-labelledby="' + labelId + '" aria-valuetext="" aria-valuemax="" aria-valuemin="" aria-valuenow="" role="slider" tabindex="0"></div></div>';// title="{tooltipHandle}"
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff Dial.HANDLE_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.handle + '"><div class="' + Dial.CSS_CLASSES.handleUser + '" aria-labelledby="' + labelId + '" aria-valuetext="" aria-valuemax="" aria-valuemin="" aria-valuenow="" role="slider" tabindex="0" title="{tooltipHandle}"></div></div>';// title="{tooltipHandle}"
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff }else{ // VML case
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff Dial.RING_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.ring + ' ' + Dial.CSS_CLASSES.ringVml + '">'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<div class="' + Dial.CSS_CLASSES.northMark + '"></div>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff '<v:oval strokecolor="#ceccc0" strokeweight="1px"><v:fill type=gradient color="#8B8A7F" color2="#EDEDEB" angle="45"/></v:oval>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //'<v:oval></v:oval>'+
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.marker + ' ' + Dial.CSS_CLASSES.markerHidden + '">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<div class="' + Dial.CSS_CLASSES.markerUserVml + '">'+
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff '<v:oval stroked="false">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<v:fill opacity="20%" color="#000"/>'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '</v:oval>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //'<v:oval></v:oval>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff Dial.CENTER_BUTTON_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.centerButton + ' ' + Dial.CSS_CLASSES.centerButtonVml + '">'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff '<v:oval strokecolor="#ceccc0" strokeweight="1px">'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<v:fill type=gradient color="#C7C5B9" color2="#fefcf6" colors="35% #d9d7cb, 65% #fefcf6" angle="45"/>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<v:shadow on="True" color="#000" opacity="10%" offset="2px, 2px"/>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '</v:oval>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //'<v:oval></v:oval>'+
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff '<div class="' + Dial.CSS_CLASSES.resetString + '">{resetStr}</div>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Dial.HANDLE_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.handle + '">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<div class="' + Dial.CSS_CLASSES.handleUserVml + '" aria-labelledby="' + labelId + '" aria-valuetext="" aria-valuemax="" aria-valuemin="" aria-valuenow="" role="slider" tabindex="0" title="{tooltipHandle}">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<v:oval stroked="false">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<v:fill opacity="20%" color="#6C3A3A"/>'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '</v:oval>'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //'<v:oval></v:oval>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff /* Dial extends the base Widget class */
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * creates the DOM structure for the Dial.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method renderUI
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff renderUI : function() {
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // object handles
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // constants
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleDist = this._centerX * this.get('handleDist');
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // variables
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff this._angle = this._getAngleFromValue(this.get('value'));
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff this._setTimesWrapedFromValue(this.get('value'));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuemin', this.get('min'));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuemax', this.get('max'));
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff * Sets -webkit-border-radius to 50% of width/height of the ring, handle-user, marker-user, and center-button.
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff * This is needed for iOS 3.x.
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff * The objects render square if the radius is > 50% of the width/height
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff * @method _setBorderRadius
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff // Fixme: Would this be a good thing to do for all browsers instead of relying on % dimensions in CSS?
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff Y.log(this._ringNode.getStyle("WebkitBorderRadius"));
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff this._ringNode.setStyle('WebkitBorderRadius', Math.floor(dia * 0.5) + 'px');
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff this._handleUserNode.setStyle('WebkitBorderRadius', Math.floor(dia * 0.1) + 'px');
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff this._markerUserNode.setStyle('WebkitBorderRadius', Math.floor(dia * 0.05) + 'px');
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff this._centerButtonNode.setStyle('WebkitBorderRadius', Math.floor(dia * 0.25) + 'px');
e81cc12bafc201061ba76fdfd173f1412371e0ecJeff Conniff Y.log(this._ringNode.getStyle("WebkitBorderRadius"));
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Creates the Y.DD.Drag instance used for the handle movement and
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * binds Dial interaction to the configured value model.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method bindUI
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff bindUI : function() {
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this.after("valueChange", this._afterValueChange);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // Looking for a key event which will fire continously across browsers while the key is held down.
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff keyEventSpec = (!Y.UA.opera) ? "down:" : "press:",
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff keyLeftRightSpec = (!Y.UA.opera) ? "down:" : "press:";
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff // 38, 40 = arrow up/down, 33, 34 = page up/down, 35 , 36 = end/home
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff // 37 , 39 = arrow left/right
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Y.on("key", Y.bind(this._onDirectionKey, this), boundingBox, keyEventSpec);
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff Y.on("key", Y.bind(this._onLeftRightKey, this), boundingBox, keyLeftRightSpec);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Y.on('mouseenter', Y.bind(this._dialCenterOver, this), this._centerButtonNode);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Y.on('mouseleave', Y.bind(this._dialCenterOut, this), this._centerButtonNode);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Y.on('click', Y.bind(this._resetDial, this), this._centerButtonNode);
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff Y.on('mousedown', Y.bind(function(){this._handleUserNode.focus();}, this), this._handleNode);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff 'drag:start' : Y.bind(this._handleDragStart, this),
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Sets _timesWrapped based on Dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * to net integer revolutions the user dragged the handle around the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _setTimesWrapedFromValue
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param val {Number} current value of the Dial
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff this._timesWrapped = (val / this.get('stepsPerRev')) -1;
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff this._timesWrapped = Math.floor(val / this.get('stepsPerRev'));
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Sets the string in the object the user clicks to reset the Dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _dialCenterOver
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {DOMEvent} the mouseover event object
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this._resetString.setContent(Y.substitute('{resetStr}', this.get('strings')));
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Sets the string in the object the user clicks to reset the Dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _dialCenterOut
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {DOMEvent} the mouseover event object
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * handles the user dragging the handle around the Dial, calculates the angle,
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * checks for wrapping around top center, handles exceeding min or max values
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _handleDrag
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {DOMEvent} the drag event object
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff _handleDrag : function(e){
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff var handleCenterX = e.pageX + this._handleUserNodeRadius,
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff handleCenterY = e.pageY + this._handleUserNodeRadius;
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff var ang = Math.atan( (this._centerYOnPage - handleCenterY) / (this._centerXOnPage - handleCenterX) ) * (180 / Math.PI),
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff deltaX = (this._centerXOnPage - handleCenterX);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // check for need to set timesWrapped
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff if(handleCenterY < this._centerYOnPage){ //if handle is above the middle of the dial...
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff if((this._prevX <= this._centerXOnPage) && (handleCenterX > this._centerXOnPage)){ // If wrapping, clockwise
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff }else if((this._prevX > this._centerXOnPage) && (handleCenterX <= this._centerXOnPage)){ // if un-wrapping, counter-clockwise
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var newValue = this._getValueFromAngle(ang); // This function needs the current _timesWrapped value
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // handle hitting max and min and going beyond, stops at max or min
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff //if((newValue > this.get('min')) && (newValue < this.get('max'))) {
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff if((newValue > this.get('min')) && (newValue < this.get('max'))) {
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * handles the user starting to drag the handle around the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _handleDragStart
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {DOMEvent} the drag event object
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff this._markerNode.removeClass(Dial.CSS_CLASSES.markerHidden);
eeefbdad0b1d6614c497d69b0087c3a6bc5061b3Jeff Conniff this._centerYOnPage = (this._ringNode.getY() + this._centerY);
eeefbdad0b1d6614c497d69b0087c3a6bc5061b3Jeff Conniff this._centerXOnPage = (this._ringNode.getX() + this._centerX);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff * When handle is handleDragEnd, this animates the return to the fixed dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * handles the end of a user dragging the handle, animates the handle returning to
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * resting position.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _handleDragEnd
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff left: this._setNodeToFixedRadius(this._handleNode, true)[0] + 'px',
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff top: this._setNodeToFixedRadius(this._handleNode, true)[1] + 'px'
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff }, Y.bind(function(){
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff this._markerNode.addClass(Dial.CSS_CLASSES.markerHidden);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._prevX = this._handleNode.getX(); //makes us ready for next drag.
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff this._setTimesWrapedFromValue(this.get('value'));
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * returns the XY of the fixed position, handleDist, from the center of the Dial (resting position)
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * The XY also represents the angle related to the current value
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * If typeArray is true, [X,Y] is returned.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * If typeArray is false, the XY of the node passed is set.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _setNodeToFixedRadius
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param obj {Node}
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * @param typeArray {Boolean} true returns an array [X,Y]
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @return {Array} an array of [XY] is optionally returned
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff _setNodeToFixedRadius : function(obj, typeArray){
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff newY = Math.round(Math.sin(thisAngle * rad) * this._handleDist),
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff newX = Math.round(Math.cos(thisAngle * rad) * this._handleDist),
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff if(typeArray){ // just need the style for css transform left and top to animate the handle drag:end
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff return [this._centerX + newX, this._centerX + newY];
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff obj.setStyle('left', (this._centerX + newX) + 'px');
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff obj.setStyle('top', (this._centerX + newY) + 'px');
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Synchronizes the DOM state with the attribute settings.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method syncUI
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff syncUI : function() {
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * sets the sizes of ring, center-button, marker and handle VML ovals in pixels.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * Needed only in some IE versions
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * that ignore percent style sizes/offsets.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * so these must be set in pixels.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * Normally these are set in % of the ring.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * @method _setVMLSizes
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * @protected
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff node.getElementsByTagName('oval').setStyle('width', (dia * percent) + suffix);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff node.getElementsByTagName('oval').setStyle('height', (dia * percent) + suffix);
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff node.setStyle('width', (dia * percent) + suffix);
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff node.setStyle('height', (dia * percent) + suffix);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's label
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderLabel
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff _renderLabel : function() {
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff label = contentBox.one("." + Dial.CSS_CLASSES.label);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff label = Node.create(Y.substitute(Dial.LABEL_TEMPLATE, this.get('strings')));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._valueStringNode = this._labelNode.one("." + Dial.CSS_CLASSES.valueString);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's background ring
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderRing
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff _renderRing : function() {
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff ring = contentBox.one("." + Dial.CSS_CLASSES.ring);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff ring = contentBox.appendChild(Dial.RING_TEMPLATE);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff ring.setStyles({width:this.get('diameter') + 'px', height:this.get('diameter') + 'px'});
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's background marker which
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * tracks the angle of the user dragging the handle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderMarker
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff marker = contentBox.one("." + Dial.CSS_CLASSES.marker);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff marker = contentBox.one('.' + Dial.CSS_CLASSES.ring).appendChild(Dial.MARKER_TEMPLATE);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._markerUserNode = this._markerNode.one('.' + Dial.CSS_CLASSES.markerUserVml);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._markerUserNode = this._markerNode.one('.' + Dial.CSS_CLASSES.markerUser);
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff this._markerUserNodeRadius = parseInt(this._markerUserNode.getStyle('width'), 10) * 0.5;
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * places the centerbutton's reset string in the center of the button
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * based on the size of the string object
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _setXYResetString
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this._resetString.setStyle('top', (this._centerButtonNode.get('region').height / 2) - (this._resetString.get('region').height / 2) + 'px');
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this._resetString.setStyle('left', (this._centerButtonNode.get('region').width / 2) - (this._resetString.get('region').width / 2) + 'px');
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's center
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderCenterButton
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff centerButton = contentBox.one("." + Dial.CSS_CLASSES.centerButton);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff centerButton = Node.create(Y.substitute(Dial.CENTER_BUTTON_TEMPLATE, this.get('strings')));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff contentBox.one('.' + Dial.CSS_CLASSES.ring).append(centerButton);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._resetString = this._centerButtonNode.one('.' + Dial.CSS_CLASSES.resetString);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this._setXYResetString(); // centering the reset string in the button
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff this._centerButtonNode.setStyle('left', (offset) + 'px');
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff this._centerButtonNode.setStyle('top', (offset) + 'px');
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's user draggable handle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderHandle
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff handle = contentBox.one("." + Dial.CSS_CLASSES.handle);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff handle = Node.create(Y.substitute(Dial.HANDLE_TEMPLATE, this.get('strings')));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff contentBox.one('.' + Dial.CSS_CLASSES.ring).append(handle);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._handleUserNode = this._handleNode.one('.' + Dial.CSS_CLASSES.handleUserVml);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._handleUserNode = this._handleNode.one('.' + Dial.CSS_CLASSES.handleUser);
dcb17c0ed0cc508b4c74234b7477b05e6a8723ebJeff Conniff this._handleUserNodeRadius = parseInt(this._handleUserNode.getStyle('width'), 10) * 0.5;
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * sets the visible UI label string
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setLabelString
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param str {String}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this.get("contentBox").one("." + Dial.CSS_CLASSES.labelString).setContent(str);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * sets the visible UI label string
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setResetString
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param str {String}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this.get("contentBox").one("." + Dial.CSS_CLASSES.resetString).setContent(str);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this._setXYResetString(); // recenters the string in the button
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * sets the tooltip string in the Dial's handle
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setTooltipString
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param str {String}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * sets the Dial's value in response to key events.
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * Left and right keys are in a separate method
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * in case an implementation wants to increment values
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * but needs left and right arrow keys for other purposes.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _onDirectionKey
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {Event} the key event
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff _onDirectionKey : function(e) {
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * sets the Dial's value in response to left or right key events
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * @method _onLeftRightKey
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {Event} the key event
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff _onLeftRightKey : function(e) {
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * increments Dial value by a minor increment
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _incrMinor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var newVal = (this.get('value') + this.get("minorStep"));
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff this.set('value', newVal.toFixed(this.get('decimalPlaces')) - 0);
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * decrements Dial value by a minor increment
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _decrMinor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var newVal = (this.get('value') - this.get("minorStep"));
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff this.set('value', newVal.toFixed(this.get('decimalPlaces')) - 0);
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * increments Dial value by a major increment
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _incrMajor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var newVal = (this.get('value') + this.get("majorStep"));
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff this.set('value', newVal.toFixed(this.get('decimalPlaces')) - 0);
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * decrements Dial value by a major increment
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _decrMajor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var newVal = (this.get('value') - this.get("majorStep"));
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff this.set('value', newVal.toFixed(this.get('decimalPlaces')) - 0);
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * sets Dial value to dial's max attr
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _decrMajor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * sets Dial value to dial's min attr
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _decrMajor
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * resets Dial value to the orignal initial value.
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _resetDial
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * returns the handle angle associated with the current value of the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _getAngleFromValue
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param newVal {Number} the current value of the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @return {Number} the angle associated with the current Dial value
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var nonWrapedPartOfValue = newVal % this.get('stepsPerRev');
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var angleFromValue = nonWrapedPartOfValue / this.get('stepsPerRev') * 360;
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * returns the value of the Dial calculated from the current handle angle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _getValueFromAngle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param angle {Number} the current angle of the Dial's handle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @return {Number} the current Dial value corresponding to the handle position
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var value = (angle / 360) * this.get('stepsPerRev');
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff value = (value + (this._timesWrapped * this.get('stepsPerRev')));
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff //return Math.round(value * 100) / 100;
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff return value.toFixed(this.get('decimalPlaces')) - 0;
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * calls the method to update the UI whenever the Dial value changes
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _afterValueChange
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param e {Event}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff * Updates the UI display value of the Dial to reflect
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff * the value passed in.
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff * Makes all other needed UI display changes
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _uiSetValue
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param val {Number} value of the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @protected
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff if(this._handleNode.hasClass(Dial.CSS_CLASSES.dragging) === false){
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._setNodeToFixedRadius(this._handleNode, false);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuenow', val);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuetext', val);
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._setNodeToFixedRadius(this._markerNode, false);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff if((val === this.get('max')) || (val === this.get('min'))){
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff if(this._markerUserNode.hasClass('marker-max-min') === false){
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._markerUserNode.addClass('marker-max-min');
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff this._markerUserNode.getElementsByTagName('fill').set('color', '#AB3232');
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._markerNode.getElementsByTagName('fill').set('color', '#000');
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff if(this._markerUserNode.hasClass('marker-max-min') === true){
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._markerUserNode.removeClass('marker-max-min');
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff * value attribute default validator. Verifies that
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff * the value being set lies between the min/max value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _validateValue
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param val {Number} value of the Dial
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff return (Lang.isNumber(val) && val >= min && val <= max);