File "i_bubble.js"

Full path: /usr/home/mndrn/domains/mndrn.ru/public_html/block-hill/blockly/core/interfaces/i_bubble.js
File size: 2.29 KiB (2346 bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Back

/**
 * @license
 * Copyright 2020 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */

/**
 * @fileoverview The interface for a bubble.
 * @author [email protected] (Sam El-Husseini)
 */

'use strict';

goog.provide('Blockly.IBubble');

goog.requireType('Blockly.IContextMenu');
goog.requireType('Blockly.IDeletable');


/**
 * A bubble interface.
 * @interface
 * @extends {Blockly.IDeletable}
 * @extends {Blockly.IContextMenu}
 */
Blockly.IBubble = function() {};

/**
 * Return the coordinates of the top-left corner of this bubble's body relative
 * to the drawing surface's origin (0,0), in workspace units.
 * @return {!Blockly.utils.Coordinate} Object with .x and .y properties.
 */
Blockly.IBubble.prototype.getRelativeToSurfaceXY;

/**
 * Return the root node of the bubble's SVG group.
 * @return {!SVGElement} The root SVG node of the bubble's group.
 */
Blockly.IBubble.prototype.getSvgRoot;

/**
 * Set whether auto-layout of this bubble is enabled.  The first time a bubble
 * is shown it positions itself to not cover any blocks.  Once a user has
 * dragged it to reposition, it renders where the user put it.
 * @param {boolean} enable True if auto-layout should be enabled, false
 *     otherwise.
 */
Blockly.IBubble.prototype.setAutoLayout;

/**
 * Triggers a move callback if one exists at the end of a drag.
 * @param {boolean} adding True if adding, false if removing.
 */
Blockly.IBubble.prototype.setDragging;

/**
 * Move this bubble during a drag, taking into account whether or not there is
 * a drag surface.
 * @param {Blockly.BlockDragSurfaceSvg} dragSurface The surface that carries
 *     rendered items during a drag, or null if no drag surface is in use.
 * @param {!Blockly.utils.Coordinate} newLoc The location to translate to, in
 *     workspace coordinates.
 */
Blockly.IBubble.prototype.moveDuringDrag;

/**
 * Move the bubble to the specified location in workspace coordinates.
 * @param {number} x The x position to move to.
 * @param {number} y The y position to move to.
 */
Blockly.IBubble.prototype.moveTo;

/**
 * Update the style of this bubble when it is dragged over a delete area.
 * @param {boolean} enable True if the bubble is about to be deleted, false
 *     otherwise.
 */
Blockly.IBubble.prototype.setDeleteStyle;

/**
 * Dispose of this bubble.
 */
Blockly.IBubble.prototype.dispose;

PHP File Manager