Dial.js revision dfce478dfa2a75c4dfcacb60b7321f9ef37c8477
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Create a circular dial value range input visualized as a draggable handle on a
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * background element.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @module dial
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff //testVMLNode;
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.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff 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
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * diameter of the handle object which users drag to change the value.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * Dial sets the pixel dimension of the handle equal to handleDiameter * diameter.
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * Set this only before rendering.
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff * @attribute handleDiameter
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @type {Number}
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @default 0.2
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @writeOnce
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * diameter of the marker object which follows the angle of the handle during value changes.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * Dial sets the pixel dimension of the marker equal to markerDiameter * diameter.
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * Set this only before rendering.
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff * @attribute markerDiameter
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @type {Number}
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @default 0.1
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @writeOnce
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * diameter of the center button object.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * Dial sets the pixel dimension of the centerButton equal to centerButtonDiameter * diameter.
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * Set this only before rendering.
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff * @attribute centerButtonDiameter
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @type {Number}
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @default 0.1
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff 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
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff * @attribute stepsPerRevolution
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
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {Object} the values are HTML strings
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
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * center of the marker and handle, when at rest.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * The value is a percent of the radius of the dial.
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff * @attribute handleDistance
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}
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff markerMaxMin : makeClassName("marker-max-min"),
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff centerButtonVml : makeClassName('center-button-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
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {HTML}
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @default <div id="' + labelId + '" class="[...-label]"><span class="[...-label-string]">{label}</span><span class="[...-value-string]"></span></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
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {HTML}
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
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {HTML}
3e16868ea3bfcadfeeb8e23aca5bb2317a6a8ba9Jeff Conniff * @default <div class="[...-marker] [...-marker-hidden]"><div class="[...-markerUser]"></div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.marker + ' ' + Dial.CSS_CLASSES.hidden + '"></div>';
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's center button.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.CENTER_BUTTON_TEMPLATE
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {HTML}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div class="[...-centerButton]"><div class="[...-resetString]">' + Y.substitute('{resetStr}', Dial.ATTRS.strings.value) + '</div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff Dial.CENTER_BUTTON_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.centerButton + '"><div class="' + Dial.CSS_CLASSES.resetString + ' ' + Dial.CSS_CLASSES.hidden + '">{resetStr}</div></div>';
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * template that will contain the Dial's handle.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @property Dial.HANDLE_TEMPLATE
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @type {HTML}
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
41a8874f3c14857a5a311a43eaf30a123f376771Jeff Conniff Dial.HANDLE_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.handle + '" aria-labelledby="' + labelId + '" aria-valuetext="" aria-valuemax="" aria-valuemin="" aria-valuenow="" role="slider" tabindex="0" 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>'+
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.markerVml + ' ' + Dial.CSS_CLASSES.hidden + '">'+
04f7ef259d54aeab53258697e1e7f8856adcc8a6Jeff Conniff '<v:oval stroked="false">'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '<v:fill opacity="20%" color="#000"/>'+
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff '</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>'+
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff '<div class="' + Dial.CSS_CLASSES.resetString + ' ' + Dial.CSS_CLASSES.hidden + '">{resetStr}</div>'+
41a8874f3c14857a5a311a43eaf30a123f376771Jeff Conniff Dial.HANDLE_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.handleVml + '" 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>'+
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
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff// this._dd1 = null; // expose a global for the dd of the handle so we can delegate to DD's natural behavior the mousedown on the ring
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._minValue = this.get('min'); // saves doing a .get many times, but we need to remember to update this if/when we allow changing min or max after instantiation
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._stepsPerRevolution = this.get('stepsPerRevolution');
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._minTimesWrapped = (Math.floor(this._minValue / this._stepsPerRevolution - 1));
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._maxTimesWrapped = (Math.floor(this._maxValue / this._stepsPerRevolution + 1));
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // variables
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff this._angle = this._getAngleFromValue(this.get('value'));
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._setTimesWrappedFromValue(this._originalValue);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._handleNode.set('aria-valuemin', this._minValue);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._handleNode.set('aria-valuemax', this._maxValue);
0a28bccfb8f103b5c4f470615110c31763045814Jeff Conniff * Sets -webkit-border-radius to 50% of width/height of the ring, handle, marker, 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
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._ringNode.setStyles({'WebkitBorderRadius':this._ringNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._handleNode.setStyles({'WebkitBorderRadius':this._handleNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff 'MozBorderRadius':this._handleNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._markerNode.setStyles({'WebkitBorderRadius':this._markerNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff 'MozBorderRadius':this._markerNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._centerButtonNode.setStyles({'WebkitBorderRadius':this._centerButtonNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff 'MozBorderRadius':this._centerButtonNodeRadius + 'px',
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff 'borderRadius':this._centerButtonNodeRadius + 'px'
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);
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff Y.on('mouseenter', function(){this.one('.' + Dial.CSS_CLASSES.resetString).removeClass(Dial.CSS_CLASSES.hidden);}, this._centerButtonNode);
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff Y.on('mouseleave', function(){this.one('.' + Dial.CSS_CLASSES.resetString).addClass(Dial.CSS_CLASSES.hidden);}, this._centerButtonNode);
32dbcde2fa3a8c0ad6f36343177d167a55a958f8Jeff Conniff // Needed to replace mousedown/up with gesturemovestart/end to make behavior on touch devices work the same.
0ed6176253fa9ba4e1c0825cca2f4cd707681f02Jeff Conniff Y.on('gesturemovestart', Y.bind(this._resetDial, this), this._centerButtonNode); //[#2530441]
0ed6176253fa9ba4e1c0825cca2f4cd707681f02Jeff Conniff Y.on('gesturemoveend', Y.bind(function(){this._handleNode.focus();}, this), this._centerButtonNode);
32dbcde2fa3a8c0ad6f36343177d167a55a958f8Jeff Conniff Y.on('gesturemovestart', Y.bind(function(){this._handleNode.focus();}, this), this._handleNode);
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff Y.on('gesturemovestart', Y.bind(this._getNewValueFromMousedown, this), this._ringNode); // [#2530766] // send this directly to mousedown method
32dbcde2fa3a8c0ad6f36343177d167a55a958f8Jeff Conniff Y.on('gesturemoveend', Y.bind(function(){this._handleNode.focus();}, this), this._ringNode); // [#2530206] // need to re-focus on the handle so keyboard is accessible
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._dd1 = new Y.DD.Drag({ //// [#2530206] changed global this._dd1 from just var dd1 = new Y.DD.drag so
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff 'drag:start' : Y.bind(this._handleDragStart, this),
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff 'drag:end' : Y.bind(this._handleDragEnd, this) //,
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff Y.bind(this._dd1.addHandle(this._ringNode), this); // [#2530206] added the ring as a handle to the dd1 (the dd of the handleNode)
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Sets _timesWrapped based on Dial value
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * to net integer revolutions the user dragged the handle around the Dial
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff * @method _setTimesWrappedFromValue
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param val {Number} current value of the Dial
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._timesWrapped = (val / this._stepsPerRevolution);
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._timesWrapped = Math.floor(val / this._stepsPerRevolution);
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff * gets the angle of the line from the center of the Dial to the center of the handle
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff * @method _getAngleFromHandleCenter
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff * @param handleCenterX {number}
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff * @param handleCenterY {number}
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff * @return ang {number} the angle
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff * @protected
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff _getAngleFromHandleCenter : function(handleCenterX, handleCenterY){
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff var ang = Math.atan( (this._centerYOnPage - handleCenterY) / (this._centerXOnPage - handleCenterX) ) * (180 / Math.PI);
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff ang = ((this._centerXOnPage - handleCenterX) < 0) ? ang + 90 : ang + 90 + 180; // Compensate for neg angles from Math.atan
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff * handles the user dragging the handle around the Dial, gets the angle,
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff * checks for wrapping around top center.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff * Sets the new value of the Dial
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _handleDrag
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @param e {DOMEvent} the drag event object
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff _handleDrag : function(e){
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff // [#2530206] The center of the handle is different relative to the XY of the mousedown event, compared to the drag:drag event.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // the event was emitted from drag:drag of handle. The center of the handle is e.pageX + radius, e.pageY + radius
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff handleCenterX = e.pageX + this._handleNodeRadius;
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff handleCenterY = e.pageY + this._handleNodeRadius;
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff ang = this._getAngleFromHandleCenter(handleCenterX, handleCenterY);
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // check for need to set timesWrapped
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff if((this._prevAng > 270) && (ang < 90)){ // If wrapping, clockwise
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff if(this._timesWrapped < this._maxTimesWrapped){
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff }else if((this._prevAng < 90) && (ang > 270)){ // if un-wrapping, counter-clockwise
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff if(this._timesWrapped > this._minTimesWrapped){
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff newValue = this._getValueFromAngle(ang); // This function needs the current _timesWrapped value. That's why it comes after the _timesWrapped code above
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // If you've gone past max more than one full revolution, we decrement the _timesWrapped value
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // This gives the effect of a ratchet mechanism.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // It feels like you are never more than one revolution past max
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // The effect is the same for min, only in reverse.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // We can't reset the _timesWrapped to the max or min here.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff // If we did, the next (continuous) drag would reset the value incorrectly.
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff if(newValue > (this._maxValue + this._stepsPerRevolution) ){
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff }else if(newValue < (this._minValue - this._stepsPerRevolution) ){
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._prevAng = ang; // need to keep the previous angle in order to check for wrapping on the next drag, click, or keypress
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * gets the new value when mousedown or gesturemovestart on the ringNode
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @method _getNewValueFromMousedown
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @param ang {number} angle where user clicked on the dial
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @return newValue {number} the new value for the dial
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @protected
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff _getNewValueFromMousedown : function(e){ // #2530306
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff var minAng = this._getAngleFromValue(this._minValue),
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff maxAng = this._getAngleFromValue(this._maxValue),
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff // the event was emitted from mousedown on ring, so center should be the XY of mousedown.
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff ang = this._getAngleFromHandleCenter(handleCenterX, handleCenterY);
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff //////////////////////////////////////////////
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff in the next sections of logic,
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff set _timesWrapped in the different cases
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff then set value at the end of this method
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff *////////////////////////////////////////////////
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff if(this.get('max') - this.get('min') > this._stepsPerRevolution){
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // range min-to-max is greater than stepsPerRevolution (one revolution)
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff/// if(this._prevAng > 180){ // This crosses a wrapping boundary
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // This checks the shortest way around the dial between the prevAng and this ang.
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff if(Math.abs(this._prevAng - ang) > 180){ // this crossed a wrapping
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // Only change the _timesWrapped if it's between minTimesWrapped and maxTimesWrapped
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff if((this._timesWrapped > this._minTimesWrapped) &&
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // this checks which direction, clock wise or CCW and incr or decr _timesWrapped
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff this._timesWrapped = ((this._prevAng - ang) > 0) ? (this._timesWrapped + 1) : (this._timesWrapped - 1);
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // special case of getting un-stuck from a min value case
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // where timesWrapped is minTimesWrapped but new ang won't trigger a cross wrap boundry
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // because prevAng is set to 0 or > 0
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff (this._timesWrapped === this._minTimesWrapped) &&
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff } //it didn't cross a wrapping boundary
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff//Y.one('.hd').setContent('w: ' + this._timesWrapped + ' this._prevAng:' + Math.round(this._prevAng) + ' ang: ' + Math.round(ang));
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff }else if((maxAng === 0) && (this.get('value') === this._maxValue)){
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // this happens when max is set at (North), an increment of stepsPerRevolution
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // because of "else if", range is <= stepsPerRevolution
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // this range includes the wrap point (north)
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // because of "else if", range is <= stepsPerRevolution
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff (this._prevAng >= minAng) && // if prev angle was greater than angle of min and...
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff (ang <= (minAng + maxAng) / 2) // the angle of this click is less than
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // the angle opposite the mid-range angle, then...
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // if prev angle is < max angle and...
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff (ang > (minAng + maxAng) / 2) //!!!!!!@@@###!!!!! &&
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // the angle of this click is greater than,
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // the angle opposite the mid-range angle and...
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff //(this.get('value') > this._minValue)
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff //(this._prevAng !== 0) //#2530597 fix md wrong way from 0
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // not zero. We don't want a previously min value of zero to have its _timesWrapped decremented
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // This is min and max are same angle 0 or other
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff // because of "else if", the range is <= stepsPerRevolution
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// if(Math.abs(this._prevAng - ang) > 180){ // this crossed a wrapping
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// // Only change the _timesWrapped if it's between minTimesWrapped and maxTimesWrapped
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// if((this._timesWrapped > this._minTimesWrapped + 1) &&
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// (this._timesWrapped < this._maxTimesWrapped - 1)
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// // this checks which direction, clock wise or CCW and incr or decr _timesWrapped
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// this._timesWrapped = ((this._prevAng - ang) > 0) ? (this._timesWrapped + 1) : (this._timesWrapped - 1);
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// // special case of getting un-stuck from a min value case
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// // where timesWrapped is minTimesWrapped but new ang won't trigger a cross wrap boundry
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// // because prevAng is set to 0 or > 0
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// (this._timesWrapped === this._minTimesWrapped) &&
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// (ang - this._prevAng < 180)
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// this._timesWrapped ++;
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff// } //it didn't cross a wrapping boundary
dfce478dfa2a75c4dfcacb60b7321f9ef37c8477Jeff Conniff//Y.one('.hd').setContent('w: ' + this._timesWrapped + ' this._prevAng: ' + Math.round(this._prevAng) + ' ang: ' + Math.round(ang));
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // min - max range doesn't include the wrap point
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // range is still <= stepsPerRevolution
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff if ((ang < minAng) || (ang > maxAng)){ // angle is out of range
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff oppositeMidRangeAngle = (((minAng + maxAng) / 2) + 180) % 360;
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff // This is the bisection of the min-to-max range + 180. (opposite the bisection)
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff newValue = ((maxAng < ang) && (ang < oppositeMidRangeAngle)) ? this.get('max') : this.get('min');
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff }else{ //oppositeMidRangeAngle <= 180
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff newValue = ((minAng > ang) && (ang > oppositeMidRangeAngle)) ? this.get('min') : this.get('max');
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff this._prevAng = this._getAngleFromValue(newValue);
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff newValue = this._getValueFromAngle(ang); // This function needs the correct, current _timesWrapped value.
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * handles the case where the value is less than min or greater than max
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @method _handleValuesBeyondMinMax
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @param e {DOMEvent} the event object
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @param newValue {number} current value of the dial
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff * @protected
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff _handleValuesBeyondMinMax : function(e, newValue){ // #2530306
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff // If _getValueFromAngle() is passed 0, it increments the _timesWrapped value.
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff // handle hitting max and min and going beyond, stops at max or min
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff if((newValue >= this._minValue) && (newValue <= this._maxValue)) {
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff // [#2530206] transfer the mousedown event from the _ringNode to the _handleNode drag, so we can mousedown, then continue dragging
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff // Delegate to DD's natural behavior
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._prevAng = this._getAngleFromValue(this._maxValue); // #2530766 need for mousedown on the ring; causes prob for drag
3909982acea3ffce1cb7435b87bee218e423c1ddJeff Conniff this._prevAng = this._getAngleFromValue(this._minValue);
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
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._markerNode.removeClass(Dial.CSS_CLASSES.hidden);
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(){
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff //[#2530206] only hide marker if not at max or min
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff // more persistant user visibility of when the dial is at max or min
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff if((value > this._minValue) && (value < this._maxValue)){
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.addClass(Dial.CSS_CLASSES.hidden);
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._setTimesWrappedFromValue(value); //#2530766 secondary bug when drag past max + cross wrapping boundry
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff this._prevAng = this._getAngleFromValue(value); //#2530766 secondary bug when drag past max + cross wrapping boundry
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * returns the XY of the fixed position, handleDistance, from the center of the Dial (resting position).
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * The XY also represents the angle related to the current value.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * If typeArray is true, [X,Y] is returned.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * If typeArray is false, the XY of the obj node passed in 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){
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff newY = Math.round(Math.sin(thisAngle * rad) * this._handleDistance),
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff newX = Math.round(Math.cos(thisAngle * rad) * this._handleDistance),
7defd8450188bddcb9e79a7d1c2246aa027ed78fJeff Conniff dia = obj.get('offsetWidth'); //Ticket #2529852
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff if(typeArray){ // just need the style for css transform left and top to animate the handle drag:end
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff return [(this._ringNodeRadius + newX), (this._ringNodeRadius + newY)];
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff obj.setStyle('left', (this._ringNodeRadius + newX) + 'px');
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff obj.setStyle('top', (this._ringNodeRadius + newY) + 'px');
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Synchronizes the DOM state with the attribute settings.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method syncUI
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff syncUI : function() {
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff // Make the marker and the resetString display so their placement and borderRadius can be calculated, then hide them again.
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff // We would have used visibility:hidden in the css of this class,
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff // but IE8 VML never returns to visible after applying visibility:hidden then removing it.
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.addClass(Dial.CSS_CLASSES.hidden);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._resetString.addClass(Dial.CSS_CLASSES.hidden);
7e21402185b2bb1c42859a8dca7863be3759647dJeff Conniff this._centerYOnPage = (this._ringNode.getY() + this._ringNodeRadius); // moved from _handleDragStart for [#2530206]
7e21402185b2bb1c42859a8dca7863be3759647dJeff Conniff this._centerXOnPage = (this._ringNode.getX() + this._ringNodeRadius); // moved from _handleDragStart for [#2530206]
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * sets the sizes of ring, center-button, marker, handle, and VML ovals in pixels.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * Needed only because some IE versions
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * ignore CSS percent sizes/offsets.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * so these must be set in pixels.
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff * Normally these are set in % of the ring.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * @method _setSizes
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);
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff setSize(this._handleNode, dia, this.get('handleDiameter'));
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff setSize(this._markerNode, dia, this.get('markerDiameter'));
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff setSize(this._centerButtonNode, dia, this.get('centerButtonDiameter'));
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff // Set these (used for trig) this way instead of relative to dia,
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff // in case they have borders, have images etc.
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._ringNodeRadius = this._ringNode.get('offsetWidth') * 0.5;
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._handleNodeRadius = this._handleNode.get('offsetWidth') * 0.5;
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._markerNodeRadius = this._markerNode.get('offsetWidth') * 0.5;
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._centerButtonNodeRadius = this._centerButtonNode.get('offsetWidth') * 0.5;
7928e2ef0532df9064d9374ceda31d6ab080eb2dJeff Conniff this._handleDistance = this._ringNodeRadius * this.get('handleDistance');
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff // place the centerButton
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff offset = (this._ringNodeRadius - this._centerButtonNodeRadius);
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._centerButtonNode.setStyle('left', offset + 'px');
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._centerButtonNode.setStyle('top', offset + 'px');
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff Place the resetString
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff This seems like it should be able to be done with CSS,
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff But since there is also a VML oval in IE that is absolute positioned,
11b81e1c54469a27a52271a2bcff20794d259d27Jeff Conniff The resetString ends up behind the VML oval.
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff offsetResetX = (this._centerButtonNodeRadius - (this._resetString.get('offsetWidth') * 0.5));
189003a5b9ed3b1168f3331a2d4213bb08bf0d86Jeff Conniff offsetResetY = (this._centerButtonNodeRadius - (this._resetString.get('offsetHeight') * 0.5));
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._resetString.setStyles({'left':offsetResetX + 'px', 'top':offsetResetY + 'px'});
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);
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);
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this._resetString = this._centerButtonNode.one('.' + Dial.CSS_CLASSES.resetString);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * renders the DOM object for the Dial's user draggable handle
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _renderHandle
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
7defd8450188bddcb9e79a7d1c2246aa027ed78fJeff 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);
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * sets the visible UI label HTML string
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setLabelString
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @param str {HTML}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @deprecated Use DialObjName.set('strings',{'label':'My new label'}); before DialObjName.render();
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this.get("contentBox").one("." + Dial.CSS_CLASSES.labelString).setContent(str);
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * sets the visible UI label HTML string
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setResetString
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @param str {HTML}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @deprecated Use DialObjName.set('strings',{'resetStr':'My new reset string'}); before DialObjName.render();
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff this.get("contentBox").one("." + Dial.CSS_CLASSES.resetString).setContent(str);
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff // this._setXYResetString(); // This used to recenter the string in the button. Done with CSS now. Method has been removed.
691af6c84a00ad5f629ffcfa3b1e42c38da5da4fJeff Conniff // this._resetString.setContent(''); //We no longer show/hide the reset string with setContent but by addClass and removeClass .yui3-dial-reset-string-hidden
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * sets the tooltip HTML string in the Dial's handle
db4ce980273cc4e9e42eebf699de9b44b51768a4Jeff Conniff * @method _setTooltipString
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @param str {HTML}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
aa1805d3af3a9ac854fadba9707e18ee5f006804Jeff Conniff * @deprecated Use DialObjName.set('strings',{'tooltipHandle':'My new tooltip'}); before DialObjName.render();
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"));
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff // [#2530045] .toFixed returns a string.
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff // Dial's value needs a number. -0 makes it a number, but removes trailing zeros.
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff // Added toFixed(...) again in _uiSetValue where content of yui3-dial-value-string is set.
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff // Removing the toFixed here, loses the feature of "snap-to" when for example, stepsPerRevolution is 10 and decimalPlaces is 0.
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff 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"));
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff 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"));
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff 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"));
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff this.set('value', newVal.toFixed(this.get('decimalPlaces')) - 0);
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * sets Dial value to dial's max attr
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * @method _setToMax
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * sets Dial value to dial's min attr
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * @method _setToMin
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * resets Dial value to the orignal initial value.
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff * @method _resetDial
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
7e21402185b2bb1c42859a8dca7863be3759647dJeff Conniff _resetDial : function(e){
0ed6176253fa9ba4e1c0825cca2f4cd707681f02Jeff Conniff e.stopPropagation(); //[#2530206] need to add so mousedown doesn't propagate to ring and move the handle
b6728820ae681622a056c2cd665139f59789c664Jeff Conniff this._resetString.addClass(Dial.CSS_CLASSES.hidden); //[#2530441]
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * returns the handle angle associated with the current value of the Dial.
95291e847f8b5eb9c289221ca612fc7b7dff8bb9Jeff Conniff * Returns a number between 0 and 360.
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
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff var nonWrappedPartOfValue = newVal % this._stepsPerRevolution,
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff angleFromValue = nonWrappedPartOfValue / this._stepsPerRevolution * 360;
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff return (angleFromValue < 0) ? (angleFromValue + 360) : angleFromValue;
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
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff var value = (angle / 360) * this._stepsPerRevolution;
62280f8683de7078a1eb123153c33822cd3bca37Jeff Conniff value = (value + (this._timesWrapped * this._stepsPerRevolution));
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff //return Math.round(value * 100) / 100;
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff 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
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff * Changes a value to have the correct decimal places per the attribute decimalPlaces
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff * @method _valueToDecimalPlaces
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff * @param val {Number} a raw value to set to the Dial
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff * @return {Number} the input val changed to have the correct decimal places
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff * @protected
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff _valueToDecimalPlaces : function(val) { // [#2530206] cleaned up and better user feedback of when it's max or min.
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
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff _uiSetValue : function(val) { // [#2530206] cleaned up and better user feedback of when it's max or min.
59927fc7ef43db5ef49fce3811b307e2f0a4267cJeff Conniff if(this._handleNode.hasClass(Dial.CSS_CLASSES.dragging) === false){
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._setNodeToFixedRadius(this._handleNode, false);
41a8874f3c14857a5a311a43eaf30a123f376771Jeff Conniff this._prevAng = this._getAngleFromValue(this.get('value'));
ee795fdb0aaa73a9c3d348fd05149c573012185aJeff Conniff this._valueStringNode.setContent(val.toFixed(this.get('decimalPlaces'))); // [#2530045]
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._setNodeToFixedRadius(this._markerNode, false);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff if((val === this._maxValue) || (val === this._minValue)){
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.addClass(Dial.CSS_CLASSES.markerMaxMin);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.getElementsByTagName('fill').set('color', '#AB3232');
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.removeClass(Dial.CSS_CLASSES.hidden);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff }else{ // not max or min
624b3d25f12c6e63f607b2690315293ad7ef6481Jeff Conniff this._markerNode.getElementsByTagName('fill').set('color', '#000');
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.removeClass(Dial.CSS_CLASSES.markerMaxMin);
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff if(this._handleNode.hasClass(Dial.CSS_CLASSES.dragging) === false){ // if not max || min, and not dragging handle, hide the marker
4af2659c7f72aa2813a2eea32fcc568bbea27de7Jeff Conniff this._markerNode.addClass(Dial.CSS_CLASSES.hidden);
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);