123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- /*
- * Copyright (C) 2011 Brian Grinstead All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- * its contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
- * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- /**
- * @constructor
- * @extends {WebInspector.View}
- */
- WebInspector.Spectrum = function()
- {
- WebInspector.View.call(this);
- this.registerRequiredCSS("spectrum.css");
- this.element.className = "spectrum-container";
- this.element.tabIndex = 0;
- var topElement = this.element.createChild("div", "spectrum-top");
- topElement.createChild("div", "spectrum-fill");
- var topInnerElement = topElement.createChild("div", "spectrum-top-inner fill");
- this._draggerElement = topInnerElement.createChild("div", "spectrum-color");
- this._dragHelperElement = this._draggerElement.createChild("div", "spectrum-sat fill").createChild("div", "spectrum-val fill").createChild("div", "spectrum-dragger");
- this._sliderElement = topInnerElement.createChild("div", "spectrum-hue");
- this.slideHelper = this._sliderElement.createChild("div", "spectrum-slider");
- var rangeContainer = this.element.createChild("div", "spectrum-range-container");
- var alphaLabel = rangeContainer.createChild("label");
- alphaLabel.textContent = WebInspector.UIString("\u03B1:");
- this._alphaElement = rangeContainer.createChild("input", "spectrum-range");
- this._alphaElement.setAttribute("type", "range");
- this._alphaElement.setAttribute("min", "0");
- this._alphaElement.setAttribute("max", "100");
- this._alphaElement.addEventListener("change", alphaDrag.bind(this), false);
- var swatchElement = document.createElement("span");
- swatchElement.className = "swatch";
- this._swatchInnerElement = swatchElement.createChild("span", "swatch-inner");
- var displayContainer = this.element.createChild("div");
- displayContainer.appendChild(swatchElement);
- this._displayElement = displayContainer.createChild("span", "source-code spectrum-display-value");
- WebInspector.Spectrum.draggable(this._sliderElement, hueDrag.bind(this));
- WebInspector.Spectrum.draggable(this._draggerElement, colorDrag.bind(this), colorDragStart.bind(this));
- function hueDrag(element, dragX, dragY)
- {
- this.hsv[0] = (dragY / this.slideHeight);
- this._onchange();
- }
- var initialHelperOffset;
- function colorDragStart(element, dragX, dragY)
- {
- initialHelperOffset = { x: this._dragHelperElement.offsetLeft, y: this._dragHelperElement.offsetTop };
- }
- function colorDrag(element, dragX, dragY, event)
- {
- if (event.shiftKey) {
- if (Math.abs(dragX - initialHelperOffset.x) >= Math.abs(dragY - initialHelperOffset.y))
- dragY = initialHelperOffset.y;
- else
- dragX = initialHelperOffset.x;
- }
- this.hsv[1] = dragX / this.dragWidth;
- this.hsv[2] = (this.dragHeight - dragY) / this.dragHeight;
- this._onchange();
- }
- function alphaDrag()
- {
- this.hsv[3] = this._alphaElement.value / 100;
- this._onchange();
- }
- };
- WebInspector.Spectrum.Events = {
- ColorChanged: "ColorChanged"
- };
- WebInspector.Spectrum.hsvaToRGBA = function(h, s, v, a)
- {
- var r, g, b;
- var i = Math.floor(h * 6);
- var f = h * 6 - i;
- var p = v * (1 - s);
- var q = v * (1 - f * s);
- var t = v * (1 - (1 - f) * s);
- switch(i % 6) {
- case 0:
- r = v, g = t, b = p;
- break;
- case 1:
- r = q, g = v, b = p;
- break;
- case 2:
- r = p, g = v, b = t;
- break;
- case 3:
- r = p, g = q, b = v;
- break;
- case 4:
- r = t, g = p, b = v;
- break;
- case 5:
- r = v, g = p, b = q;
- break;
- }
- return [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255), a];
- };
- WebInspector.Spectrum.rgbaToHSVA = function(r, g, b, a)
- {
- r = r / 255;
- g = g / 255;
- b = b / 255;
- var max = Math.max(r, g, b);
- var min = Math.min(r, g, b);
- var h;
- var s;
- var v = max;
- var d = max - min;
- s = max ? d / max : 0;
- if(max === min) {
- // Achromatic.
- h = 0;
- } else {
- switch(max) {
- case r:
- h = (g - b) / d + (g < b ? 6 : 0);
- break;
- case g:
- h = (b - r) / d + 2;
- break;
- case b:
- h = (r - g) / d + 4;
- break;
- }
- h /= 6;
- }
- return [h, s, v, a];
- };
- //FIXME: migrate to WebInspector.installDragHandle
- /**
- * @param {Function=} onmove
- * @param {Function=} onstart
- * @param {Function=} onstop
- */
- WebInspector.Spectrum.draggable = function(element, onmove, onstart, onstop) {
- var doc = document;
- var dragging;
- var offset;
- var scrollOffset;
- var maxHeight;
- var maxWidth;
- function consume(e)
- {
- e.consume(true);
- }
- function move(e)
- {
- if (dragging) {
- var dragX = Math.max(0, Math.min(e.pageX - offset.left + scrollOffset.left, maxWidth));
- var dragY = Math.max(0, Math.min(e.pageY - offset.top + scrollOffset.top, maxHeight));
- if (onmove)
- onmove(element, dragX, dragY, e);
- }
- }
- function start(e)
- {
- var rightClick = e.which ? (e.which === 3) : (e.button === 2);
- if (!rightClick && !dragging) {
- if (onstart)
- onstart(element, e)
- dragging = true;
- maxHeight = element.clientHeight;
- maxWidth = element.clientWidth;
- scrollOffset = element.scrollOffset();
- offset = element.totalOffset();
- doc.addEventListener("selectstart", consume, false);
- doc.addEventListener("dragstart", consume, false);
- doc.addEventListener("mousemove", move, false);
- doc.addEventListener("mouseup", stop, false);
- move(e);
- consume(e);
- }
- }
- function stop(e)
- {
- if (dragging) {
- doc.removeEventListener("selectstart", consume, false);
- doc.removeEventListener("dragstart", consume, false);
- doc.removeEventListener("mousemove", move, false);
- doc.removeEventListener("mouseup", stop, false);
- if (onstop)
- onstop(element, e);
- }
- dragging = false;
- }
- element.addEventListener("mousedown", start, false);
- };
- WebInspector.Spectrum.prototype = {
- /**
- * @type {WebInspector.Color}
- */
- set color(color)
- {
- var rgba = (color.rgba || color.rgb).slice(0);
- if (rgba.length === 3)
- rgba[3] = 1;
- this.hsv = WebInspector.Spectrum.rgbaToHSVA(rgba[0], rgba[1], rgba[2], rgba[3]);
- },
- get color()
- {
- var rgba = WebInspector.Spectrum.hsvaToRGBA(this.hsv[0], this.hsv[1], this.hsv[2], this.hsv[3]);
- var color;
- if (rgba[3] === 1)
- color = WebInspector.Color.fromRGB(rgba[0], rgba[1], rgba[2]);
- else
- color = WebInspector.Color.fromRGBA(rgba[0], rgba[1], rgba[2], rgba[3]);
- var colorValue = color.toString(this.outputColorFormat);
- if (!colorValue)
- colorValue = color.toString(); // this.outputColorFormat can be invalid for current color (e.g. "nickname").
- return WebInspector.Color.parse(colorValue);
- },
- get outputColorFormat()
- {
- var cf = WebInspector.Color.Format;
- var format = this._originalFormat;
- if (this.hsv[3] === 1) {
- // Simplify transparent formats.
- if (format === cf.RGBA)
- format = cf.RGB;
- else if (format === cf.HSLA)
- format = cf.HSL;
- } else {
- // Everything except HSL(A) should be returned as RGBA if transparency is involved.
- if (format === cf.HSL || format === cf.HSLA)
- format = cf.HSLA;
- else
- format = cf.RGBA;
- }
- return format;
- },
- get colorHueOnly()
- {
- var rgba = WebInspector.Spectrum.hsvaToRGBA(this.hsv[0], 1, 1, 1);
- return WebInspector.Color.fromRGBA(rgba[0], rgba[1], rgba[2], rgba[3]);
- },
- set displayText(text)
- {
- this._displayElement.textContent = text;
- },
- _onchange: function()
- {
- this._updateUI();
- this.dispatchEventToListeners(WebInspector.Spectrum.Events.ColorChanged, this.color);
- },
- _updateHelperLocations: function()
- {
- var h = this.hsv[0];
- var s = this.hsv[1];
- var v = this.hsv[2];
- // Where to show the little circle that displays your current selected color.
- var dragX = s * this.dragWidth;
- var dragY = this.dragHeight - (v * this.dragHeight);
- dragX = Math.max(-this._dragHelperElementHeight,
- Math.min(this.dragWidth - this._dragHelperElementHeight, dragX - this._dragHelperElementHeight));
- dragY = Math.max(-this._dragHelperElementHeight,
- Math.min(this.dragHeight - this._dragHelperElementHeight, dragY - this._dragHelperElementHeight));
- this._dragHelperElement.positionAt(dragX, dragY);
- // Where to show the bar that displays your current selected hue.
- var slideY = (h * this.slideHeight) - this.slideHelperHeight;
- this.slideHelper.style.top = slideY + "px";
- this._alphaElement.value = this.hsv[3] * 100;
- },
- _updateUI: function()
- {
- this._updateHelperLocations();
- var rgb = (this.color.rgba || this.color.rgb).slice(0);
- if (rgb.length === 3)
- rgb[3] = 1;
- var rgbHueOnly = this.colorHueOnly.rgb;
- var flatColor = "rgb(" + rgbHueOnly[0] + ", " + rgbHueOnly[1] + ", " + rgbHueOnly[2] + ")";
- var fullColor = "rgba(" + rgb[0] + ", " + rgb[1] + ", " + rgb[2] + ", " + rgb[3] + ")";
- this._draggerElement.style.backgroundColor = flatColor;
- this._swatchInnerElement.style.backgroundColor = fullColor;
- this._alphaElement.value = this.hsv[3] * 100;
- },
- wasShown: function()
- {
- this.slideHeight = this._sliderElement.offsetHeight;
- this.dragWidth = this._draggerElement.offsetWidth;
- this.dragHeight = this._draggerElement.offsetHeight;
- this._dragHelperElementHeight = this._dragHelperElement.offsetHeight / 2;
- this.slideHelperHeight = this.slideHelper.offsetHeight / 2;
- this._updateUI();
- },
- __proto__: WebInspector.View.prototype
- }
- /**
- * @constructor
- * @extends {WebInspector.Object}
- */
- WebInspector.SpectrumPopupHelper = function()
- {
- this._spectrum = new WebInspector.Spectrum();
- this._spectrum.element.addEventListener("keydown", this._onKeyDown.bind(this), false);
- this._popover = new WebInspector.Popover();
- this._popover.setCanShrink(false);
- this._popover.element.addEventListener("mousedown", consumeEvent, false);
- this._hideProxy = this.hide.bind(this, true);
- }
- WebInspector.SpectrumPopupHelper.Events = {
- Hidden: "Hidden"
- };
- WebInspector.SpectrumPopupHelper.prototype = {
- /**
- * @return {WebInspector.Spectrum}
- */
- spectrum: function()
- {
- return this._spectrum;
- },
- toggle: function(element, color, format)
- {
- if (this._popover.isShowing())
- this.hide(true);
- else
- this.show(element, color, format);
- return this._popover.isShowing();
- },
- show: function(element, color, format)
- {
- if (this._popover.isShowing()) {
- if (this._anchorElement === element)
- return false;
- // Reopen the picker for another anchor element.
- this.hide(true);
- }
- this._anchorElement = element;
- this._spectrum.color = color;
- this._spectrum._originalFormat = format || color.format;
- this.reposition(element);
- document.addEventListener("mousedown", this._hideProxy, false);
- window.addEventListener("blur", this._hideProxy, false);
- return true;
- },
- reposition: function(element)
- {
- if (!this._previousFocusElement)
- this._previousFocusElement = WebInspector.currentFocusElement();
- this._popover.showView(this._spectrum, element);
- WebInspector.setCurrentFocusElement(this._spectrum.element);
- },
- /**
- * @param {boolean=} commitEdit
- */
- hide: function(commitEdit)
- {
- if (!this._popover.isShowing())
- return;
- this._popover.hide();
- document.removeEventListener("mousedown", this._hideProxy, false);
- window.removeEventListener("blur", this._hideProxy, false);
- this.dispatchEventToListeners(WebInspector.SpectrumPopupHelper.Events.Hidden, !!commitEdit);
- WebInspector.setCurrentFocusElement(this._previousFocusElement);
- delete this._previousFocusElement;
- delete this._anchorElement;
- },
- _onKeyDown: function(event)
- {
- if (event.keyIdentifier === "Enter") {
- this.hide(true);
- event.consume(true);
- return;
- }
- if (event.keyIdentifier === "U+001B") { // Escape key
- this.hide(false);
- event.consume(true);
- }
- },
- __proto__: WebInspector.Object.prototype
- }
- /**
- * @constructor
- */
- WebInspector.ColorSwatch = function()
- {
- this.element = document.createElement("span");
- this._swatchInnerElement = this.element.createChild("span", "swatch-inner");
- this.element.title = WebInspector.UIString("Click to open a colorpicker. Shift-click to change color format");
- this.element.className = "swatch";
- this.element.addEventListener("mousedown", consumeEvent, false);
- this.element.addEventListener("dblclick", consumeEvent, false);
- }
- WebInspector.ColorSwatch.prototype = {
- /**
- * @param {string} colorString
- */
- setColorString: function(colorString)
- {
- this._swatchInnerElement.style.backgroundColor = colorString;
- }
- }
|