@coderline/alphatab 1.4.0-alpha.1313 → 1.4.0-alpha.1322

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2237,6 +2237,7 @@ declare class PlaybackInformation {
2237
2237
  */
2238
2238
  declare enum MusicFontSymbol {
2239
2239
  None = -1,
2240
+ Space = 32,
2240
2241
  Brace = 57344,
2241
2242
  BracketTop = 57347,
2242
2243
  BracketBottom = 57348,
@@ -2286,6 +2287,17 @@ declare enum MusicFontSymbol {
2286
2287
  NoteheadSlashWhiteHalf = 57603,
2287
2288
  NoteQuarterUp = 57813,
2288
2289
  NoteEighthUp = 57815,
2290
+ TextBlackNoteLongStem = 57841,
2291
+ TextBlackNoteFrac8thLongStem = 57843,
2292
+ TextBlackNoteFrac16thLongStem = 57845,
2293
+ TextBlackNoteFrac32ndLongStem = 57846,
2294
+ TextCont8thBeamLongStem = 57848,
2295
+ TextCont16thBeamLongStem = 57850,
2296
+ TextCont32ndBeamLongStem = 57851,
2297
+ TextAugmentationDot = 57852,
2298
+ TextTupletBracketStartLongStem = 57857,
2299
+ TextTuplet3LongStem = 57858,
2300
+ TextTupletBracketEndLongStem = 57859,
2289
2301
  Tremolo3 = 57890,
2290
2302
  Tremolo2 = 57889,
2291
2303
  Tremolo1 = 57888,
@@ -5213,6 +5225,11 @@ declare class BeatBounds {
5213
5225
  * Gets or sets the bounds covering all visually visible elements spanning this beat.
5214
5226
  */
5215
5227
  visualBounds: Bounds;
5228
+ /**
5229
+ * Gets or sets x-position where the timely center of the notes for this beat is.
5230
+ * This is where the cursor should be at the time when this beat is played.
5231
+ */
5232
+ onNotesX: number;
5216
5233
  /**
5217
5234
  * Gets or sets the actual bounds of the elements in this beat including whitespace areas.
5218
5235
  */
@@ -5284,22 +5301,13 @@ declare class BarLayoutingInfo {
5284
5301
  * an internal version number that increments whenever a change was made.
5285
5302
  */
5286
5303
  version: number;
5287
- preBeatSizes: Map<number, number>;
5288
- onBeatSizes: Map<number, number>;
5289
- onBeatCenterX: Map<number, number>;
5290
5304
  preBeatSize: number;
5291
5305
  postBeatSize: number;
5292
- voiceSize: number;
5293
5306
  minStretchForce: number;
5294
5307
  totalSpringConstant: number;
5295
- updateVoiceSize(size: number): void;
5296
- setPreBeatSize(beat: Beat, size: number): void;
5297
- getPreBeatSize(beat: Beat): number;
5298
- setOnBeatSize(beat: Beat, size: number): void;
5299
- getOnBeatSize(beat: Beat): number;
5300
- getBeatCenterX(beat: Beat): number;
5301
- setBeatCenterX(beat: Beat, x: number): void;
5302
5308
  private updateMinStretchForce;
5309
+ getPreBeatSize(beat: Beat): number;
5310
+ getPostBeatSize(beat: Beat): number;
5303
5311
  incompleteGraceRods: Map<string, Spring[]>;
5304
5312
  allGraceRods: Map<string, Spring[]>;
5305
5313
  springs: Map<number, Spring>;