123456789101112131415161718192021222324252627282930 |
- import { GraphicalContinuousDynamicExpression } from "../GraphicalContinuousDynamicExpression";
- import { ContinuousDynamicExpression } from "../../VoiceData/Expressions/ContinuousExpressions/ContinuousDynamicExpression";
- import { StaffLine } from "../StaffLine";
- import { GraphicalLabel } from "../GraphicalLabel";
- import { Label } from "../../Label";
- import { TextAlignmentEnum } from "../../../Common/Enums/TextAlignment";
- import { FontStyles } from "../../../Common/Enums/FontStyles";
- import { SourceMeasure } from "../../VoiceData/SourceMeasure";
- /**
- * This class extends the GraphicalContinuousDynamicExpression and creates all necessary methods for drawing
- */
- export class VexFlowContinuousDynamicExpression extends GraphicalContinuousDynamicExpression {
- constructor(continuousDynamic: ContinuousDynamicExpression, staffLine: StaffLine,
- measure: SourceMeasure, textHeight?: number) {
- super(continuousDynamic, staffLine, measure);
- if (this.IsVerbal) {
- const sourceLabel: Label = new Label(continuousDynamic.Label);
- this.label = new GraphicalLabel(sourceLabel,
- textHeight ? textHeight : this.rules.ContinuousDynamicTextHeight,
- TextAlignmentEnum.LeftCenter,
- this.rules,
- this.PositionAndShape);
- this.label.Label.fontStyle = FontStyles.Italic;
- this.label.setLabelPositionAndShapeBorders();
- this.PositionAndShape.calculateBoundingBox();
- }
- }
- }
|