/** * @license * Visual Blocks Editor * * Copyright 2012 Google Inc. * https://developers.google.com/blockly/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @fileoverview Colour input field. * @author fraser@google.com (Neil Fraser) */ 'use strict'; goog.provide('Blockly.FieldColour'); goog.require('Blockly.Field'); goog.require('Blockly.utils'); goog.require('goog.dom'); goog.require('goog.events'); goog.require('goog.style'); goog.require('goog.ui.ColorPicker'); /** * Class for a colour input field. * @param {string} colour The initial colour in '#rrggbb' format. * @param {Function=} opt_validator A function that is executed when a new * colour is selected. Its sole argument is the new colour value. Its * return value becomes the selected colour, unless it is undefined, in * which case the new colour stands, or it is null, in which case the change * is aborted. * @extends {Blockly.Field} * @constructor */ Blockly.FieldColour = function(colour, opt_validator) { Blockly.FieldColour.superClass_.constructor.call(this, colour, opt_validator); this.addArgType('colour'); }; goog.inherits(Blockly.FieldColour, Blockly.Field); /** * Construct a FieldColour from a JSON arg object. * @param {!Object} options A JSON object with options (colour). * @returns {!Blockly.FieldColour} The new field instance. * @package * @nocollapse */ Blockly.FieldColour.fromJson = function(options) { return new Blockly.FieldColour(options['colour']); }; /** * By default use the global constants for colours. * @type {Array.<string>} * @private */ Blockly.FieldColour.prototype.colours_ = null; /** * By default use the global constants for columns. * @type {number} * @private */ Blockly.FieldColour.prototype.columns_ = 0; /** * Install this field on a block. * @param {!Blockly.Block} block The block containing this field. */ Blockly.FieldColour.prototype.init = function(block) { if (this.fieldGroup_) { // Colour field has already been initialized once. return; } Blockly.FieldColour.superClass_.init.call(this, block); this.setValue(this.getValue()); }; /** * Mouse cursor style when over the hotspot that initiates the editor. */ Blockly.FieldColour.prototype.CURSOR = 'default'; /** * Close the colour picker if this input is being deleted. */ Blockly.FieldColour.prototype.dispose = function() { Blockly.WidgetDiv.hideIfOwner(this); Blockly.FieldColour.superClass_.dispose.call(this); }; /** * Return the current colour. * @return {string} Current colour in '#rrggbb' format. */ Blockly.FieldColour.prototype.getValue = function() { return this.colour_; }; /** * Set the colour. * @param {string} colour The new colour in '#rrggbb' format. */ Blockly.FieldColour.prototype.setValue = function(colour) { if (this.sourceBlock_ && Blockly.Events.isEnabled() && this.colour_ != colour) { Blockly.Events.fire(new Blockly.Events.BlockChange( this.sourceBlock_, 'field', this.name, this.colour_, colour)); } this.colour_ = colour; if (this.sourceBlock_) { // Set the primary, secondary, tertiary, and quaternary colour to this value. // The renderer expects to be able to use the secondary color as the fill for a shadow. this.sourceBlock_.setColour(colour, colour, colour, colour); } }; /** * Get the text from this field. Used when the block is collapsed. * @return {string} Current text. */ Blockly.FieldColour.prototype.getText = function() { var colour = this.colour_; // Try to use #rgb format if possible, rather than #rrggbb. var m = colour.match(/^#(.)\1(.)\2(.)\3$/); if (m) { colour = '#' + m[1] + m[2] + m[3]; } return colour; }; /** * Returns the fixed height and width. * @return {!goog.math.Size} Height and width. */ Blockly.FieldColour.prototype.getSize = function() { return new goog.math.Size(Blockly.BlockSvg.FIELD_WIDTH, Blockly.BlockSvg.FIELD_HEIGHT); }; /** * An array of colour strings for the palette. * See bottom of this page for the default: * http://docs.closure-library.googlecode.com/git/closure_goog_ui_colorpicker.js.source.html * @type {!Array.<string>} */ Blockly.FieldColour.COLOURS = goog.ui.ColorPicker.SIMPLE_GRID_COLORS; /** * Number of columns in the palette. */ Blockly.FieldColour.COLUMNS = 7; /** * Set a custom colour grid for this field. * @param {Array.<string>} colours Array of colours for this block, * or null to use default (Blockly.FieldColour.COLOURS). * @return {!Blockly.FieldColour} Returns itself (for method chaining). */ Blockly.FieldColour.prototype.setColours = function(colours) { this.colours_ = colours; return this; }; /** * Set a custom grid size for this field. * @param {number} columns Number of columns for this block, * or 0 to use default (Blockly.FieldColour.COLUMNS). * @return {!Blockly.FieldColour} Returns itself (for method chaining). */ Blockly.FieldColour.prototype.setColumns = function(columns) { this.columns_ = columns; return this; }; /** * Create a palette under the colour field. * @private */ Blockly.FieldColour.prototype.showEditor_ = function() { Blockly.WidgetDiv.show(this, this.sourceBlock_.RTL, Blockly.FieldColour.widgetDispose_); // Record viewport dimensions before adding the widget. var viewportBBox = Blockly.utils.getViewportBBox(); var anchorBBox = this.getScaledBBox_(); // Create and add the colour picker, then record the size. var picker = this.createWidget_(); var paletteSize = goog.style.getSize(picker.getElement()); // Position the picker to line up with the field. Blockly.WidgetDiv.positionWithAnchor(viewportBBox, anchorBBox, paletteSize, this.sourceBlock_.RTL); // Configure event handler. var thisField = this; Blockly.FieldColour.changeEventKey_ = goog.events.listen(picker, goog.ui.ColorPicker.EventType.CHANGE, function(event) { var colour = event.target.getSelectedColor() || '#000000'; Blockly.WidgetDiv.hide(); if (thisField.sourceBlock_) { // Call any validation function, and allow it to override. colour = thisField.callValidator(colour); } if (colour !== null) { thisField.setValue(colour); } }); }; /** * Create a color picker widget and render it inside the widget div. * @return {!goog.ui.ColorPicker} The newly created color picker. * @private */ Blockly.FieldColour.prototype.createWidget_ = function() { // Create the palette using Closure. var picker = new goog.ui.ColorPicker(); picker.setSize(this.columns_ || Blockly.FieldColour.COLUMNS); picker.setColors(this.colours_ || Blockly.FieldColour.COLOURS); var div = Blockly.WidgetDiv.DIV; picker.render(div); picker.setSelectedColor(this.getValue()); return picker; }; /** * Hide the colour palette. * @private */ Blockly.FieldColour.widgetDispose_ = function() { if (Blockly.FieldColour.changeEventKey_) { goog.events.unlistenByKey(Blockly.FieldColour.changeEventKey_); } Blockly.Events.setGroup(false); }; Blockly.Field.register('field_colour', Blockly.FieldColour);