mirror of
https://github.com/google/blockly.git
synced 2026-05-13 07:30:10 +02:00
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Methods for graphically rendering a block as SVG.
|
|
*/
|
|
|
|
/**
|
|
* Methods for graphically rendering a block as SVG.
|
|
* @class
|
|
*/
|
|
|
|
|
|
import type {ConstantProvider} from '../common/constants';
|
|
|
|
import {Types} from './types';
|
|
|
|
|
|
/**
|
|
* The base class to represent a part of a block that takes up space during
|
|
* rendering. The constructor for each non-spacer Measurable records the size
|
|
* of the block element (e.g. field, statement input).
|
|
* @alias Blockly.blockRendering.Measurable
|
|
*/
|
|
export class Measurable {
|
|
width: number = 0;
|
|
|
|
height: number = 0;
|
|
type: number;
|
|
xPos = 0;
|
|
|
|
centerline = 0;
|
|
notchOffset: number;
|
|
|
|
/** The renderer's constant provider. */
|
|
protected readonly constants_: ConstantProvider
|
|
|
|
/**
|
|
* @param constants The rendering constants provider.
|
|
* @internal
|
|
*/
|
|
constructor(constants: ConstantProvider) {
|
|
this.constants_ = constants;
|
|
|
|
this.type = Types.NONE;
|
|
|
|
this.notchOffset = this.constants_.NOTCH_OFFSET_LEFT;
|
|
}
|
|
}
|