Dial.js revision 2aa0883432cf56a974eb9261afcf6ede4313384c
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
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * diameter of the circular background object
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * other objects scale accordingly
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @attribute diameter
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @type {Number} the number of px in diameter
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default 100
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}
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
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}
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @default <div class="[...-marker] marker-hidden"><div class="[...-markerUser]"></div></div>
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.marker + ' marker-hidden"><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>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff Dial.MARKER_TEMPLATE = '<div class="' + Dial.CSS_CLASSES.marker + ' marker-hidden">'+
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff '<xml:namespace ns="urn:schemas-microsoft-com:vml" prefix="v"/><v:oval stroked="false" class="' + Dial.CSS_CLASSES.markerUser + '">'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<v:fill opacity="20%" color="#000"/>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff 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 + '">'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<v:oval stroked="false" class="' + Dial.CSS_CLASSES.handleUser + '"'+
2353184083624510261e335c156a05e8cae2fc41Jeff Conniff ' aria-labelledby="' + labelId + '" aria-valuetext="" aria-valuemax="" aria-valuemin="" aria-valuenow="" role="slider" tabindex="0" title="{tooltipHandle}">'+ //title="{tooltipHandle}"
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff '<v:fill opacity="20%" color="#6C3A3A"/>'+
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff 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() {
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff if(supportsVML){
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff this._setVMLSizes();
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'));
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){
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var ang = Math.atan( (this._centerYOnPage - e.pageY) / (this._centerXOnPage - e.pageX) ) * (180 / Math.PI),
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff // check for need to set timesWrapped
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff if(e.pageY < this._centerYOnPage){ //if handle is above the middle of the dial...
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff if((this._prevX <= this._centerXOnPage) && (e.pageX > this._centerXOnPage)){ // If wrapping, clockwise
24ef71067b8f34f90df1fc636a73424647c97f4bJeff Conniff }else if((this._prevX > this._centerXOnPage) && (e.pageX <= 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
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
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff }, Y.bind(function(){
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
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * If no param is passed, [X,Y] is returned.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * If param is passed, the XY of the node passed is set.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method _setNodeToFixedRadius
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param obj {Node}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @return {Array} an array of [XY] is optionally returned
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var newY = Math.round(Math.sin(thisAngle * rad) * this._handleDist);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff var newX = Math.round(Math.cos(thisAngle * rad) * this._handleDist);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff obj.setXY([(this._ringNode.getX() + this._centerX + newX), (this._ringNode.getY() + this._centerY + newY)]);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff }else{ // 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];
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * Synchronizes the DOM state with the attribute settings.
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method syncUI
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff syncUI : function() {
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff // Trying to fix the bug: "- ie8 ignores percent style sizes/offsets"
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff // After applying other fixes, it seems to not be a problem
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff // Needs more testing
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff // See where it's called above in renderUI
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff _setVMLSizes : function(){
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff var dia = this.get('diameter');
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff var setSize = function(node, dia, percent){
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff var suffix = 'px';
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //alert(node.getElementsByTagName('fill').getStyle('width') + 'hello');
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff node.getElementsByTagName('fill').setStyle('width', (dia * percent) + suffix);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff node.getElementsByTagName('fill').setStyle('height', (dia * percent) + suffix);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff //alert(node.getElementsByTagName('fill').getStyle('width') + ' after');
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff setSize(this._ringNode, dia, 1.0);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff setSize(this._handleUserNode, dia, 0.2);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff setSize(this._markerUserNode, dia, 0.1);
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff setSize(this._centerButtonNode, dia, 0.5);
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);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._markerUserNode = this._markerNode.one('.' + Dial.CSS_CLASSES.markerUser);
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
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff //var offset = (this._ringNode.get('region').width - this._centerButtonNode.get('region').width) / 2;
44c68f247b9311ea767cb4656220793317e3383bJeff Conniff var offset = this._ringNode.get('region').width * 0.25; //better in IE
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._centerButtonNode.setXY([(this._ringNode.getX() + offset), (this._ringNode.getY() + offset)]);
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);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode = this._handleNode.one('.' + Dial.CSS_CLASSES.handleUser);
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * sets the visible UI label string
736745cee753d967cf5fb1063c21578ecca61b4aJeff 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
736745cee753d967cf5fb1063c21578ecca61b4aJeff 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
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @method setTooltipString
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff * @param str {String}
f47f024e093853ad3957be898687fc8317a835daJeff Conniff * @protected
736745cee753d967cf5fb1063c21578ecca61b4aJeff Conniff this.get("contentBox").one("." + Dial.CSS_CLASSES.handleUser).set('title', str);
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){
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuenow', val);
df71f95acec70ebddf0ab97cc1e0ff2b70048017Jeff Conniff this._handleUserNode.set('aria-valuetext', val);
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');
2aa0883432cf56a974eb9261afcf6ede4313384cJeff Conniff this._markerUserNode.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);