| /** | |
| * @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 Field. Used for editable titles, variables, etc. | |
| * This is an abstract class that defines the UI on the block. Actual | |
| * instances would be Blockly.FieldTextInput, Blockly.FieldDropdown, etc. | |
| * @author fraser@google.com (Neil Fraser) | |
| */ | |
| ; | |
| goog.provide('Blockly.Field'); | |
| goog.require('Blockly.Events.BlockChange'); | |
| goog.require('Blockly.Gesture'); | |
| goog.require('goog.asserts'); | |
| goog.require('goog.dom'); | |
| goog.require('goog.math.Size'); | |
| goog.require('goog.style'); | |
| goog.require('goog.userAgent'); | |
| /** | |
| * Abstract class for an editable field. | |
| * @param {string} text The initial content of the field. | |
| * @param {Function=} opt_validator An optional function that is called | |
| * to validate any constraints on what the user entered. Takes the new | |
| * text as an argument and returns either the accepted text, a replacement | |
| * text, or null to abort the change. | |
| * @constructor | |
| */ | |
| Blockly.Field = function(text, opt_validator) { | |
| this.size_ = new goog.math.Size( | |
| Blockly.BlockSvg.FIELD_WIDTH, | |
| Blockly.BlockSvg.FIELD_HEIGHT); | |
| this.setValue(text); | |
| this.setValidator(opt_validator); | |
| /** | |
| * Maximum characters of text to display before adding an ellipsis. | |
| * Same for strings and numbers. | |
| * @type {number} | |
| */ | |
| this.maxDisplayLength = Blockly.BlockSvg.MAX_DISPLAY_LENGTH; | |
| }; | |
| /** | |
| * The set of all registered fields, keyed by field type as used in the JSON | |
| * definition of a block. | |
| * @type {!Object<string, !{fromJson: Function}>} | |
| * @private | |
| */ | |
| Blockly.Field.TYPE_MAP_ = {}; | |
| /** | |
| * Registers a field type. May also override an existing field type. | |
| * Blockly.Field.fromJson uses this registry to find the appropriate field. | |
| * @param {!string} type The field type name as used in the JSON definition. | |
| * @param {!{fromJson: Function}} fieldClass The field class containing a | |
| * fromJson function that can construct an instance of the field. | |
| * @throws {Error} if the type name is empty, or the fieldClass is not an | |
| * object containing a fromJson function. | |
| */ | |
| Blockly.Field.register = function(type, fieldClass) { | |
| if (!goog.isString(type) || goog.string.isEmptyOrWhitespace(type)) { | |
| throw new Error('Invalid field type "' + type + '"'); | |
| } | |
| if (!goog.isObject(fieldClass) || !goog.isFunction(fieldClass.fromJson)) { | |
| throw new Error('Field "' + fieldClass + | |
| '" must have a fromJson function'); | |
| } | |
| Blockly.Field.TYPE_MAP_[type] = fieldClass; | |
| }; | |
| /** | |
| * Construct a Field from a JSON arg object. | |
| * Finds the appropriate registered field by the type name as registered using | |
| * Blockly.Field.register. | |
| * @param {!Object} options A JSON object with a type and options specific | |
| * to the field type. | |
| * @returns {?Blockly.Field} The new field instance or null if a field wasn't | |
| * found with the given type name | |
| * @package | |
| */ | |
| Blockly.Field.fromJson = function(options) { | |
| var fieldClass = Blockly.Field.TYPE_MAP_[options['type']]; | |
| if (fieldClass) { | |
| return fieldClass.fromJson(options); | |
| } | |
| return null; | |
| }; | |
| /** | |
| * Temporary cache of text widths. | |
| * @type {Object} | |
| * @private | |
| */ | |
| Blockly.Field.cacheWidths_ = null; | |
| /** | |
| * Number of current references to cache. | |
| * @type {number} | |
| * @private | |
| */ | |
| Blockly.Field.cacheReference_ = 0; | |
| /** | |
| * Name of field. Unique within each block. | |
| * Static labels are usually unnamed. | |
| * @type {string|undefined} | |
| */ | |
| Blockly.Field.prototype.name = undefined; | |
| /** | |
| * CSS class name for the text element. | |
| * @type {string} | |
| * @package | |
| */ | |
| Blockly.Field.prototype.className_ = 'blocklyText'; | |
| /** | |
| * Visible text to display. | |
| * @type {string} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.text_ = ''; | |
| /** | |
| * Block this field is attached to. Starts as null, then in set in init. | |
| * @type {Blockly.Block} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.sourceBlock_ = null; | |
| /** | |
| * Is the field visible, or hidden due to the block being collapsed? | |
| * @type {boolean} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.visible_ = true; | |
| /** | |
| * Null, or an array of the field's argTypes (for styling). | |
| * @type {Array} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.argType_ = null; | |
| /** | |
| * Validation function called when user edits an editable field. | |
| * @type {Function} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.validator_ = null; | |
| /** | |
| * Whether to assume user is using a touch device for interactions. | |
| * Used to show different UI for touch interactions, e.g. | |
| * @type {boolean} | |
| * @private | |
| */ | |
| Blockly.Field.prototype.useTouchInteraction_ = false; | |
| /** | |
| * Non-breaking space. | |
| * @const | |
| */ | |
| Blockly.Field.NBSP = '\u00A0'; | |
| /** | |
| * Text offset used for IE/Edge. | |
| * @const | |
| */ | |
| Blockly.Field.IE_TEXT_OFFSET = '0.3em'; | |
| /** | |
| * Editable fields usually show some sort of UI for the user to change them. | |
| * @type {boolean} | |
| * @public | |
| */ | |
| Blockly.Field.prototype.EDITABLE = true; | |
| /** | |
| * Serializable fields are saved by the XML renderer, non-serializable fields | |
| * are not. Editable fields should be serialized. | |
| * @type {boolean} | |
| * @public | |
| */ | |
| Blockly.Field.prototype.SERIALIZABLE = true; | |
| /** | |
| * Attach this field to a block. | |
| * @param {!Blockly.Block} block The block containing this field. | |
| */ | |
| Blockly.Field.prototype.setSourceBlock = function(block) { | |
| goog.asserts.assert(!this.sourceBlock_, 'Field already bound to a block.'); | |
| this.sourceBlock_ = block; | |
| }; | |
| /** | |
| * Install this field on a block. | |
| */ | |
| Blockly.Field.prototype.init = function() { | |
| if (this.fieldGroup_) { | |
| // Field has already been initialized once. | |
| return; | |
| } | |
| // Build the DOM. | |
| this.fieldGroup_ = Blockly.utils.createSvgElement('g', {}, null); | |
| if (!this.visible_) { | |
| this.fieldGroup_.style.display = 'none'; | |
| } | |
| // Add an attribute to cassify the type of field. | |
| if (this.getArgTypes() !== null) { | |
| if (this.sourceBlock_.isShadow()) { | |
| this.sourceBlock_.svgGroup_.setAttribute('data-argument-type', | |
| this.getArgTypes()); | |
| } else { | |
| // Fields without a shadow wrapper, like square dropdowns. | |
| this.fieldGroup_.setAttribute('data-argument-type', this.getArgTypes()); | |
| } | |
| } | |
| // Adjust X to be flipped for RTL. Position is relative to horizontal start of source block. | |
| var size = this.getSize(); | |
| var fieldX = (this.sourceBlock_.RTL) ? -size.width / 2 : size.width / 2; | |
| /** @type {!Element} */ | |
| this.textElement_ = Blockly.utils.createSvgElement('text', | |
| { | |
| 'class': this.className_, | |
| 'x': fieldX, | |
| 'y': size.height / 2 + Blockly.BlockSvg.FIELD_TOP_PADDING, | |
| 'dominant-baseline': 'middle', | |
| 'dy': goog.userAgent.EDGE_OR_IE ? Blockly.Field.IE_TEXT_OFFSET : '0', | |
| 'text-anchor': 'middle' | |
| }, this.fieldGroup_); | |
| this.updateEditable(); | |
| this.sourceBlock_.getSvgRoot().appendChild(this.fieldGroup_); | |
| // Force a render. | |
| this.render_(); | |
| this.size_.width = 0; | |
| this.mouseDownWrapper_ = Blockly.bindEventWithChecks_( | |
| this.getClickTarget_(), 'mousedown', this, this.onMouseDown_); | |
| }; | |
| /** | |
| * Initializes the model of the field after it has been installed on a block. | |
| * No-op by default. | |
| */ | |
| Blockly.Field.prototype.initModel = function() { | |
| }; | |
| /** | |
| * Dispose of all DOM objects belonging to this editable field. | |
| */ | |
| Blockly.Field.prototype.dispose = function() { | |
| if (this.mouseDownWrapper_) { | |
| Blockly.unbindEvent_(this.mouseDownWrapper_); | |
| this.mouseDownWrapper_ = null; | |
| } | |
| this.sourceBlock_ = null; | |
| goog.dom.removeNode(this.fieldGroup_); | |
| this.fieldGroup_ = null; | |
| this.textElement_ = null; | |
| this.validator_ = null; | |
| }; | |
| /** | |
| * Add or remove the UI indicating if this field is editable or not. | |
| */ | |
| Blockly.Field.prototype.updateEditable = function() { | |
| var group = this.fieldGroup_; | |
| if (!this.EDITABLE || !group) { | |
| return; | |
| } | |
| if (this.sourceBlock_.isEditable()) { | |
| Blockly.utils.addClass(group, 'blocklyEditableText'); | |
| Blockly.utils.removeClass(group, 'blocklyNonEditableText'); | |
| this.fieldGroup_.style.cursor = this.CURSOR; | |
| } else { | |
| Blockly.utils.addClass(group, 'blocklyNonEditableText'); | |
| Blockly.utils.removeClass(group, 'blocklyEditableText'); | |
| this.fieldGroup_.style.cursor = ''; | |
| } | |
| }; | |
| /** | |
| * Check whether this field is currently editable. Some fields are never | |
| * editable (e.g. text labels). Those fields are not serialized to XML. Other | |
| * fields may be editable, and therefore serialized, but may exist on | |
| * non-editable blocks. | |
| * @return {boolean} whether this field is editable and on an editable block | |
| */ | |
| Blockly.Field.prototype.isCurrentlyEditable = function() { | |
| return this.EDITABLE && !!this.sourceBlock_ && this.sourceBlock_.isEditable(); | |
| }; | |
| /** | |
| * Gets whether this editable field is visible or not. | |
| * @return {boolean} True if visible. | |
| */ | |
| Blockly.Field.prototype.isVisible = function() { | |
| return this.visible_; | |
| }; | |
| /** | |
| * Sets whether this editable field is visible or not. | |
| * @param {boolean} visible True if visible. | |
| */ | |
| Blockly.Field.prototype.setVisible = function(visible) { | |
| if (this.visible_ == visible) { | |
| return; | |
| } | |
| this.visible_ = visible; | |
| var root = this.getSvgRoot(); | |
| if (root) { | |
| root.style.display = visible ? 'block' : 'none'; | |
| this.render_(); | |
| } | |
| }; | |
| /** | |
| * Adds a string to the field's array of argTypes (used for styling). | |
| * @param {string} argType New argType. | |
| */ | |
| Blockly.Field.prototype.addArgType = function(argType) { | |
| if (this.argType_ == null) { | |
| this.argType_ = []; | |
| } | |
| this.argType_.push(argType); | |
| }; | |
| /** | |
| * Gets the field's argTypes joined as a string, or returns null (used for styling). | |
| * @return {string} argType string, or null. | |
| */ | |
| Blockly.Field.prototype.getArgTypes = function() { | |
| if (this.argType_ === null || this.argType_.length === 0) { | |
| return null; | |
| } else { | |
| return this.argType_.join(' '); | |
| } | |
| }; | |
| /** | |
| * Sets a new validation function for editable fields. | |
| * @param {Function} handler New validation function, or null. | |
| */ | |
| Blockly.Field.prototype.setValidator = function(handler) { | |
| this.validator_ = handler; | |
| }; | |
| /** | |
| * Gets the validation function for editable fields. | |
| * @return {Function} Validation function, or null. | |
| */ | |
| Blockly.Field.prototype.getValidator = function() { | |
| return this.validator_; | |
| }; | |
| /** | |
| * Validates a change. Does nothing. Subclasses may override this. | |
| * @param {string} text The user's text. | |
| * @return {string} No change needed. | |
| */ | |
| Blockly.Field.prototype.classValidator = function(text) { | |
| return text; | |
| }; | |
| /** | |
| * Calls the validation function for this field, as well as all the validation | |
| * function for the field's class and its parents. | |
| * @param {string} text Proposed text. | |
| * @return {?string} Revised text, or null if invalid. | |
| */ | |
| Blockly.Field.prototype.callValidator = function(text) { | |
| var classResult = this.classValidator(text); | |
| if (classResult === null) { | |
| // Class validator rejects value. Game over. | |
| return null; | |
| } else if (classResult !== undefined) { | |
| text = classResult; | |
| } | |
| var userValidator = this.getValidator(); | |
| if (userValidator) { | |
| var userResult = userValidator.call(this, text); | |
| if (userResult === null) { | |
| // User validator rejects value. Game over. | |
| return null; | |
| } else if (userResult !== undefined) { | |
| text = userResult; | |
| } | |
| } | |
| return text; | |
| }; | |
| /** | |
| * Gets the group element for this editable field. | |
| * Used for measuring the size and for positioning. | |
| * @return {!Element} The group element. | |
| */ | |
| Blockly.Field.prototype.getSvgRoot = function() { | |
| return /** @type {!Element} */ (this.fieldGroup_); | |
| }; | |
| /** | |
| * Draws the border with the correct width. | |
| * Saves the computed width in a property. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.render_ = function() { | |
| if (this.visible_ && this.textElement_) { | |
| // Replace the text. | |
| this.textElement_.textContent = this.getDisplayText_(); | |
| this.updateWidth(); | |
| // Update text centering, based on newly calculated width. | |
| var centerTextX = (this.size_.width - this.arrowWidth_) / 2; | |
| if (this.sourceBlock_.RTL) { | |
| centerTextX += this.arrowWidth_; | |
| } | |
| // In a text-editing shadow block's field, | |
| // if half the text length is not at least center of | |
| // visible field (FIELD_WIDTH), center it there instead, | |
| // unless there is a drop-down arrow. | |
| if (this.sourceBlock_.isShadow() && !this.positionArrow) { | |
| var minOffset = Blockly.BlockSvg.FIELD_WIDTH / 2; | |
| if (this.sourceBlock_.RTL) { | |
| // X position starts at the left edge of the block, in both RTL and LTR. | |
| // First offset by the width of the block to move to the right edge, | |
| // and then subtract to move to the same position as LTR. | |
| var minCenter = this.size_.width - minOffset; | |
| centerTextX = Math.min(minCenter, centerTextX); | |
| } else { | |
| // (width / 2) should exceed Blockly.BlockSvg.FIELD_WIDTH / 2 | |
| // if the text is longer. | |
| centerTextX = Math.max(minOffset, centerTextX); | |
| } | |
| } | |
| // Apply new text element x position. | |
| this.textElement_.setAttribute('x', centerTextX); | |
| } | |
| // Update any drawn box to the correct width and height. | |
| if (this.box_) { | |
| this.box_.setAttribute('width', this.size_.width); | |
| this.box_.setAttribute('height', this.size_.height); | |
| } | |
| }; | |
| /** | |
| * Updates the width of the field. This calls getCachedWidth which won't cache | |
| * the approximated width on IE/Edge when `getComputedTextLength` fails. Once | |
| * it eventually does succeed, the result will be cached. | |
| **/ | |
| Blockly.Field.prototype.updateWidth = function() { | |
| // Calculate width of field | |
| var width = Blockly.Field.getCachedWidth(this.textElement_); | |
| // Add padding to left and right of text. | |
| if (this.EDITABLE) { | |
| width += Blockly.BlockSvg.EDITABLE_FIELD_PADDING; | |
| } | |
| // Adjust width for drop-down arrows. | |
| this.arrowWidth_ = 0; | |
| if (this.positionArrow) { | |
| this.arrowWidth_ = this.positionArrow(width); | |
| width += this.arrowWidth_; | |
| } | |
| // Add padding to any drawn box. | |
| if (this.box_) { | |
| width += 2 * Blockly.BlockSvg.BOX_FIELD_PADDING; | |
| } | |
| // Set width of the field. | |
| this.size_.width = width; | |
| }; | |
| /** | |
| * Gets the width of a text element, caching it in the process. | |
| * @param {!Element} textElement An SVG 'text' element. | |
| * @return {number} Width of element. | |
| */ | |
| Blockly.Field.getCachedWidth = function(textElement) { | |
| var key = textElement.textContent + '\n' + textElement.className.baseVal; | |
| var width; | |
| // Return the cached width if it exists. | |
| if (Blockly.Field.cacheWidths_) { | |
| width = Blockly.Field.cacheWidths_[key]; | |
| if (width) { | |
| return width; | |
| } | |
| } | |
| // Attempt to compute fetch the width of the SVG text element. | |
| try { | |
| if (goog.userAgent.IE || goog.userAgent.EDGE) { | |
| width = textElement.getBBox().width; | |
| } else { | |
| width = textElement.getComputedTextLength(); | |
| } | |
| } catch (e) { | |
| // In other cases where we fail to geth the computed text. Instead, use an | |
| // approximation and do not cache the result. At some later point in time | |
| // when the block is inserted into the visible DOM, this method will be | |
| // called again and, at that point in time, will not throw an exception. | |
| return textElement.textContent.length * 8; | |
| } | |
| // Cache the computed width and return. | |
| if (Blockly.Field.cacheWidths_) { | |
| Blockly.Field.cacheWidths_[key] = width; | |
| } | |
| return width; | |
| }; | |
| /** | |
| * Start caching field widths. Every call to this function MUST also call | |
| * stopCache. Caches must not survive between execution threads. | |
| */ | |
| Blockly.Field.startCache = function() { | |
| Blockly.Field.cacheReference_++; | |
| if (!Blockly.Field.cacheWidths_) { | |
| Blockly.Field.cacheWidths_ = {}; | |
| } | |
| }; | |
| /** | |
| * Stop caching field widths. Unless caching was already on when the | |
| * corresponding call to startCache was made. | |
| */ | |
| Blockly.Field.stopCache = function() { | |
| Blockly.Field.cacheReference_--; | |
| if (!Blockly.Field.cacheReference_) { | |
| Blockly.Field.cacheWidths_ = null; | |
| } | |
| }; | |
| /** | |
| * Returns the height and width of the field. | |
| * @return {!goog.math.Size} Height and width. | |
| */ | |
| Blockly.Field.prototype.getSize = function() { | |
| if (!this.size_.width) { | |
| this.render_(); | |
| } | |
| return this.size_; | |
| }; | |
| /** | |
| * Returns the bounding box of the rendered field, accounting for workspace | |
| * scaling. | |
| * @return {!Object} An object with top, bottom, left, and right in pixels | |
| * relative to the top left corner of the page (window coordinates). | |
| * @private | |
| */ | |
| Blockly.Field.prototype.getScaledBBox_ = function() { | |
| var size = this.getSize(); | |
| var scaledHeight = size.height * this.sourceBlock_.workspace.scale; | |
| var scaledWidth = size.width * this.sourceBlock_.workspace.scale; | |
| var xy = this.getAbsoluteXY_(); | |
| return { | |
| top: xy.y, | |
| bottom: xy.y + scaledHeight, | |
| left: xy.x, | |
| right: xy.x + scaledWidth | |
| }; | |
| }; | |
| /** | |
| * Get the text from this field as displayed on screen. May differ from getText | |
| * due to ellipsis, and other formatting. | |
| * @return {string} Currently displayed text. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.getDisplayText_ = function() { | |
| var text = this.text_; | |
| if (!text) { | |
| // Prevent the field from disappearing if empty. | |
| return Blockly.Field.NBSP; | |
| } | |
| if (text.length > this.maxDisplayLength) { | |
| // Truncate displayed string and add an ellipsis ('...'). | |
| text = text.substring(0, this.maxDisplayLength - 2) + '\u2026'; | |
| } | |
| // Replace whitespace with non-breaking spaces so the text doesn't collapse. | |
| text = text.replace(/\s/g, Blockly.Field.NBSP); | |
| if (this.sourceBlock_.RTL) { | |
| // The SVG is LTR, force text to be RTL unless a number. | |
| if (this.sourceBlock_.editable_ && this.sourceBlock_.type === 'math_number') { | |
| text = '\u202A' + text + '\u202C'; | |
| } else { | |
| text = '\u202B' + text + '\u202C'; | |
| } | |
| } | |
| return text; | |
| }; | |
| /** | |
| * Get the text from this field. | |
| * @return {string} Current text. | |
| */ | |
| Blockly.Field.prototype.getText = function() { | |
| return this.text_; | |
| }; | |
| /** | |
| * Set the text in this field. Trigger a rerender of the source block. | |
| * @param {*} newText New text. | |
| */ | |
| Blockly.Field.prototype.setText = function(newText) { | |
| if (newText === null) { | |
| // No change if null. | |
| return; | |
| } | |
| newText = String(newText); | |
| if (newText === this.text_) { | |
| // No change. | |
| return; | |
| } | |
| this.text_ = newText; | |
| this.forceRerender(); | |
| }; | |
| /** | |
| * Force a rerender of the block that this field is installed on, which will | |
| * rerender this field and adjust for any sizing changes. | |
| * Other fields on the same block will not rerender, because their sizes have | |
| * already been recorded. | |
| * @package | |
| */ | |
| Blockly.Field.prototype.forceRerender = function() { | |
| // Set width to 0 to force a rerender of this field. | |
| this.size_.width = 0; | |
| if (this.sourceBlock_ && this.sourceBlock_.rendered) { | |
| this.sourceBlock_.render(); | |
| this.sourceBlock_.bumpNeighbours_(); | |
| } | |
| }; | |
| /** | |
| * Update the text node of this field to display the current text. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.updateTextNode_ = function() { | |
| if (!this.textElement_) { | |
| // Not rendered yet. | |
| return; | |
| } | |
| var text = this.text_; | |
| if (text.length > this.maxDisplayLength) { | |
| // Truncate displayed string and add an ellipsis ('...'). | |
| text = text.substring(0, this.maxDisplayLength - 2) + '\u2026'; | |
| // Add special class for sizing font when truncated | |
| this.textElement_.setAttribute('class', this.className_ + ' blocklyTextTruncated'); | |
| } else { | |
| this.textElement_.setAttribute('class', this.className_); | |
| } | |
| // Empty the text element. | |
| goog.dom.removeChildren(/** @type {!Element} */ (this.textElement_)); | |
| // Replace whitespace with non-breaking spaces so the text doesn't collapse. | |
| text = text.replace(/\s/g, Blockly.Field.NBSP); | |
| if (this.sourceBlock_.RTL && text) { | |
| // The SVG is LTR, force text to be RTL. | |
| if (this.sourceBlock_.editable_ && this.sourceBlock_.type === 'math_number') { | |
| text = '\u202A' + text + '\u202C'; | |
| } else { | |
| text = '\u202B' + text + '\u202C'; | |
| } | |
| } | |
| if (!text) { | |
| // Prevent the field from disappearing if empty. | |
| text = Blockly.Field.NBSP; | |
| } | |
| var textNode = document.createTextNode(text); | |
| this.textElement_.appendChild(textNode); | |
| // Cached width is obsolete. Clear it. | |
| this.size_.width = 0; | |
| }; | |
| /** | |
| * By default there is no difference between the human-readable text and | |
| * the language-neutral values. Subclasses (such as dropdown) may define this. | |
| * @return {string} Current value. | |
| */ | |
| Blockly.Field.prototype.getValue = function() { | |
| return this.getText(); | |
| }; | |
| /** | |
| * By default there is no difference between the human-readable text and | |
| * the language-neutral values. Subclasses (such as dropdown) may define this. | |
| * @param {string} newValue New value. | |
| */ | |
| Blockly.Field.prototype.setValue = function(newValue) { | |
| if (newValue === null) { | |
| // No change if null. | |
| return; | |
| } | |
| var oldValue = this.getValue(); | |
| if (oldValue == newValue) { | |
| return; | |
| } | |
| if (this.sourceBlock_ && Blockly.Events.isEnabled()) { | |
| Blockly.Events.fire(new Blockly.Events.BlockChange( | |
| this.sourceBlock_, 'field', this.name, oldValue, newValue)); | |
| } | |
| this.setText(newValue); | |
| }; | |
| /** | |
| * Handle a mouse down event on a field. | |
| * @param {!Event} e Mouse down event. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.onMouseDown_ = function(e) { | |
| if (!this.sourceBlock_ || !this.sourceBlock_.workspace) { | |
| return; | |
| } | |
| if (this.sourceBlock_.workspace.isDragging()) { | |
| return; | |
| } | |
| var gesture = this.sourceBlock_.workspace.getGesture(e); | |
| if (gesture) { | |
| gesture.setStartField(this); | |
| } | |
| this.useTouchInteraction_ = Blockly.Touch.getTouchIdentifierFromEvent(event) !== 'mouse'; | |
| }; | |
| /** | |
| * Change the tooltip text for this field. | |
| * @param {string|!Element} _newTip Text for tooltip or a parent element to | |
| * link to for its tooltip. | |
| * @abstract | |
| */ | |
| Blockly.Field.prototype.setTooltip = function(_newTip) { | |
| // Non-abstract sub-classes may wish to implement this. See FieldLabel. | |
| }; | |
| /** | |
| * Select the element to bind the click handler to. When this element is | |
| * clicked on an editable field, the editor will open. | |
| * | |
| * If the block has only one field and no output connection, we handle clicks | |
| * over the whole block. Otherwise, handle clicks over the the group containing | |
| * the field. | |
| * | |
| * @return {!Element} Element to bind click handler to. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.getClickTarget_ = function() { | |
| var nFields = 0; | |
| for (var i = 0, input; input = this.sourceBlock_.inputList[i]; i++) { | |
| nFields += input.fieldRow.length; | |
| } | |
| if (nFields <= 1 && this.sourceBlock_.outputConnection) { | |
| return this.sourceBlock_.getSvgRoot(); | |
| } else { | |
| return this.getSvgRoot(); | |
| } | |
| }; | |
| /** | |
| * Return the absolute coordinates of the top-left corner of this field. | |
| * The origin (0,0) is the top-left corner of the page body. | |
| * @return {!goog.math.Coordinate} Object with .x and .y properties. | |
| * @private | |
| */ | |
| Blockly.Field.prototype.getAbsoluteXY_ = function() { | |
| return goog.style.getPageOffset(this.getClickTarget_()); | |
| }; | |
| /** | |
| * Whether this field references any Blockly variables. If true it may need to | |
| * be handled differently during serialization and deserialization. Subclasses | |
| * may override this. | |
| * @return {boolean} True if this field has any variable references. | |
| * @package | |
| */ | |
| Blockly.Field.prototype.referencesVariables = function() { | |
| return false; | |
| }; | |