2012-05-26 14:26:10 +02:00
|
|
|
//=============================================================================
|
|
|
|
// MuseScore
|
|
|
|
// Music Composition & Notation
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002-2011 Werner Schweer
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2
|
|
|
|
// as published by the Free Software Foundation and appearing in
|
|
|
|
// the file LICENCE.GPL
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
#include "style.h"
|
|
|
|
#include "sym.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "score.h"
|
|
|
|
#include "xml.h"
|
|
|
|
#include "mscore.h"
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
namespace Ms {
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// scoreFonts
|
|
|
|
// this is the list of available score fonts
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2014-01-23 18:49:07 +01:00
|
|
|
static const int FALLBACK_FONT = 2; // Bravura
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QVector<ScoreFont> ScoreFont::_scoreFonts = {
|
2013-11-14 16:12:57 +01:00
|
|
|
ScoreFont("Emmentaler", "MScore", ":/fonts/mscore/", "mscore.ttf"),
|
2014-01-31 09:27:52 +01:00
|
|
|
ScoreFont("Gonville", "Gonville", ":/fonts/gonville/", "Gonville.otf"),
|
2013-11-06 15:58:05 +01:00
|
|
|
ScoreFont("Bravura", "Bravura", ":/fonts/bravura/", "Bravura.otf")
|
2012-05-26 14:26:10 +02:00
|
|
|
};
|
|
|
|
|
2012-09-13 17:04:42 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// table of symbol names
|
|
|
|
// symNames must be in sync with enum class SymId
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QHash<QString, SymId> Sym::lnhash;
|
|
|
|
QVector<const char*> Sym::symNames = {
|
2013-11-11 15:11:28 +01:00
|
|
|
"noSym",
|
2013-11-06 15:58:05 +01:00
|
|
|
"4stringTabClef",
|
|
|
|
"6stringTabClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal1119LargeDiesisDown",
|
|
|
|
"accSagittal1119LargeDiesisUp",
|
|
|
|
"accSagittal1119MediumDiesisDown",
|
|
|
|
"accSagittal1119MediumDiesisUp",
|
|
|
|
"accSagittal1149CommaDown",
|
|
|
|
"accSagittal1149CommaUp",
|
|
|
|
"accSagittal11LargeDiesisDown",
|
|
|
|
"accSagittal11LargeDiesisUp",
|
|
|
|
"accSagittal11MediumDiesisDown",
|
|
|
|
"accSagittal11MediumDiesisUp",
|
|
|
|
"accSagittal143CommaDown",
|
|
|
|
"accSagittal143CommaUp",
|
|
|
|
"accSagittal17CommaDown",
|
|
|
|
"accSagittal17CommaUp",
|
|
|
|
"accSagittal17KleismaDown",
|
|
|
|
"accSagittal17KleismaUp",
|
|
|
|
"accSagittal19CommaDown",
|
|
|
|
"accSagittal19CommaUp",
|
|
|
|
"accSagittal19SchismaDown",
|
|
|
|
"accSagittal19SchismaUp",
|
|
|
|
"accSagittal23CommaDown",
|
|
|
|
"accSagittal23CommaUp",
|
|
|
|
"accSagittal23SmallDiesisDown",
|
|
|
|
"accSagittal23SmallDiesisUp",
|
|
|
|
"accSagittal25SmallDiesisDown",
|
|
|
|
"accSagittal25SmallDiesisUp",
|
|
|
|
"accSagittal35LargeDiesisUp",
|
|
|
|
"accSagittal35LargeDiesusDown",
|
|
|
|
"accSagittal35MediumDiesisDown",
|
|
|
|
"accSagittal35MediumDiesisUp",
|
|
|
|
"accSagittal49LargeDiesisDown",
|
|
|
|
"accSagittal49LargeDiesisUp",
|
|
|
|
"accSagittal49MediumDiesisDown",
|
|
|
|
"accSagittal49MediumDiesisUp",
|
|
|
|
"accSagittal49SmallDiesisDown",
|
|
|
|
"accSagittal49SmallDiesisUp",
|
|
|
|
"accSagittal511SmallDiesisDown",
|
|
|
|
"accSagittal511SmallDiesisUp",
|
|
|
|
"accSagittal513LargeDiesisDown",
|
|
|
|
"accSagittal513LargeDiesisUp",
|
|
|
|
"accSagittal513MediumDiesisDown",
|
|
|
|
"accSagittal513MediumDiesisUp",
|
|
|
|
"accSagittal519CommaDown",
|
|
|
|
"accSagittal519CommaUp",
|
|
|
|
"accSagittal523SmallDiesisDown",
|
|
|
|
"accSagittal523SmallDiesisUp",
|
|
|
|
"accSagittal549MediumDiesisDown",
|
|
|
|
"accSagittal549MediumDiesisUp",
|
|
|
|
"accSagittal55CommaDown",
|
|
|
|
"accSagittal55CommaUp",
|
|
|
|
"accSagittal57KleismaDown",
|
|
|
|
"accSagittal57KleismaUp",
|
|
|
|
"accSagittal5CommaDown",
|
|
|
|
"accSagittal5CommaUp",
|
|
|
|
"accSagittal711CommaDown",
|
|
|
|
"accSagittal711CommaUp",
|
|
|
|
"accSagittal711KleismaDown",
|
|
|
|
"accSagittal711KleismaUp",
|
|
|
|
"accSagittal719CommaDown",
|
|
|
|
"accSagittal719CommaUp",
|
|
|
|
"accSagittal7CommaDown",
|
|
|
|
"accSagittal7CommaUp",
|
|
|
|
"accSagittalAcute",
|
|
|
|
"accSagittalDoubleFlat1149CUp",
|
|
|
|
"accSagittalDoubleFlat143CUp",
|
|
|
|
"accSagittalDoubleFlat17CUp",
|
|
|
|
"accSagittalDoubleFlat17kUp",
|
|
|
|
"accSagittalDoubleFlat19CUp",
|
|
|
|
"accSagittalDoubleFlat19sUp",
|
|
|
|
"accSagittalDoubleFlat23CUp",
|
|
|
|
"accSagittalDoubleFlat23SUp",
|
|
|
|
"accSagittalDoubleFlat25SUp",
|
|
|
|
"accSagittalDoubleFlat2ApotomesDown",
|
|
|
|
"accSagittalDoubleFlat49SUp",
|
|
|
|
"accSagittalDoubleFlat511SUp",
|
|
|
|
"accSagittalDoubleFlat519CUp",
|
|
|
|
"accSagittalDoubleFlat523SUp",
|
|
|
|
"accSagittalDoubleFlat55CUp",
|
|
|
|
"accSagittalDoubleFlat57kUp",
|
|
|
|
"accSagittalDoubleFlat5CUp",
|
|
|
|
"accSagittalDoubleFlat711CUp",
|
|
|
|
"accSagittalDoubleFlat711kUp",
|
|
|
|
"accSagittalDoubleFlat719CUp",
|
|
|
|
"accSagittalDoubleFlat7CUp",
|
|
|
|
"accSagittalDoubleSharp1149CDown",
|
|
|
|
"accSagittalDoubleSharp143CDown",
|
|
|
|
"accSagittalDoubleSharp17CDown",
|
|
|
|
"accSagittalDoubleSharp17kDown",
|
|
|
|
"accSagittalDoubleSharp19CDown",
|
|
|
|
"accSagittalDoubleSharp19sDown",
|
|
|
|
"accSagittalDoubleSharp23CDown",
|
|
|
|
"accSagittalDoubleSharp23SDown",
|
|
|
|
"accSagittalDoubleSharp25SDown",
|
|
|
|
"accSagittalDoubleSharp2ApotomesUp",
|
|
|
|
"accSagittalDoubleSharp49SDown",
|
|
|
|
"accSagittalDoubleSharp511SDown",
|
|
|
|
"accSagittalDoubleSharp519CDown",
|
|
|
|
"accSagittalDoubleSharp523SDown",
|
|
|
|
"accSagittalDoubleSharp55CDown",
|
|
|
|
"accSagittalDoubleSharp57kDown",
|
|
|
|
"accSagittalDoubleSharp5CDown",
|
|
|
|
"accSagittalDoubleSharp711CDown",
|
|
|
|
"accSagittalDoubleSharp711kDown",
|
|
|
|
"accSagittalDoubleSharp719CDown",
|
|
|
|
"accSagittalDoubleSharp7CDown",
|
|
|
|
"accSagittalFlat1119LDown",
|
|
|
|
"accSagittalFlat1119MDown",
|
|
|
|
"accSagittalFlat1149CDown",
|
|
|
|
"accSagittalFlat1149CUp",
|
|
|
|
"accSagittalFlat11LDown",
|
|
|
|
"accSagittalFlat11MDown",
|
|
|
|
"accSagittalFlat143CDown",
|
|
|
|
"accSagittalFlat143CUp",
|
|
|
|
"accSagittalFlat17CDown",
|
|
|
|
"accSagittalFlat17CUp",
|
|
|
|
"accSagittalFlat17kDown",
|
|
|
|
"accSagittalFlat17kUp",
|
|
|
|
"accSagittalFlat19CDown",
|
|
|
|
"accSagittalFlat19CUp",
|
|
|
|
"accSagittalFlat19sDown",
|
|
|
|
"accSagittalFlat19sUp",
|
|
|
|
"accSagittalFlat23CDown",
|
|
|
|
"accSagittalFlat23CUp",
|
|
|
|
"accSagittalFlat23SDown",
|
|
|
|
"accSagittalFlat23SUp",
|
|
|
|
"accSagittalFlat25SDown",
|
|
|
|
"accSagittalFlat25SUp",
|
|
|
|
"accSagittalFlat35LDown",
|
|
|
|
"accSagittalFlat35MDown",
|
|
|
|
"accSagittalFlat49LDown",
|
|
|
|
"accSagittalFlat49MDown",
|
|
|
|
"accSagittalFlat49SDown",
|
|
|
|
"accSagittalFlat49SUp",
|
|
|
|
"accSagittalFlat511SDown",
|
|
|
|
"accSagittalFlat511SUp",
|
|
|
|
"accSagittalFlat513LDown",
|
|
|
|
"accSagittalFlat513MDown",
|
|
|
|
"accSagittalFlat519CDown",
|
|
|
|
"accSagittalFlat519CUp",
|
|
|
|
"accSagittalFlat523SDown",
|
|
|
|
"accSagittalFlat523SUp",
|
|
|
|
"accSagittalFlat549MDown",
|
|
|
|
"accSagittalFlat55CDown",
|
|
|
|
"accSagittalFlat55CUp",
|
|
|
|
"accSagittalFlat57kDown",
|
|
|
|
"accSagittalFlat57kUp",
|
|
|
|
"accSagittalFlat5CDown",
|
|
|
|
"accSagittalFlat5CUp",
|
|
|
|
"accSagittalFlat711CDown",
|
|
|
|
"accSagittalFlat711CUp",
|
|
|
|
"accSagittalFlat711kDown",
|
|
|
|
"accSagittalFlat711kUp",
|
|
|
|
"accSagittalFlat719CDown",
|
|
|
|
"accSagittalFlat719CUp",
|
|
|
|
"accSagittalFlat7CDown",
|
|
|
|
"accSagittalFlat7CUp",
|
|
|
|
"accSagittalFlatApotomeDown",
|
|
|
|
"accSagittalGrave",
|
|
|
|
"accSagittalLargeDoubleSharp",
|
|
|
|
"accSagittalNarrowReversedFlat",
|
|
|
|
"accSagittalNarrowReversedFlatAndFlat",
|
|
|
|
"accSagittalShaftDown",
|
|
|
|
"accSagittalShaftUp",
|
|
|
|
"accSagittalSharp1119LUp",
|
|
|
|
"accSagittalSharp1119MUp",
|
|
|
|
"accSagittalSharp1149CDown",
|
|
|
|
"accSagittalSharp1149CUp",
|
|
|
|
"accSagittalSharp11LUp",
|
|
|
|
"accSagittalSharp11MUp",
|
|
|
|
"accSagittalSharp143CDown",
|
|
|
|
"accSagittalSharp143CUp",
|
|
|
|
"accSagittalSharp17CDown",
|
|
|
|
"accSagittalSharp17CUp",
|
|
|
|
"accSagittalSharp17kDown",
|
|
|
|
"accSagittalSharp17kUp",
|
|
|
|
"accSagittalSharp19CDown",
|
|
|
|
"accSagittalSharp19CUp",
|
|
|
|
"accSagittalSharp19sDown",
|
|
|
|
"accSagittalSharp19sUp",
|
|
|
|
"accSagittalSharp23CDown",
|
|
|
|
"accSagittalSharp23CUp",
|
|
|
|
"accSagittalSharp23SDown",
|
|
|
|
"accSagittalSharp23SUp",
|
|
|
|
"accSagittalSharp25SDown",
|
|
|
|
"accSagittalSharp25SUp",
|
|
|
|
"accSagittalSharp35LUp",
|
|
|
|
"accSagittalSharp35MUp",
|
|
|
|
"accSagittalSharp49LUp",
|
|
|
|
"accSagittalSharp49MUp",
|
|
|
|
"accSagittalSharp49SDown",
|
|
|
|
"accSagittalSharp49SUp",
|
|
|
|
"accSagittalSharp511SDown",
|
|
|
|
"accSagittalSharp513LUp",
|
|
|
|
"accSagittalSharp513MUp",
|
|
|
|
"accSagittalSharp519CDown",
|
|
|
|
"accSagittalSharp519CUp",
|
|
|
|
"accSagittalSharp523SDown",
|
|
|
|
"accSagittalSharp523SUp",
|
|
|
|
"accSagittalSharp549MUp",
|
|
|
|
"accSagittalSharp55CDown",
|
|
|
|
"accSagittalSharp55CUp",
|
|
|
|
"accSagittalSharp57kDown",
|
|
|
|
"accSagittalSharp57kUp",
|
|
|
|
"accSagittalSharp5CDown",
|
|
|
|
"accSagittalSharp5CUp",
|
|
|
|
"accSagittalSharp611SUp",
|
|
|
|
"accSagittalSharp711CDown",
|
|
|
|
"accSagittalSharp711CUp",
|
|
|
|
"accSagittalSharp711kDown",
|
|
|
|
"accSagittalSharp711kUp",
|
|
|
|
"accSagittalSharp719CDown",
|
|
|
|
"accSagittalSharp719CUp",
|
|
|
|
"accSagittalSharp7CDown",
|
|
|
|
"accSagittalSharp7CUp",
|
|
|
|
"accSagittalSharpApotomeUp",
|
|
|
|
"accSagittalUnused1",
|
|
|
|
"accSagittalUnused2",
|
|
|
|
"accSagittalUnused3",
|
|
|
|
"accSagittalUnused4",
|
|
|
|
"accSagittalWilsonMinus",
|
|
|
|
"accSagittalWilsonPlus",
|
|
|
|
"accdnCombDot",
|
|
|
|
"accdnCombLH2RanksEmpty",
|
|
|
|
"accdnCombLH3RanksEmptySquare",
|
|
|
|
"accdnCombRH3RanksEmpty",
|
|
|
|
"accdnCombRH4RanksEmpty",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnLH2Ranks16Round",
|
|
|
|
"accdnLH2Ranks8Plus16Round",
|
|
|
|
"accdnLH2Ranks8Round",
|
|
|
|
"accdnLH2RanksFullMasterRound",
|
|
|
|
"accdnLH2RanksMasterPlus16Round",
|
|
|
|
"accdnLH2RanksMasterRound",
|
|
|
|
"accdnLH3Ranks2Plus8Square",
|
|
|
|
"accdnLH3Ranks2Square",
|
|
|
|
"accdnLH3Ranks8Square",
|
|
|
|
"accdnLH3RanksDouble8Square",
|
|
|
|
"accdnLH3RanksTuttiSquare",
|
|
|
|
"accdnRH3RanksAccordion",
|
|
|
|
"accdnRH3RanksAuthenticMusette",
|
|
|
|
"accdnRH3RanksBandoneon",
|
|
|
|
"accdnRH3RanksBassoon",
|
|
|
|
"accdnRH3RanksClarinet",
|
|
|
|
"accdnRH3RanksHarmonium",
|
|
|
|
"accdnRH3RanksImitationMusette",
|
|
|
|
"accdnRH3RanksLowerTremolo8",
|
|
|
|
"accdnRH3RanksMaster",
|
|
|
|
"accdnRH3RanksOboe",
|
|
|
|
"accdnRH3RanksOrgan",
|
|
|
|
"accdnRH3RanksPiccolo",
|
|
|
|
"accdnRH3RanksUpperTremolo8",
|
|
|
|
"accdnRH3RanksViolin",
|
|
|
|
"accdnRH4RanksAlto",
|
|
|
|
"accdnRH4RanksBassAlto",
|
|
|
|
"accdnRH4RanksMaster",
|
|
|
|
"accdnRH4RanksSoftBass",
|
|
|
|
"accdnRH4RanksSoftTenor",
|
|
|
|
"accdnRH4RanksSoprano",
|
|
|
|
"accdnRH4RanksTenor",
|
|
|
|
"accidental1CommaFlat",
|
|
|
|
"accidental1CommaSharp",
|
|
|
|
"accidental2CommaFlat",
|
|
|
|
"accidental2CommaSharp",
|
|
|
|
"accidental3CommaFlat",
|
|
|
|
"accidental3CommaSharp",
|
|
|
|
"accidental4CommaFlat",
|
|
|
|
"accidental5CommaSharp",
|
|
|
|
"accidentalArrowDown",
|
|
|
|
"accidentalArrowUp",
|
|
|
|
"accidentalBakiyeFlat",
|
|
|
|
"accidentalBakiyeSharp",
|
|
|
|
"accidentalBuyukMucennebFlat",
|
|
|
|
"accidentalBuyukMucennebSharp",
|
|
|
|
"accidentalCombiningCloseCurlyBrace",
|
|
|
|
"accidentalCombiningLower17Schisma",
|
|
|
|
"accidentalCombiningLower19Schisma",
|
|
|
|
"accidentalCombiningLower23Limit29LimitComma",
|
|
|
|
"accidentalCombiningLower31Schisma",
|
|
|
|
"accidentalCombiningOpenCurlyBrace",
|
|
|
|
"accidentalCombiningRaise17Schisma",
|
|
|
|
"accidentalCombiningRaise19Schisma",
|
|
|
|
"accidentalCombiningRaise23Limit29LimitComma",
|
|
|
|
"accidentalCombiningRaise31Schisma",
|
|
|
|
"accidentalDoubleFlat",
|
|
|
|
"accidentalDoubleFlatArrowDown",
|
|
|
|
"accidentalDoubleFlatArrowUp",
|
|
|
|
"accidentalDoubleFlatEqualTempered",
|
|
|
|
"accidentalDoubleFlatInverted",
|
|
|
|
"accidentalDoubleFlatOneArrowDown",
|
|
|
|
"accidentalDoubleFlatOneArrowUp",
|
|
|
|
"accidentalDoubleFlatReversed",
|
|
|
|
"accidentalDoubleFlatThreeArrowsDown",
|
|
|
|
"accidentalDoubleFlatThreeArrowsUp",
|
|
|
|
"accidentalDoubleFlatTwoArrowsDown",
|
|
|
|
"accidentalDoubleFlatTwoArrowsUp",
|
|
|
|
"accidentalDoubleSharp",
|
|
|
|
"accidentalDoubleSharpArrowDown",
|
|
|
|
"accidentalDoubleSharpArrowUp",
|
|
|
|
"accidentalDoubleSharpEqualTempered",
|
|
|
|
"accidentalDoubleSharpOneArrowDown",
|
|
|
|
"accidentalDoubleSharpOneArrowUp",
|
|
|
|
"accidentalDoubleSharpThreeArrowsDown",
|
|
|
|
"accidentalDoubleSharpThreeArrowsUp",
|
|
|
|
"accidentalDoubleSharpTwoArrowsDown",
|
|
|
|
"accidentalDoubleSharpTwoArrowsUp",
|
|
|
|
"accidentalFilledReversedFlatAndFlat",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalFilledReversedFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatArrowUp",
|
|
|
|
"accidentalFlat",
|
|
|
|
"accidentalFlatEqualTempered",
|
|
|
|
"accidentalFlatInverted",
|
|
|
|
"accidentalFlatOneArrowDown",
|
|
|
|
"accidentalFlatOneArrowUp",
|
|
|
|
"accidentalFlatThreeArrowsDown",
|
|
|
|
"accidentalFlatThreeArrowsUp",
|
|
|
|
"accidentalFlatTwoArrowsDown",
|
|
|
|
"accidentalFlatTwoArrowsUp",
|
|
|
|
"accidentalHalfSharpArrowDown",
|
|
|
|
"accidentalHalfSharpArrowUp",
|
|
|
|
"accidentalJohnston13",
|
|
|
|
"accidentalJohnston31",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalJohnstonEl",
|
|
|
|
"accidentalJohnstonMinus",
|
|
|
|
"accidentalJohnstonPlus",
|
|
|
|
"accidentalJohnstonSeven",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalKomaFlat",
|
|
|
|
"accidentalKomaSharp",
|
|
|
|
"accidentalKoron",
|
|
|
|
"accidentalKucukMucennebFlat",
|
|
|
|
"accidentalKucukMucennebSharp",
|
|
|
|
"accidentalLowerOneSeptimalComma",
|
|
|
|
"accidentalLowerOneTridecimalQuartertone",
|
|
|
|
"accidentalLowerOneUndecimalQuartertone",
|
|
|
|
"accidentalLowerTwoSeptimalCommas",
|
|
|
|
"accidentalManeriSims12Down",
|
|
|
|
"accidentalManeriSims12Up",
|
|
|
|
"accidentalManeriSims4Down",
|
|
|
|
"accidentalManeriSims4Up",
|
|
|
|
"accidentalManeriSims6Down",
|
|
|
|
"accidentalManeriSims6Up",
|
|
|
|
"accidentalNatural",
|
|
|
|
"accidentalNaturalEqualTempered",
|
|
|
|
"accidentalNaturalFlat",
|
|
|
|
"accidentalNaturalOneArrowDown",
|
|
|
|
"accidentalNaturalOneArrowUp",
|
|
|
|
"accidentalNaturalReversed",
|
|
|
|
"accidentalNaturalSharp",
|
|
|
|
"accidentalNaturalThreeArrowsDown",
|
|
|
|
"accidentalNaturalThreeArrowsUp",
|
|
|
|
"accidentalNaturalTwoArrowsDown",
|
|
|
|
"accidentalNaturalTwoArrowsUp",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowDown",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowUp",
|
|
|
|
"accidentalQuarterFlat3",
|
|
|
|
"accidentalQuarterFlat4",
|
|
|
|
"accidentalQuarterFlat5",
|
|
|
|
"accidentalQuarterFlatArrowUp",
|
|
|
|
"accidentalQuarterFlatNaturalArrowDown",
|
|
|
|
"accidentalQuarterFlatTartini",
|
|
|
|
"accidentalQuarterSharp3",
|
|
|
|
"accidentalQuarterSharp4",
|
|
|
|
"accidentalQuarterSharpArrowDown",
|
|
|
|
"accidentalQuarterSharpNaturalArrowUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalQuarterSharpOneStroke",
|
|
|
|
"accidentalQuarterSharpTwoStrokes",
|
|
|
|
"accidentalQuarterSharpWiggle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalRaiseOneSeptimalComma",
|
|
|
|
"accidentalRaiseOneTridecimalQuartertone",
|
|
|
|
"accidentalRaiseOneUndecimalQuartertone",
|
|
|
|
"accidentalRaiseTwoSeptimalCommas",
|
|
|
|
"accidentalReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalReversedFlatArrowDown",
|
|
|
|
"accidentalReversedFlatArrowUp",
|
|
|
|
"accidentalSharp",
|
|
|
|
"accidentalSharpEqualTempered",
|
|
|
|
"accidentalSharpOneArrowDown",
|
|
|
|
"accidentalSharpOneArrowUp",
|
|
|
|
"accidentalSharpReversed",
|
|
|
|
"accidentalSharpSharp",
|
|
|
|
"accidentalSharpThreeArrowsDown",
|
|
|
|
"accidentalSharpThreeArrowsUp",
|
|
|
|
"accidentalSharpTwoArrowsDown",
|
|
|
|
"accidentalSharpTwoArrowsUp",
|
|
|
|
"accidentalSori",
|
|
|
|
"accidentalThreeQuartersFlat2",
|
|
|
|
"accidentalThreeQuartersFlatArrowDown",
|
|
|
|
"accidentalThreeQuartersFlatCouper",
|
|
|
|
"accidentalThreeQuartersFlatGrisey",
|
|
|
|
"accidentalThreeQuartersFlatTartini",
|
|
|
|
"accidentalThreeQuartersSharp2",
|
|
|
|
"accidentalThreeQuartersSharpArrowUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalThreeQuartersSharpThreeStrokes",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalTripleFlat",
|
|
|
|
"accidentalTripleSharp",
|
|
|
|
"accidentalXenakisOneThirdSharp",
|
|
|
|
"accidentalXenakisTwoThirdsSharp",
|
|
|
|
"analyticsEndStimme",
|
|
|
|
"analyticsHauptstimme",
|
|
|
|
"analyticsInversion1",
|
|
|
|
"analyticsNebenstimme",
|
|
|
|
"analyticsStartStimme",
|
|
|
|
"analyticsTheme",
|
|
|
|
"analyticsTheme1",
|
|
|
|
"analyticsThemeInversion",
|
|
|
|
"analyticsThemeRetrograde",
|
|
|
|
"analyticsThemeRetrogradeInversion",
|
|
|
|
"arpeggiatoDown",
|
|
|
|
"arpeggiatoUp",
|
|
|
|
"arrowBlackDown",
|
|
|
|
"arrowBlackDownLeft",
|
|
|
|
"arrowBlackDownRight",
|
|
|
|
"arrowBlackLeft",
|
|
|
|
"arrowBlackRight",
|
|
|
|
"arrowBlackUp",
|
|
|
|
"arrowBlackUpLeft",
|
|
|
|
"arrowBlackUpRight",
|
|
|
|
"arrowWhiteDown",
|
|
|
|
"arrowWhiteDownLeft",
|
|
|
|
"arrowWhiteDownRight",
|
|
|
|
"arrowWhiteLeft",
|
|
|
|
"arrowWhiteRight",
|
|
|
|
"arrowWhiteUp",
|
|
|
|
"arrowWhiteUpLeft",
|
|
|
|
"arrowWhiteUpRight",
|
|
|
|
"arrowheadBlackDown",
|
|
|
|
"arrowheadBlackDownLeft",
|
|
|
|
"arrowheadBlackDownRight",
|
|
|
|
"arrowheadBlackLeft",
|
|
|
|
"arrowheadBlackRight",
|
|
|
|
"arrowheadBlackUp",
|
|
|
|
"arrowheadBlackUpLeft",
|
|
|
|
"arrowheadBlackUpRight",
|
|
|
|
"arrowheadWhiteDown",
|
|
|
|
"arrowheadWhiteDownLeft",
|
|
|
|
"arrowheadWhiteDownRight",
|
|
|
|
"arrowheadWhiteLeft",
|
|
|
|
"arrowheadWhiteRight",
|
|
|
|
"arrowheadWhiteUp",
|
|
|
|
"arrowheadWhiteUpLeft",
|
|
|
|
"arrowheadWhiteUpRight",
|
|
|
|
"articAccent",
|
|
|
|
"articAccentStaccatoAbove",
|
|
|
|
"articAccentStaccatoBelow",
|
|
|
|
"articLaissezVibrerAbove",
|
|
|
|
"articLaissezVibrerBelow",
|
|
|
|
"articMarcatoAbove",
|
|
|
|
"articMarcatoBelow",
|
|
|
|
"articMarcatoStaccatoAbove",
|
|
|
|
"articMarcatoStaccatoBelow",
|
|
|
|
"articStaccatissimoAbove",
|
|
|
|
"articStaccatissimoBelow",
|
|
|
|
"articStaccatissimoStrokeAbove",
|
|
|
|
"articStaccatissimoStrokeBelow",
|
|
|
|
"articStaccatissimoWedgeAbove",
|
|
|
|
"articStaccatissimoWedgeBelow",
|
|
|
|
"articStaccato",
|
|
|
|
"articStressAbove",
|
|
|
|
"articStressBelow",
|
|
|
|
"articTenuto",
|
|
|
|
"articTenutoSlurAbove",
|
2013-11-18 00:57:35 +01:00
|
|
|
"articTenutoSlurBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"articUnstressAbove",
|
|
|
|
"articUnstressBelow",
|
|
|
|
"augmentationDot",
|
|
|
|
"barlineDashed",
|
|
|
|
"barlineDotted",
|
|
|
|
"barlineDouble",
|
|
|
|
"barlineFinal",
|
|
|
|
"barlineHeavy",
|
|
|
|
"barlineHeavyHeavy",
|
|
|
|
"barlineReverseFinal",
|
|
|
|
"barlineShort",
|
|
|
|
"barlineSingle",
|
|
|
|
"barlineTick",
|
|
|
|
"brace",
|
|
|
|
"bracket",
|
|
|
|
"bracketBottom",
|
|
|
|
"bracketTop",
|
|
|
|
"brassBend",
|
|
|
|
"brassDoitLong",
|
|
|
|
"brassDoitMedium",
|
|
|
|
"brassDoitShort",
|
|
|
|
"brassFallLipLong",
|
|
|
|
"brassFallLipMedium",
|
|
|
|
"brassFallLipShort",
|
|
|
|
"brassFallRoughLong",
|
|
|
|
"brassFallRoughMedium",
|
|
|
|
"brassFallRoughShort",
|
|
|
|
"brassFallSmoothLong",
|
|
|
|
"brassFallSmoothMedium",
|
|
|
|
"brassFallSmoothShort",
|
|
|
|
"brassFlip",
|
|
|
|
"brassHarmonMuteClosed",
|
|
|
|
"brassHarmonMuteStemHalfLeft",
|
|
|
|
"brassHarmonMuteStemHalfRight",
|
|
|
|
"brassHarmonMuteStemOpen",
|
|
|
|
"brassJazzTurn",
|
|
|
|
"brassLiftLong",
|
|
|
|
"brassLiftMedium",
|
|
|
|
"brassLiftShort",
|
|
|
|
"brassMuteClosed",
|
|
|
|
"brassMuteHalfClosed",
|
|
|
|
"brassMuteOpen",
|
|
|
|
"brassPlop",
|
|
|
|
"brassScoop",
|
|
|
|
"brassSmear",
|
|
|
|
"breathMark",
|
|
|
|
"breathMarkSalzedo",
|
|
|
|
"bridgeClef",
|
|
|
|
"buzzRoll",
|
|
|
|
"cClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"cClef8vb",
|
2013-11-06 15:58:05 +01:00
|
|
|
"cClefArrowDown",
|
|
|
|
"cClefArrowUp",
|
|
|
|
"cClefCombining",
|
|
|
|
"cClefReversed",
|
|
|
|
"cClefTriangular",
|
|
|
|
"cClefTriangularToFClef",
|
|
|
|
"caesura",
|
|
|
|
"caesuraShort",
|
|
|
|
"caesuraThick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantAccentusAbove",
|
|
|
|
"chantAccentusBelow",
|
|
|
|
"chantAugmentum",
|
|
|
|
"chantCaesura",
|
|
|
|
"chantCirculusAbove",
|
|
|
|
"chantCirculusBelow",
|
|
|
|
"chantClivis2nd",
|
|
|
|
"chantClivis3rd",
|
|
|
|
"chantClivis4th",
|
|
|
|
"chantClivis5th",
|
|
|
|
"chantConnectingLineAsc2nd",
|
|
|
|
"chantConnectingLineAsc3rd",
|
|
|
|
"chantConnectingLineAsc4th",
|
|
|
|
"chantConnectingLineAsc5th",
|
|
|
|
"chantCustosStemDown",
|
|
|
|
"chantCustosStemUp",
|
|
|
|
"chantDivisioFinalis",
|
|
|
|
"chantDivisioMaior",
|
|
|
|
"chantDivisioMaxima",
|
|
|
|
"chantDivisioMinima",
|
|
|
|
"chantEpisema",
|
|
|
|
"chantIctusAbove",
|
|
|
|
"chantIctusBelow",
|
|
|
|
"chantLiquescentAscLower",
|
|
|
|
"chantLiquescentAscUpper",
|
|
|
|
"chantLiquescentDescLower",
|
|
|
|
"chantLiquescentDescUpper",
|
|
|
|
"chantOriscusAscending",
|
|
|
|
"chantOriscusDescending",
|
|
|
|
"chantPodatus2nd",
|
|
|
|
"chantPodatus3rd",
|
|
|
|
"chantPodatus4th",
|
|
|
|
"chantPodatus5th",
|
|
|
|
"chantPorrectus2nd",
|
|
|
|
"chantPorrectus3rd",
|
|
|
|
"chantPorrectus4th",
|
|
|
|
"chantPorrectus5th",
|
|
|
|
"chantPunctum",
|
|
|
|
"chantPunctumCavum",
|
|
|
|
"chantPunctumInclinatum",
|
|
|
|
"chantPunctumLinea",
|
|
|
|
"chantPunctumLineaCavum",
|
|
|
|
"chantPunctumVirga",
|
|
|
|
"chantQuilisma",
|
|
|
|
"chantSemicirculusAbove",
|
|
|
|
"chantSemicirculusBelow",
|
|
|
|
"chantStaff",
|
|
|
|
"chantStaffNarrow",
|
|
|
|
"chantStaffWide",
|
|
|
|
"chantVirgula",
|
2013-11-06 15:58:05 +01:00
|
|
|
"coda",
|
|
|
|
"codaSquare",
|
|
|
|
"conductorBeat2Compound",
|
|
|
|
"conductorBeat2Simple",
|
|
|
|
"conductorBeat3Compound",
|
|
|
|
"conductorBeat3Simple",
|
|
|
|
"conductorBeat4Compound",
|
|
|
|
"conductorBeat4Simple",
|
|
|
|
"conductorLeftBeat",
|
|
|
|
"conductorRightBeat",
|
|
|
|
"conductorStrongBeat",
|
|
|
|
"conductorWeakBeat",
|
|
|
|
"controlBeginBeam",
|
|
|
|
"controlBeginPhrase",
|
|
|
|
"controlBeginSlur",
|
|
|
|
"controlBeginTie",
|
|
|
|
"controlEndBeam",
|
|
|
|
"controlEndPhrase",
|
|
|
|
"controlEndSlur",
|
|
|
|
"controlEndTie",
|
|
|
|
"csymAugmented",
|
|
|
|
"csymDiminished",
|
|
|
|
"csymHalfDiminished",
|
|
|
|
"csymMajorSeventh",
|
|
|
|
"csymMinor",
|
|
|
|
"daCapo",
|
|
|
|
"dalSegno",
|
2013-11-29 00:37:48 +01:00
|
|
|
"daseianExcellentes1",
|
|
|
|
"daseianExcellentes2",
|
|
|
|
"daseianExcellentes3",
|
|
|
|
"daseianExcellentes4",
|
|
|
|
"daseianFinales1",
|
|
|
|
"daseianFinales2",
|
|
|
|
"daseianFinales3",
|
|
|
|
"daseianFinales4",
|
|
|
|
"daseianGraves1",
|
|
|
|
"daseianGraves2",
|
|
|
|
"daseianGraves3",
|
|
|
|
"daseianGraves4",
|
|
|
|
"daseianResidua1",
|
|
|
|
"daseianResidua2",
|
|
|
|
"daseianSuperiores1",
|
|
|
|
"daseianSuperiores2",
|
|
|
|
"daseianSuperiores3",
|
|
|
|
"daseianSuperiores4",
|
2013-11-06 15:58:05 +01:00
|
|
|
"doubleTongueAbove",
|
|
|
|
"doubleTongueBelow",
|
|
|
|
"dynamicCrescendoHairpin",
|
|
|
|
"dynamicDiminuendoHairpin",
|
|
|
|
"dynamicFF",
|
|
|
|
"dynamicFFF",
|
|
|
|
"dynamicFFFF",
|
|
|
|
"dynamicFFFFF",
|
|
|
|
"dynamicFFFFFF",
|
|
|
|
"dynamicForte",
|
|
|
|
"dynamicFortePiano",
|
|
|
|
"dynamicForzando",
|
|
|
|
"dynamicMF",
|
|
|
|
"dynamicMP",
|
|
|
|
"dynamicMezzo",
|
|
|
|
"dynamicNiente",
|
|
|
|
"dynamicNienteForHairpin",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicPF",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicPP",
|
|
|
|
"dynamicPPP",
|
|
|
|
"dynamicPPPP",
|
|
|
|
"dynamicPPPPP",
|
|
|
|
"dynamicPPPPPP",
|
|
|
|
"dynamicPiano",
|
|
|
|
"dynamicRinforzando",
|
|
|
|
"dynamicRinforzando1",
|
|
|
|
"dynamicRinforzando2",
|
|
|
|
"dynamicSforzando",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicSforzando1",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicSforzandoPianissimo",
|
|
|
|
"dynamicSforzandoPiano",
|
|
|
|
"dynamicSforzato",
|
|
|
|
"dynamicSforzatoFF",
|
|
|
|
"dynamicZ",
|
|
|
|
"elecLoop",
|
|
|
|
"elecLoudspeaker",
|
|
|
|
"elecMIDIController0",
|
|
|
|
"elecMIDIController100",
|
|
|
|
"elecMIDIController20",
|
|
|
|
"elecMIDIController40",
|
|
|
|
"elecMIDIController60",
|
|
|
|
"elecMIDIController80",
|
|
|
|
"elecMIDIIn",
|
|
|
|
"elecMIDIOut",
|
|
|
|
"elecMicrophone",
|
|
|
|
"elecPause",
|
|
|
|
"elecPlay",
|
|
|
|
"elecSkipBackwards",
|
|
|
|
"elecSkipForwards",
|
|
|
|
"elecStop",
|
|
|
|
"elecVolumeLevel0",
|
|
|
|
"elecVolumeLevel100",
|
|
|
|
"elecVolumeLevel20",
|
|
|
|
"elecVolumeLevel40",
|
|
|
|
"elecVolumeLevel60",
|
|
|
|
"elecVolumeLevel80",
|
|
|
|
"fClef",
|
|
|
|
"fClef15ma",
|
|
|
|
"fClef15mb",
|
|
|
|
"fClef8va",
|
|
|
|
"fClef8vb",
|
|
|
|
"fClefArrowDown",
|
|
|
|
"fClefArrowUp",
|
|
|
|
"fClefReversed",
|
|
|
|
"fClefTriangular",
|
|
|
|
"fClefTriangularToCClef",
|
|
|
|
"fClefUpsideDown",
|
|
|
|
"fermataAbove",
|
|
|
|
"fermataBelow",
|
|
|
|
"fermataLongAbove",
|
|
|
|
"fermataLongBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataLongHenzeAbove",
|
|
|
|
"fermataLongHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataShortAbove",
|
|
|
|
"fermataShortBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataShortHenzeAbove",
|
|
|
|
"fermataShortHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataVeryLongAbove",
|
|
|
|
"fermataVeryLongBelow",
|
|
|
|
"fermataVeryShortAbove",
|
|
|
|
"fermataVeryShortBelow",
|
|
|
|
"figbass0",
|
|
|
|
"figbass1",
|
|
|
|
"figbass2",
|
|
|
|
"figbass2Raised",
|
|
|
|
"figbass3",
|
|
|
|
"figbass4",
|
|
|
|
"figbass4Raised",
|
|
|
|
"figbass5",
|
|
|
|
"figbass5Raised1",
|
|
|
|
"figbass5Raised2",
|
|
|
|
"figbass5Raised3",
|
|
|
|
"figbass6",
|
|
|
|
"figbass6Raised",
|
|
|
|
"figbass7",
|
|
|
|
"figbass7Raised",
|
|
|
|
"figbass8",
|
|
|
|
"figbass9",
|
|
|
|
"figbass9Raised",
|
|
|
|
"figbassBracketLeft",
|
|
|
|
"figbassBracketRight",
|
|
|
|
"figbassCombiningLowering",
|
|
|
|
"figbassCombiningRaising",
|
|
|
|
"figbassDoubleFlat",
|
|
|
|
"figbassDoubleSharp",
|
|
|
|
"figbassFlat",
|
|
|
|
"figbassNatural",
|
|
|
|
"figbassParensLeft",
|
|
|
|
"figbassParensRight",
|
|
|
|
"figbassPlus",
|
|
|
|
"figbassSharp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"flag1024thDown",
|
|
|
|
"flag1024thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"flag128thDown",
|
|
|
|
"flag128thUp",
|
|
|
|
"flag16thDown",
|
|
|
|
"flag16thUp",
|
|
|
|
"flag256thDown",
|
|
|
|
"flag256thUp",
|
|
|
|
"flag32ndDown",
|
|
|
|
"flag32ndUp",
|
|
|
|
"flag512thDown",
|
|
|
|
"flag512thUp",
|
|
|
|
"flag64thDown",
|
|
|
|
"flag64thUp",
|
|
|
|
"flag8thDown",
|
|
|
|
"flag8thUp",
|
|
|
|
"flagInternalDown",
|
|
|
|
"flagInternalUp",
|
2013-12-02 14:29:04 +01:00
|
|
|
// "flags1024thDownStraight",
|
|
|
|
// "flags1024thUpStraight",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fretboard3String",
|
|
|
|
"fretboard3StringNut",
|
|
|
|
"fretboard4String",
|
|
|
|
"fretboard4StringNut",
|
|
|
|
"fretboard5String",
|
|
|
|
"fretboard5StringNut",
|
|
|
|
"fretboard6String",
|
|
|
|
"fretboard6StringNut",
|
|
|
|
"fretboardFilledCircle",
|
|
|
|
"fretboardO",
|
|
|
|
"fretboardX",
|
|
|
|
"functionAngleLeft",
|
|
|
|
"functionAngleRight",
|
|
|
|
"functionBracketLeft",
|
|
|
|
"functionBracketRight",
|
|
|
|
"functionDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionDLower",
|
|
|
|
"functionDUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionEight",
|
|
|
|
"functionFive",
|
|
|
|
"functionFour",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionGLower",
|
|
|
|
"functionGUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionGreaterThan",
|
|
|
|
"functionLessThan",
|
|
|
|
"functionMinus",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionNLower",
|
|
|
|
"functionNUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionNine",
|
|
|
|
"functionOne",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionPLower",
|
|
|
|
"functionPUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionParensLeft",
|
|
|
|
"functionParensRight",
|
|
|
|
"functionPlus",
|
|
|
|
"functionRepetition1",
|
|
|
|
"functionRepetition2",
|
|
|
|
"functionRing",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionSLower",
|
|
|
|
"functionSSLower",
|
|
|
|
"functionSSUpper",
|
|
|
|
"functionSUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionSeven",
|
|
|
|
"functionSix",
|
|
|
|
"functionSlashedDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionTLower",
|
|
|
|
"functionTUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionThree",
|
|
|
|
"functionTwo",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionVLower",
|
|
|
|
"functionVUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionZero",
|
|
|
|
"gClef",
|
|
|
|
"gClef15ma",
|
|
|
|
"gClef15mb",
|
|
|
|
"gClef8va",
|
|
|
|
"gClef8vb",
|
|
|
|
"gClef8vbCclef",
|
|
|
|
"gClef8vbOld",
|
2013-11-29 00:37:48 +01:00
|
|
|
"gClef8vbSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"gClefArrowDown",
|
|
|
|
"gClefArrowUp",
|
|
|
|
"gClefLigatedNumberAbove",
|
|
|
|
"gClefLigatedNumberBelow",
|
|
|
|
"gClefReversed",
|
|
|
|
"gClefUpsideDown",
|
|
|
|
"glissandoDown",
|
|
|
|
"glissandoUp",
|
|
|
|
"graceNoteAcciaccaturaStemDown",
|
|
|
|
"graceNoteAcciaccaturaStemUp",
|
|
|
|
"graceNoteAppoggiaturaStemDown",
|
|
|
|
"graceNoteAppoggiaturaStemUp",
|
|
|
|
"graceNoteSlashStemDown",
|
|
|
|
"graceNoteSlashStemUp",
|
|
|
|
"guitarClosePedal",
|
2013-11-29 00:37:48 +01:00
|
|
|
"guitarGolpe",
|
2013-11-06 15:58:05 +01:00
|
|
|
"guitarHalfOpenPedal",
|
|
|
|
"guitarLeftHandTapping",
|
|
|
|
"guitarOpenPedal",
|
|
|
|
"guitarRightHandTapping",
|
|
|
|
"guitarShake",
|
|
|
|
"guitarString0",
|
|
|
|
"guitarString1",
|
|
|
|
"guitarString2",
|
|
|
|
"guitarString3",
|
|
|
|
"guitarString4",
|
|
|
|
"guitarString5",
|
|
|
|
"guitarString6",
|
|
|
|
"guitarString7",
|
|
|
|
"guitarString8",
|
|
|
|
"guitarString9",
|
|
|
|
"guitarVibratoBarDip",
|
|
|
|
"guitarVibratoBarScoop",
|
|
|
|
"guitarVibratoStroke",
|
|
|
|
"guitarWideVibratoStroke",
|
|
|
|
"handbellsBelltree",
|
|
|
|
"handbellsDamp3",
|
|
|
|
"handbellsEcho1",
|
|
|
|
"handbellsEcho2",
|
|
|
|
"handbellsGyro",
|
|
|
|
"handbellsHandMartellato",
|
|
|
|
"handbellsMalletBellOnTable",
|
|
|
|
"handbellsMalletBellSuspended",
|
|
|
|
"handbellsMalletLft",
|
|
|
|
"handbellsMartellato",
|
|
|
|
"handbellsMartellatoLift",
|
|
|
|
"handbellsMutedMartellato",
|
|
|
|
"handbellsPluckLift",
|
|
|
|
"handbellsSwing",
|
|
|
|
"handbellsSwingDown",
|
|
|
|
"handbellsSwingUp",
|
|
|
|
"harpMetalRod",
|
|
|
|
"harpPedalCentered",
|
|
|
|
"harpPedalDivider",
|
|
|
|
"harpPedalLowered",
|
|
|
|
"harpPedalRaised",
|
|
|
|
"harpSalzedoFluidicSoundsLeft",
|
|
|
|
"harpSalzedoFluidicSoundsRight",
|
|
|
|
"harpSalzedoMetallicSounds",
|
|
|
|
"harpSalzedoMuffleTotally",
|
|
|
|
"harpSalzedoOboicFlux",
|
|
|
|
"harpSalzedoPlayUpperEnd",
|
|
|
|
"harpSalzedoSlideWithSuppleness",
|
|
|
|
"harpSalzedoTamTamSounds",
|
|
|
|
"harpSalzedoThunderEffect",
|
|
|
|
"harpSalzedoTimpanicSounds",
|
|
|
|
"harpSalzedoWhistlingSounds",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpStringNoiseStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"harpTuningKey",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpTuningKeyGlissando",
|
|
|
|
"harpTuningKeyHandle",
|
|
|
|
"harpTuningKeyShank",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardLeftPedalPictogram",
|
|
|
|
"keyboardMiddlePedalPictogram",
|
|
|
|
"keyboardPedalHalf",
|
|
|
|
"keyboardPedalHalf2",
|
|
|
|
"keyboardPedalHalf3",
|
|
|
|
"keyboardPedalHeel1",
|
|
|
|
"keyboardPedalHeel2",
|
|
|
|
"keyboardPedalP",
|
|
|
|
"keyboardPedalPed",
|
|
|
|
"keyboardPedalS",
|
|
|
|
"keyboardPedalSost",
|
|
|
|
"keyboardPedalToe1",
|
|
|
|
"keyboardPedalToe2",
|
|
|
|
"keyboardPedalUp",
|
|
|
|
"keyboardPedalUpNotch",
|
|
|
|
"keyboardPedalUpSpecial",
|
|
|
|
"keyboardPluckInside",
|
|
|
|
"keyboardRightPedalPictogram",
|
|
|
|
"leftRepeat",
|
|
|
|
"leftRepeatSmall",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenFlatHardB",
|
|
|
|
"medRenFlatSoftB",
|
|
|
|
"medRenFlatWithDot",
|
|
|
|
"medRenLiquescenceCMN",
|
|
|
|
"medRenNatural",
|
|
|
|
"medRenNaturalWithCross",
|
|
|
|
"medRenPlicaCMN",
|
|
|
|
"medRenSharpCroix",
|
|
|
|
"mensuralAlterationSign",
|
|
|
|
"mensuralBlackBrevis",
|
|
|
|
"mensuralBlackBrevisVoid",
|
|
|
|
"mensuralBlackDragma",
|
|
|
|
"mensuralBlackLonga",
|
|
|
|
"mensuralBlackMaxima",
|
|
|
|
"mensuralBlackMinima",
|
|
|
|
"mensuralBlackMinimaVoid",
|
|
|
|
"mensuralBlackSemibrevis",
|
|
|
|
"mensuralBlackSemibrevisCaudata",
|
|
|
|
"mensuralBlackSemibrevisOblique",
|
|
|
|
"mensuralBlackSemibrevisVoid",
|
|
|
|
"mensuralBlackSemiminima",
|
|
|
|
"mensuralCclef",
|
|
|
|
"mensuralCclefGregorian",
|
|
|
|
"mensuralCclefPetrucci",
|
|
|
|
"mensuralColorationEndRound",
|
|
|
|
"mensuralColorationEndSquare",
|
|
|
|
"mensuralColorationStartRound",
|
|
|
|
"mensuralColorationStartSquare",
|
|
|
|
"mensuralCombStemDiagonal",
|
|
|
|
"mensuralCombStemDown",
|
|
|
|
"mensuralCombStemDownFlagExtended",
|
|
|
|
"mensuralCombStemDownFlagFlared",
|
|
|
|
"mensuralCombStemDownFlagFusa",
|
|
|
|
"mensuralCombStemDownFlagLeft",
|
|
|
|
"mensuralCombStemDownFlagRight",
|
|
|
|
"mensuralCombStemDownFlagSemiminima",
|
|
|
|
"mensuralCombStemUp",
|
|
|
|
"mensuralCombStemUpFlagExtended",
|
|
|
|
"mensuralCombStemUpFlagFlared",
|
|
|
|
"mensuralCombStemUpFlagFusa",
|
|
|
|
"mensuralCombStemUpFlagLeft",
|
|
|
|
"mensuralCombStemUpFlagRight",
|
|
|
|
"mensuralCombStemUpFlagSemiminima",
|
|
|
|
"mensuralCustosCheckmark",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralCustosTurn",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralFClefAncient",
|
|
|
|
"mensuralFclef",
|
|
|
|
"mensuralFclefGregorian",
|
|
|
|
"mensuralFclefPetrucci",
|
|
|
|
"mensuralGclef",
|
|
|
|
"mensuralGclefPetrucci",
|
|
|
|
"mensuralModusImperfectumVert",
|
|
|
|
"mensuralModusPerfectumVert",
|
|
|
|
"mensuralNoteheadLongaBlack",
|
|
|
|
"mensuralNoteheadLongaBlackVoid",
|
|
|
|
"mensuralNoteheadLongaVoid",
|
|
|
|
"mensuralNoteheadMaximaBlack",
|
|
|
|
"mensuralNoteheadMaximaBlackVoid",
|
|
|
|
"mensuralNoteheadMaximaVoid",
|
|
|
|
"mensuralNoteheadSemibrevisBlack",
|
|
|
|
"mensuralNoteheadSemibrevisBlackVoid",
|
|
|
|
"mensuralNoteheadSemibrevisBlackVoidInverted",
|
|
|
|
"mensuralNoteheadSemibrevisVoid",
|
|
|
|
"mensuralProlation1", // temp. pref.prol. perf.
|
|
|
|
"mensuralProlation10", // temp. imp. prol. imp. dimin. rev.
|
|
|
|
"mensuralProlation11", // temp. imp. prol. perf.rev.
|
|
|
|
"mensuralProlation2", // temp. perf.prol. imp.
|
|
|
|
"mensuralProlation3", // temp. perf.prol. imp. dimin.
|
|
|
|
"mensuralProlation4", // temp. perf.prol. perf.dimin
|
|
|
|
"mensuralProlation5", // temp. imp. prol. perf.
|
|
|
|
"mensuralProlation6", // temp. imp. prol. imp.
|
|
|
|
"mensuralProlation7", // temp. imp. prol. imp. rev.
|
|
|
|
"mensuralProlation8", // temp. imp. prol. perf.dimin
|
|
|
|
"mensuralProlation9", // temp. imp. prol. imp. dimin
|
|
|
|
"mensuralProlationCombiningDot",
|
|
|
|
"mensuralProlationCombiningDotVoid",
|
|
|
|
"mensuralProlationCombiningStroke",
|
|
|
|
"mensuralProlationCombiningThreeDots",
|
|
|
|
"mensuralProlationCombiningThreeDotsTri",
|
|
|
|
"mensuralProlationCombiningTwoDots",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralProportion1",
|
|
|
|
"mensuralProportion2",
|
|
|
|
"mensuralProportion3",
|
|
|
|
"mensuralProportion4",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralProportionMajor",
|
|
|
|
"mensuralProportionMinor",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestBrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestFusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestLongaImperfecta",
|
|
|
|
"mensuralRestLongaPerfecta",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestMaxima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestMinima",
|
|
|
|
"mensuralRestSemibrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestSemifusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestSemiminima",
|
|
|
|
"mensuralSignum",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralTempusImperfectumHoriz",
|
|
|
|
"mensuralTempusPerfectumHoriz",
|
|
|
|
"mensuralWhiteBrevis",
|
|
|
|
"mensuralWhiteFusa",
|
|
|
|
"mensuralWhiteLonga",
|
|
|
|
"mensuralWhiteMaxima",
|
|
|
|
"mensuralWhiteMinima",
|
|
|
|
"mensuralWhiteSemiminima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"miscDoNotCopy",
|
|
|
|
"miscDoNotPhotocopy",
|
|
|
|
"miscEyeglasses",
|
|
|
|
"miscStaffDivideArrowDown",
|
|
|
|
"miscStaffDivideArrowUp",
|
|
|
|
"miscStaffDivideArrowUpDown",
|
|
|
|
"miscSwish",
|
|
|
|
"note1024thDown",
|
|
|
|
"note1024thUp",
|
|
|
|
"note128thDown",
|
|
|
|
"note128thUp",
|
|
|
|
"note16thDown",
|
|
|
|
"note16thUp",
|
|
|
|
"note256thDown",
|
|
|
|
"note256thUp",
|
|
|
|
"note32ndDown",
|
|
|
|
"note32ndUp",
|
|
|
|
"note512thDown",
|
|
|
|
"note512thUp",
|
|
|
|
"note64thDown",
|
|
|
|
"note64thUp",
|
|
|
|
"noteABlack",
|
|
|
|
"noteAFlatBlack",
|
|
|
|
"noteAFlatHalf",
|
|
|
|
"noteAFlatWhole",
|
|
|
|
"noteAHalf",
|
|
|
|
"noteASharpBlack",
|
|
|
|
"noteASharpHalf",
|
|
|
|
"noteASharpWhole",
|
|
|
|
"noteAWhole",
|
|
|
|
"noteBBlack",
|
|
|
|
"noteBFlatBlack",
|
|
|
|
"noteBFlatHalf",
|
|
|
|
"noteBFlatWhole",
|
|
|
|
"noteBHalf",
|
|
|
|
"noteBSharpBlack",
|
|
|
|
"noteBSharpHalf",
|
|
|
|
"noteBSharpWhole",
|
|
|
|
"noteBWhole",
|
|
|
|
"noteCBlack",
|
|
|
|
"noteCFlatBlack",
|
|
|
|
"noteCFlatHalf",
|
|
|
|
"noteCFlatWhole",
|
|
|
|
"noteCHalf",
|
|
|
|
"noteCSharpBlack",
|
|
|
|
"noteCSharpHalf",
|
|
|
|
"noteCSharpWhole",
|
|
|
|
"noteCWhole",
|
|
|
|
"noteDBlack",
|
|
|
|
"noteDFlatBlack",
|
|
|
|
"noteDFlatHalf",
|
|
|
|
"noteDFlatWhole",
|
|
|
|
"noteDHalf",
|
|
|
|
"noteDSharpBlack",
|
|
|
|
"noteDSharpHalf",
|
|
|
|
"noteDSharpWhole",
|
|
|
|
"noteDWhole",
|
|
|
|
"noteDoBlack",
|
|
|
|
"noteDoHalf",
|
|
|
|
"noteDoWhole",
|
|
|
|
"noteDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteEBlack",
|
|
|
|
"noteEFlatBlack",
|
|
|
|
"noteEFlatHalf",
|
|
|
|
"noteEFlatWhole",
|
|
|
|
"noteEHalf",
|
|
|
|
"noteESharpBlack",
|
|
|
|
"noteESharpHalf",
|
|
|
|
"noteESharpWhole",
|
|
|
|
"noteEWhole",
|
2014-02-21 10:59:50 +01:00
|
|
|
"note8thDown",
|
|
|
|
"note8thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteEmptyBlack",
|
|
|
|
"noteEmptyHalf",
|
|
|
|
"noteEmptyWhole",
|
|
|
|
"noteFBlack",
|
|
|
|
"noteFFlatBlack",
|
|
|
|
"noteFFlatHalf",
|
|
|
|
"noteFFlatWhole",
|
|
|
|
"noteFHalf",
|
|
|
|
"noteFSharpBlack",
|
|
|
|
"noteFSharpHalf",
|
|
|
|
"noteFSharpWhole",
|
|
|
|
"noteFWhole",
|
|
|
|
"noteFaBlack",
|
|
|
|
"noteFaHalf",
|
|
|
|
"noteFaWhole",
|
|
|
|
"noteGBlack",
|
|
|
|
"noteGFlatBlack",
|
|
|
|
"noteGFlatHalf",
|
|
|
|
"noteGFlatWhole",
|
|
|
|
"noteGHalf",
|
|
|
|
"noteGSharpBlack",
|
|
|
|
"noteGSharpHalf",
|
|
|
|
"noteGSharpWhole",
|
|
|
|
"noteGWhole",
|
|
|
|
"noteHBlack",
|
|
|
|
"noteHHalf",
|
|
|
|
"noteHSharpBlack",
|
|
|
|
"noteHSharpHalf",
|
|
|
|
"noteHSharpWhole",
|
|
|
|
"noteHWhole",
|
|
|
|
"noteHalfDown",
|
|
|
|
"noteHalfUp",
|
|
|
|
"noteLaBlack",
|
|
|
|
"noteLaHalf",
|
|
|
|
"noteLaWhole",
|
|
|
|
"noteMiBlack",
|
|
|
|
"noteMiHalf",
|
|
|
|
"noteMiWhole",
|
|
|
|
"noteQuarterDown",
|
|
|
|
"noteQuarterUp",
|
|
|
|
"noteReBlack",
|
|
|
|
"noteReHalf",
|
|
|
|
"noteReWhole",
|
|
|
|
"noteShapeDiamondBlack",
|
|
|
|
"noteShapeDiamondWhite",
|
|
|
|
"noteShapeMoonBlack",
|
|
|
|
"noteShapeMoonWhite",
|
|
|
|
"noteShapeRoundBlack",
|
|
|
|
"noteShapeRoundWhite",
|
|
|
|
"noteShapeSquareBlack",
|
|
|
|
"noteShapeSquareWhite",
|
|
|
|
"noteShapeTriangleLeftBlack",
|
|
|
|
"noteShapeTriangleLeftWhite",
|
|
|
|
"noteShapeTriangleRightBlack",
|
|
|
|
"noteShapeTriangleRightWhite",
|
|
|
|
"noteShapeTriangleRoundBlack",
|
|
|
|
"noteShapeTriangleRoundWhite",
|
|
|
|
"noteShapeTriangleUpBlack",
|
|
|
|
"noteShapeTriangleUpWhite",
|
|
|
|
"noteSiBlack",
|
|
|
|
"noteSiHalf",
|
|
|
|
"noteSiWhole",
|
|
|
|
"noteSoBlack",
|
|
|
|
"noteSoHalf",
|
|
|
|
"noteSoWhole",
|
|
|
|
"noteTiBlack",
|
|
|
|
"noteTiHalf",
|
|
|
|
"noteTiWhole",
|
|
|
|
"noteWhole",
|
|
|
|
"noteheadBlack",
|
|
|
|
"noteheadCircleSlash",
|
|
|
|
"noteheadCircleX",
|
|
|
|
"noteheadCircleXDoubleWhole",
|
|
|
|
"noteheadCircleXHalf",
|
|
|
|
"noteheadCircleXWhole",
|
|
|
|
"noteheadCircledBlack",
|
|
|
|
"noteheadCircledDoubleWhole",
|
|
|
|
"noteheadCircledHalf",
|
|
|
|
"noteheadCircledWhole",
|
|
|
|
"noteheadClusterDoubleWhole2nd",
|
|
|
|
"noteheadClusterDoubleWhole3rd",
|
|
|
|
"noteheadClusterDoubleWholeBottom",
|
|
|
|
"noteheadClusterDoubleWholeMiddle",
|
|
|
|
"noteheadClusterDoubleWholeTop",
|
|
|
|
"noteheadClusterHalf2nd",
|
|
|
|
"noteheadClusterHalf3rd",
|
|
|
|
"noteheadClusterHalfBottom",
|
|
|
|
"noteheadClusterHalfMiddle",
|
|
|
|
"noteheadClusterHalfTop",
|
|
|
|
"noteheadClusterQuarter2nd",
|
|
|
|
"noteheadClusterQuarter3rd",
|
|
|
|
"noteheadClusterQuarterBottom",
|
|
|
|
"noteheadClusterQuarterMiddle",
|
|
|
|
"noteheadClusterQuarterTop",
|
|
|
|
"noteheadClusterRoundBlack",
|
|
|
|
"noteheadClusterRoundWhite",
|
|
|
|
"noteheadClusterSquareBlack",
|
|
|
|
"noteheadClusterSquareWhite",
|
|
|
|
"noteheadClusterWhole2nd",
|
|
|
|
"noteheadClusterWhole3rd",
|
|
|
|
"noteheadClusterWholeBottom",
|
|
|
|
"noteheadClusterWholeMiddle",
|
|
|
|
"noteheadClusterWholeTop",
|
|
|
|
"noteheadDiamondBlack",
|
|
|
|
"noteheadDiamondBlackOld",
|
|
|
|
"noteheadDiamondClusterBlack2nd",
|
|
|
|
"noteheadDiamondClusterBlack3rd",
|
|
|
|
"noteheadDiamondClusterBlackBottom",
|
|
|
|
"noteheadDiamondClusterBlackMiddle",
|
|
|
|
"noteheadDiamondClusterBlackTop",
|
|
|
|
"noteheadDiamondClusterWhite2nd",
|
|
|
|
"noteheadDiamondClusterWhite3rd",
|
|
|
|
"noteheadDiamondClusterWhiteBottom",
|
|
|
|
"noteheadDiamondClusterWhiteMiddle",
|
|
|
|
"noteheadDiamondClusterWhiteTop",
|
|
|
|
"noteheadDiamondDoubleWhole",
|
|
|
|
"noteheadDiamondDoubleWholeOld",
|
|
|
|
"noteheadDiamondHalf",
|
|
|
|
"noteheadDiamondHalfFilled",
|
|
|
|
"noteheadDiamondHalfOld",
|
|
|
|
"noteheadDiamondWhole",
|
|
|
|
"noteheadDiamondWholeOld",
|
|
|
|
"noteheadDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteheadDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadDoubleWholeWithX",
|
|
|
|
"noteheadHalf",
|
|
|
|
"noteheadHalfWithX",
|
|
|
|
"noteheadHeavyX",
|
|
|
|
"noteheadHeavyXHat",
|
|
|
|
"noteheadLargeArrowDownBlack",
|
|
|
|
"noteheadLargeArrowDownDoubleWhole",
|
|
|
|
"noteheadLargeArrowDownHalf",
|
|
|
|
"noteheadLargeArrowDownWhole",
|
|
|
|
"noteheadLargeArrowUpBlack",
|
|
|
|
"noteheadLargeArrowUpDoubleWhole",
|
|
|
|
"noteheadLargeArrowUpHalf",
|
|
|
|
"noteheadLargeArrowUpWhole",
|
|
|
|
"noteheadMoonBlack",
|
|
|
|
"noteheadMoonWhite",
|
|
|
|
"noteheadNull",
|
|
|
|
"noteheadParenthesis",
|
|
|
|
"noteheadParenthesisLeft",
|
|
|
|
"noteheadParenthesisRight",
|
|
|
|
"noteheadPlusBlack",
|
|
|
|
"noteheadPlusDoubleWhole",
|
|
|
|
"noteheadPlusHalf",
|
|
|
|
"noteheadPlusWhole",
|
|
|
|
"noteheadRoundBlack",
|
|
|
|
"noteheadRoundBlackLarge",
|
|
|
|
"noteheadRoundBlackSlashed",
|
|
|
|
"noteheadRoundBlackSlashedLarge",
|
|
|
|
"noteheadRoundWhite",
|
|
|
|
"noteheadRoundWhiteLarge",
|
|
|
|
"noteheadRoundWhiteSlashed",
|
|
|
|
"noteheadRoundWhiteSlashedLarge",
|
|
|
|
"noteheadRoundWhiteWithDot",
|
|
|
|
"noteheadRoundWhiteWithDotLarge",
|
|
|
|
"noteheadSlashDiamondWhite",
|
|
|
|
"noteheadSlashHorizontalEnds",
|
|
|
|
"noteheadSlashHorizontalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEnds",
|
|
|
|
"noteheadSlashVerticalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEndsSmall",
|
|
|
|
"noteheadSlashWhite",
|
|
|
|
"noteheadSlashWhiteMuted",
|
|
|
|
"noteheadSlashX",
|
|
|
|
"noteheadSlashedBlack1",
|
|
|
|
"noteheadSlashedBlack2",
|
|
|
|
"noteheadSlashedDoubleWhole1",
|
|
|
|
"noteheadSlashedDoubleWhole2",
|
|
|
|
"noteheadSlashedHalf1",
|
|
|
|
"noteheadSlashedHalf2",
|
|
|
|
"noteheadSlashedWhole1",
|
|
|
|
"noteheadSlashedWhole2",
|
|
|
|
"noteheadSquareBlack",
|
|
|
|
"noteheadSquareBlackLarge",
|
|
|
|
"noteheadSquareBlackWhite",
|
|
|
|
"noteheadSquareWhite",
|
|
|
|
"noteheadTriangleDownBlack",
|
|
|
|
"noteheadTriangleDownDoubleWhole",
|
|
|
|
"noteheadTriangleDownHalf",
|
|
|
|
"noteheadTriangleDownWhite",
|
|
|
|
"noteheadTriangleDownWhole",
|
|
|
|
"noteheadTriangleLeftBlack",
|
|
|
|
"noteheadTriangleLeftWhite",
|
|
|
|
"noteheadTriangleRightBlack",
|
|
|
|
"noteheadTriangleRightWhite",
|
|
|
|
"noteheadTriangleRoundDownBlack",
|
|
|
|
"noteheadTriangleRoundDownWhite",
|
|
|
|
"noteheadTriangleUpBlack",
|
|
|
|
"noteheadTriangleUpDoubleWhole",
|
|
|
|
"noteheadTriangleUpHalf",
|
|
|
|
"noteheadTriangleUpRightBlack",
|
|
|
|
"noteheadTriangleUpRightWhite",
|
|
|
|
"noteheadTriangleUpWhite",
|
|
|
|
"noteheadTriangleUpWhole",
|
|
|
|
"noteheadVoidWithX",
|
|
|
|
"noteheadWhole",
|
|
|
|
"noteheadWholeWithX",
|
|
|
|
"noteheadXBlack",
|
|
|
|
"noteheadXDoubleWhole",
|
|
|
|
"noteheadXHalf",
|
|
|
|
"noteheadXOrnate",
|
|
|
|
"noteheadXWhole",
|
|
|
|
"ornamentBottomLeftConcaveStroke",
|
|
|
|
"ornamentBottomLeftConcaveStrokeLarge",
|
|
|
|
"ornamentBottomLeftConvexStroke",
|
|
|
|
"ornamentBottomRightConcaveStroke",
|
|
|
|
"ornamentBottomRightConvexStroke",
|
|
|
|
"ornamentComma",
|
|
|
|
"ornamentDoubleObliqueLinesAfterNote",
|
|
|
|
"ornamentDoubleObliqueLinesBeforeNote",
|
|
|
|
"ornamentDownCurve",
|
|
|
|
"ornamentHaydn",
|
|
|
|
"ornamentHighLeftConcaveStroke",
|
|
|
|
"ornamentHighLeftConvexStroke",
|
|
|
|
"ornamentHighRightConcaveStroke",
|
|
|
|
"ornamentHighRightConvexStroke",
|
|
|
|
"ornamentHookAfterNote",
|
|
|
|
"ornamentHookBeforeNote",
|
|
|
|
"ornamentLeftFacingHalfCircle",
|
|
|
|
"ornamentLeftFacingHook",
|
|
|
|
"ornamentLeftPlus",
|
|
|
|
"ornamentLeftShakeT",
|
|
|
|
"ornamentLeftVerticalStroke",
|
|
|
|
"ornamentLeftVerticalStrokeWithCross",
|
|
|
|
"ornamentLowLeftConcaveStroke",
|
|
|
|
"ornamentLowLeftConvexStroke",
|
|
|
|
"ornamentLowRightConcaveStroke",
|
|
|
|
"ornamentLowRightConvexStroke",
|
|
|
|
"ornamentMiddleVerticalStroke",
|
|
|
|
"ornamentMordent",
|
|
|
|
"ornamentMordentInverted",
|
|
|
|
"ornamentObliqueLineAfterNote",
|
|
|
|
"ornamentObliqueLineBeforeNote",
|
|
|
|
"ornamentObliqueLineHorizAfterNote",
|
|
|
|
"ornamentObliqueLineHorizBeforeNote",
|
|
|
|
"ornamentOriscus",
|
|
|
|
"ornamentPortDeVoixV",
|
|
|
|
"ornamentPrecompAppoggTrill",
|
|
|
|
"ornamentPrecompAppoggTrillSuffix",
|
|
|
|
"ornamentPrecompDescendingSlide",
|
|
|
|
"ornamentPrecompPortDeVoixMordent",
|
|
|
|
"ornamentPrecompSlide",
|
|
|
|
"ornamentPrecompSlideTrillBach",
|
|
|
|
"ornamentPrecompSlideTrillDAnglebert",
|
|
|
|
"ornamentPrecompSlideTrillMarpurg",
|
|
|
|
"ornamentPrecompSlideTrillMuffat",
|
|
|
|
"ornamentPrecompSlideTrillSuffixMuffat",
|
|
|
|
"ornamentPrecompTrillSuffixDandrieu",
|
|
|
|
"ornamentPrecompTurnTrillBach",
|
|
|
|
"ornamentPrecompTurnTrillDAnglebert",
|
|
|
|
"ornamentQuilisma",
|
|
|
|
"ornamentRightFacingHalfCircle",
|
|
|
|
"ornamentRightFacingHook",
|
|
|
|
"ornamentRightVerticalStroke",
|
|
|
|
"ornamentSchleifer",
|
|
|
|
"ornamentShake3",
|
|
|
|
"ornamentShakeMuffat1",
|
|
|
|
"ornamentShortObliqueLineAfterNote",
|
|
|
|
"ornamentShortObliqueLineBeforeNote",
|
|
|
|
"ornamentTopLeftConcaveStroke",
|
|
|
|
"ornamentTopLeftConvexStroke",
|
|
|
|
"ornamentTopRightConcaveStroke",
|
|
|
|
"ornamentTopRightConvexStroke",
|
|
|
|
"ornamentTremblement",
|
|
|
|
"ornamentTrill",
|
|
|
|
"ornamentTurn",
|
|
|
|
"ornamentTurnInverted",
|
|
|
|
"ornamentTurnSlash",
|
|
|
|
"ornamentTurnUp",
|
|
|
|
"ornamentTurnUpS",
|
|
|
|
"ornamentUpCurve",
|
|
|
|
"ornamentVerticalLine",
|
|
|
|
"ornamentZigZagLineNoRightEnd",
|
|
|
|
"ornamentZigZagLineWithRightEnd",
|
|
|
|
"ottava",
|
|
|
|
"ottavaAlta",
|
|
|
|
"ottavaBassa",
|
|
|
|
"ottavaBassaBa",
|
|
|
|
"pendereckiTremolo",
|
|
|
|
"pictAlmglocken",
|
|
|
|
"pictAnvil",
|
|
|
|
"pictBassDrum",
|
|
|
|
"pictBassDrumOnSide",
|
|
|
|
"pictBeaterBow",
|
|
|
|
"pictBeaterBrassMalletsDown",
|
|
|
|
"pictBeaterBrassMalletsUp",
|
|
|
|
"pictBeaterDoubleBassDrumDown",
|
|
|
|
"pictBeaterDoubleBassDrumUp",
|
|
|
|
"pictBeaterFinger",
|
|
|
|
"pictBeaterFingernails",
|
|
|
|
"pictBeaterFist",
|
|
|
|
"pictBeaterGuiroScraper",
|
|
|
|
"pictBeaterHammer",
|
|
|
|
"pictBeaterHand",
|
|
|
|
"pictBeaterHardBassDrumDown",
|
|
|
|
"pictBeaterHardBassDrumUp",
|
|
|
|
"pictBeaterHardGlockenspielDown",
|
|
|
|
"pictBeaterHardGlockenspielLeft",
|
|
|
|
"pictBeaterHardGlockenspielRight",
|
|
|
|
"pictBeaterHardGlockenspielUp",
|
|
|
|
"pictBeaterHardTimpaniDown",
|
|
|
|
"pictBeaterHardTimpaniLeft",
|
|
|
|
"pictBeaterHardTimpaniRight",
|
|
|
|
"pictBeaterHardTimpaniUp",
|
|
|
|
"pictBeaterHardXylophoneDown",
|
|
|
|
"pictBeaterHardXylophoneLeft",
|
|
|
|
"pictBeaterHardXylophoneRight",
|
|
|
|
"pictBeaterHardXylophoneUp",
|
|
|
|
"pictBeaterHardYarnDown",
|
|
|
|
"pictBeaterHardYarnLeft",
|
|
|
|
"pictBeaterHardYarnRight",
|
|
|
|
"pictBeaterHardYarnUp",
|
|
|
|
"pictBeaterJazzSticksDown",
|
|
|
|
"pictBeaterJazzSticksUp",
|
|
|
|
"pictBeaterKnittingNeedle",
|
|
|
|
"pictBeaterMallet",
|
|
|
|
"pictBeaterMediumBassDrumDown",
|
|
|
|
"pictBeaterMediumBassDrumUp",
|
|
|
|
"pictBeaterMediumTimpaniDown",
|
|
|
|
"pictBeaterMediumTimpaniLeft",
|
|
|
|
"pictBeaterMediumTimpaniRight",
|
|
|
|
"pictBeaterMediumTimpaniUp",
|
|
|
|
"pictBeaterMediumXylophoneDown",
|
|
|
|
"pictBeaterMediumXylophoneLeft",
|
|
|
|
"pictBeaterMediumXylophoneRight",
|
|
|
|
"pictBeaterMediumXylophoneUp",
|
|
|
|
"pictBeaterMediumYarnDown",
|
|
|
|
"pictBeaterMediumYarnLeft",
|
|
|
|
"pictBeaterMediumYarnRight",
|
|
|
|
"pictBeaterMediumYarnUp",
|
|
|
|
"pictBeaterMetalHammer",
|
|
|
|
"pictBeaterSnareSticksDown",
|
|
|
|
"pictBeaterSnareSticksUp",
|
|
|
|
"pictBeaterSoftBassDrumDown",
|
|
|
|
"pictBeaterSoftBassDrumUp",
|
|
|
|
"pictBeaterSoftGlockenspielDown",
|
|
|
|
"pictBeaterSoftGlockenspielLeft",
|
|
|
|
"pictBeaterSoftGlockenspielRight",
|
|
|
|
"pictBeaterSoftGlockenspielUp",
|
|
|
|
"pictBeaterSoftTimpaniDown",
|
|
|
|
"pictBeaterSoftTimpaniLeft",
|
|
|
|
"pictBeaterSoftTimpaniRight",
|
|
|
|
"pictBeaterSoftTimpaniUp",
|
|
|
|
"pictBeaterSoftXylophone",
|
|
|
|
"pictBeaterSoftXylophoneDown",
|
|
|
|
"pictBeaterSoftXylophoneLeft",
|
|
|
|
"pictBeaterSoftXylophoneRight",
|
|
|
|
"pictBeaterSoftXylophoneUp",
|
|
|
|
"pictBeaterSoftYarnDown",
|
|
|
|
"pictBeaterSoftYarnLeft",
|
|
|
|
"pictBeaterSoftYarnRight",
|
|
|
|
"pictBeaterSoftYarnUp",
|
|
|
|
"pictBeaterSpoonWoodenMallet",
|
|
|
|
"pictBeaterSuperballDown",
|
|
|
|
"pictBeaterSuperballLeft",
|
|
|
|
"pictBeaterSuperballRight",
|
|
|
|
"pictBeaterSuperballUp",
|
|
|
|
"pictBeaterTriangleDown",
|
|
|
|
"pictBeaterTriangleUp",
|
|
|
|
"pictBeaterWireBrushesDown",
|
|
|
|
"pictBeaterWireBrushesUp",
|
|
|
|
"pictBeaterWoodTimpaniDown",
|
|
|
|
"pictBeaterWoodTimpaniLeft",
|
|
|
|
"pictBeaterWoodTimpaniRight",
|
|
|
|
"pictBeaterWoodTimpaniUp",
|
|
|
|
"pictBeaterWoodXylophoneDown",
|
|
|
|
"pictBeaterWoodXylophoneLeft",
|
|
|
|
"pictBeaterWoodXylophoneRight",
|
|
|
|
"pictBeaterWoodXylophoneUp",
|
|
|
|
"pictBell",
|
|
|
|
"pictBellOfCymbal",
|
|
|
|
"pictBellPlate",
|
|
|
|
"pictBirdWhistle",
|
|
|
|
"pictBoardClapper",
|
|
|
|
"pictBongos",
|
|
|
|
"pictBrakeDrum",
|
|
|
|
"pictCabasa",
|
|
|
|
"pictCannon",
|
|
|
|
"pictCarHorn",
|
|
|
|
"pictCastanets",
|
|
|
|
"pictCenter1",
|
|
|
|
"pictCenter2",
|
|
|
|
"pictCenter3",
|
|
|
|
"pictChimes",
|
|
|
|
"pictChineseCymbal",
|
|
|
|
"pictChokeCymbal",
|
|
|
|
"pictClaves",
|
|
|
|
"pictCoins",
|
|
|
|
"pictConga",
|
|
|
|
"pictCowBell",
|
|
|
|
"pictCrashCymbals",
|
|
|
|
"pictCrotales",
|
|
|
|
"pictCymbalTongs",
|
|
|
|
"pictDamp1",
|
|
|
|
"pictDamp2",
|
|
|
|
"pictDamp3",
|
|
|
|
"pictDamp4",
|
|
|
|
"pictDrumStick",
|
|
|
|
"pictDuckCall",
|
|
|
|
"pictEdgeOfCymbal",
|
|
|
|
"pictEmptyTrap",
|
|
|
|
"pictFingerCymbals",
|
|
|
|
"pictFlexatone",
|
|
|
|
"pictFootballRatchet",
|
|
|
|
"pictGlsp",
|
|
|
|
"pictGlspSmithBrindle",
|
|
|
|
"pictGobletDrum",
|
|
|
|
"pictGong",
|
|
|
|
"pictGongWithButton",
|
|
|
|
"pictGuiro",
|
|
|
|
"pictGumHardDown",
|
|
|
|
"pictGumHardLeft",
|
|
|
|
"pictGumHardRight",
|
|
|
|
"pictGumHardUp",
|
|
|
|
"pictGumMediumDown",
|
|
|
|
"pictGumMediumLeft",
|
|
|
|
"pictGumMediumRight",
|
|
|
|
"pictGumMediumUp",
|
|
|
|
"pictGumSoftDown",
|
|
|
|
"pictGumSoftLeft",
|
|
|
|
"pictGumSoftRight",
|
|
|
|
"pictGumSoftUp",
|
|
|
|
"pictHalfOpen1",
|
|
|
|
"pictHalfOpen2",
|
|
|
|
"pictHandbell",
|
|
|
|
"pictHiHat",
|
|
|
|
"pictHiHatOnStand",
|
|
|
|
"pictKlaxonHorn",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictLeftHandCircle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictLionsRoar",
|
|
|
|
"pictLogDrum",
|
|
|
|
"pictMar",
|
|
|
|
"pictMarSmithBrindle",
|
|
|
|
"pictMaraca",
|
|
|
|
"pictMaracas",
|
|
|
|
"pictMegaphone",
|
|
|
|
"pictNormalPosition",
|
|
|
|
"pictOnRim",
|
|
|
|
"pictOpen",
|
|
|
|
"pictOpenRimShot",
|
|
|
|
"pictPistolShot",
|
|
|
|
"pictPoliceWhistle",
|
|
|
|
"pictRainstick",
|
|
|
|
"pictRatchet",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictRightHandSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictRim1",
|
|
|
|
"pictRim2",
|
|
|
|
"pictRim3",
|
|
|
|
"pictRimShotOnStem",
|
|
|
|
"pictSandpaperBlocks",
|
|
|
|
"pictScrapeAroundRim",
|
|
|
|
"pictScrapeCenterToEdge",
|
|
|
|
"pictScrapeEdgeToCenter",
|
|
|
|
"pictSiren",
|
|
|
|
"pictSistrum",
|
|
|
|
"pictSizzleCymbal",
|
|
|
|
"pictSleighBell",
|
|
|
|
"pictSlideBrushOnGong",
|
|
|
|
"pictSlideWhistle",
|
|
|
|
"pictSlitDrum",
|
|
|
|
"pictSnareDrum",
|
|
|
|
"pictSnareDrumMilitary",
|
|
|
|
"pictSnareDrumSnaresOff",
|
|
|
|
"pictStickShot",
|
|
|
|
"pictSuperball",
|
|
|
|
"pictSuspendedCymbal",
|
|
|
|
"pictTabla",
|
|
|
|
"pictTamTam",
|
|
|
|
"pictTamTamWithBeater",
|
|
|
|
"pictTambourine",
|
|
|
|
"pictTempleBlocks",
|
|
|
|
"pictTenorDrum",
|
|
|
|
"pictThundersheet",
|
|
|
|
"pictTimbales",
|
|
|
|
"pictTimpani",
|
|
|
|
"pictTomTom",
|
|
|
|
"pictTriangle",
|
|
|
|
"pictTubularBells",
|
|
|
|
"pictVib",
|
|
|
|
"pictVibSmithBrindle",
|
|
|
|
"pictVibraslap",
|
|
|
|
"pictVietnameseHat",
|
|
|
|
"pictWhip",
|
|
|
|
"pictWindChimesGlass",
|
|
|
|
"pictWindMachine",
|
|
|
|
"pictWindWhistle",
|
|
|
|
"pictWoodBlock",
|
|
|
|
"pictWoundHardDown",
|
|
|
|
"pictWoundHardLeft",
|
|
|
|
"pictWoundHardRight",
|
|
|
|
"pictWoundHardUp",
|
|
|
|
"pictWoundSoftDown",
|
|
|
|
"pictWoundSoftLeft",
|
|
|
|
"pictWoundSoftRight",
|
|
|
|
"pictWoundSoftUp",
|
|
|
|
"pictXyl",
|
|
|
|
"pictXylSmithBrindle",
|
|
|
|
"pluckedBuzzPizzicato",
|
|
|
|
"pluckedDamp",
|
|
|
|
"pluckedDampAll",
|
|
|
|
"pluckedDampOnStem",
|
|
|
|
"pluckedFingernailFlick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pluckedLeftHandPizzicato",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pluckedPlectrum",
|
|
|
|
"pluckedSnapPizzicatoAbove",
|
|
|
|
"pluckedSnapPizzicatoBelow",
|
|
|
|
"pluckedWithFingernails",
|
|
|
|
"quindicesima",
|
|
|
|
"quindicesimaAlta",
|
|
|
|
"quindicesimaBassa",
|
|
|
|
"repeat1Bar",
|
|
|
|
"repeat2Bars",
|
|
|
|
"repeat4Bars",
|
2013-11-29 00:37:48 +01:00
|
|
|
"repeatDot",
|
2013-11-06 15:58:05 +01:00
|
|
|
"repeatDots",
|
|
|
|
"rest1024th",
|
|
|
|
"rest128th",
|
|
|
|
"rest16th",
|
|
|
|
"rest256th",
|
|
|
|
"rest32nd",
|
|
|
|
"rest512th",
|
|
|
|
"rest64th",
|
|
|
|
"rest8th",
|
|
|
|
"restDoubleWhole",
|
|
|
|
"restHBar",
|
|
|
|
"restHBarLeft",
|
|
|
|
"restHBarRight",
|
|
|
|
"restHalf",
|
|
|
|
"restLonga",
|
|
|
|
"restQuarter",
|
|
|
|
"restQuarterOld",
|
|
|
|
"restWhole",
|
|
|
|
"reversedBrace",
|
|
|
|
"reversedBracketBottom",
|
|
|
|
"reversedBracketTop",
|
|
|
|
"rightRepeat",
|
|
|
|
"rightRepeatSmall",
|
|
|
|
"segno",
|
|
|
|
"segnoSerpent1",
|
|
|
|
"segnoSerpent2",
|
|
|
|
"semipitchedPercussionClef1",
|
|
|
|
"semipitchedPercussionClef2",
|
2013-11-29 00:37:48 +01:00
|
|
|
"splitBarDivider",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff1Line",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff1LineNarrow",
|
|
|
|
"staff1LineWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff2Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff2LinesNarrow",
|
|
|
|
"staff2LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff3Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff3LinesNarrow",
|
|
|
|
"staff3LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff4Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff4LinesNarrow",
|
|
|
|
"staff4LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff5Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff5LinesNarrow",
|
|
|
|
"staff5LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff6Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff6LinesNarrow",
|
|
|
|
"staff6LinesWide",
|
|
|
|
"staffPosLower1",
|
|
|
|
"staffPosLower2",
|
|
|
|
"staffPosLower3",
|
|
|
|
"staffPosLower4",
|
|
|
|
"staffPosLower5",
|
|
|
|
"staffPosLower6",
|
|
|
|
"staffPosLower7",
|
|
|
|
"staffPosLower8",
|
|
|
|
"staffPosRaise1",
|
|
|
|
"staffPosRaise2",
|
|
|
|
"staffPosRaise3",
|
|
|
|
"staffPosRaise4",
|
|
|
|
"staffPosRaise5",
|
|
|
|
"staffPosRaise6",
|
|
|
|
"staffPosRaise7",
|
|
|
|
"staffPosRaise8",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stem",
|
|
|
|
"stemBowOnBridge",
|
|
|
|
"stemBowOnTailpiece",
|
|
|
|
"stemBuzzRoll",
|
|
|
|
"stemDamp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"stemHarpStringNoise",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stemMultiphonicsBlack",
|
|
|
|
"stemMultiphonicsBlackWhite",
|
|
|
|
"stemMultiphonicsWhite",
|
|
|
|
"stemPendereckiTremolo",
|
|
|
|
"stemRimShot",
|
|
|
|
"stemSprechgesang",
|
|
|
|
"stemSulPonticello",
|
|
|
|
"stemSussurando",
|
|
|
|
"stemSwished",
|
|
|
|
"stemVibratoPulse",
|
|
|
|
"stringsBowBehindBridge",
|
|
|
|
"stringsBowOnBridge",
|
|
|
|
"stringsBowOnTailpiece",
|
|
|
|
"stringsChangeBowDirection",
|
|
|
|
"stringsDownBow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"stringsFouett\u00e9",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stringsHalfHarmonic",
|
|
|
|
"stringsHarmonic",
|
|
|
|
"stringsJeteAbove",
|
|
|
|
"stringsJeteBelow",
|
|
|
|
"stringsMuteOff",
|
|
|
|
"stringsMuteOn",
|
|
|
|
"stringsOverpressureDownBow",
|
|
|
|
"stringsOverpressureNoDirection",
|
|
|
|
"stringsOverpressurePossibileDownBow",
|
|
|
|
"stringsOverpressurePossibileUpBow",
|
|
|
|
"stringsOverpressureUpBow",
|
|
|
|
"stringsThumbPosition",
|
|
|
|
"stringsUpBow",
|
|
|
|
"stringsVibratoPulse",
|
|
|
|
"systemDivider",
|
|
|
|
"systemDividerExtraLong",
|
|
|
|
"systemDividerLong",
|
2013-11-29 00:37:48 +01:00
|
|
|
"textAugmentationDot",
|
|
|
|
"textBlackNoteFrac16thLongStem",
|
|
|
|
"textBlackNoteFrac16thShortStem",
|
|
|
|
"textBlackNoteFrac32ndLongStem",
|
|
|
|
"textBlackNoteFrac8thLongStem",
|
|
|
|
"textBlackNoteFrac8thShortStem",
|
|
|
|
"textBlackNoteLongStem",
|
|
|
|
"textBlackNoteShortStem",
|
|
|
|
"textCont16thBeamLongStem",
|
|
|
|
"textCont16thBeamShortStem",
|
|
|
|
"textCont32ndBeamLongStem",
|
|
|
|
"textCont8thBeamLongStem",
|
|
|
|
"textCont8thBeamShortStem",
|
|
|
|
"textTie",
|
|
|
|
"textTuplet3LongStem",
|
|
|
|
"textTuplet3ShortStem",
|
|
|
|
"textTupletBracketEndLongStem",
|
|
|
|
"textTupletBracketEndShortStem",
|
|
|
|
"textTupletBracketStartLongStem",
|
|
|
|
"textTupletBracketStartShortStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSig0",
|
|
|
|
"timeSig1",
|
|
|
|
"timeSig2",
|
|
|
|
"timeSig3",
|
|
|
|
"timeSig4",
|
|
|
|
"timeSig5",
|
|
|
|
"timeSig6",
|
|
|
|
"timeSig7",
|
|
|
|
"timeSig8",
|
|
|
|
"timeSig9",
|
2013-11-29 00:37:48 +01:00
|
|
|
"timeSigCombDenominator",
|
|
|
|
"timeSigCombNumerator",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSigComma",
|
|
|
|
"timeSigCommon",
|
|
|
|
"timeSigCutCommon",
|
|
|
|
"timeSigEquals",
|
|
|
|
"timeSigFractionHalf",
|
|
|
|
"timeSigFractionOneThird",
|
|
|
|
"timeSigFractionQuarter",
|
|
|
|
"timeSigFractionThreeQuarters",
|
|
|
|
"timeSigFractionTwoThirds",
|
|
|
|
"timeSigFractionalSlash",
|
|
|
|
"timeSigMinus",
|
|
|
|
"timeSigMultiply",
|
|
|
|
"timeSigOpenPenderecki",
|
|
|
|
"timeSigParensLeft",
|
|
|
|
"timeSigParensLeftSmall",
|
|
|
|
"timeSigParensRight",
|
|
|
|
"timeSigParensRightSmall",
|
|
|
|
"timeSigPlus",
|
|
|
|
"timeSigPlusSmall",
|
|
|
|
"timeSigX",
|
|
|
|
"tremolo1",
|
|
|
|
"tremolo2",
|
|
|
|
"tremolo3",
|
|
|
|
"tremolo4",
|
|
|
|
"tremolo5",
|
|
|
|
"tremoloFingered1",
|
|
|
|
"tremoloFingered2",
|
|
|
|
"tremoloFingered3",
|
|
|
|
"tremoloFingered4",
|
|
|
|
"tremoloFingered5",
|
|
|
|
"tripleTongueAbove",
|
|
|
|
"tripleTongueBelow",
|
|
|
|
"tuplet0",
|
|
|
|
"tuplet1",
|
|
|
|
"tuplet2",
|
|
|
|
"tuplet3",
|
|
|
|
"tuplet4",
|
|
|
|
"tuplet5",
|
|
|
|
"tuplet6",
|
|
|
|
"tuplet7",
|
|
|
|
"tuplet8",
|
|
|
|
"tuplet9",
|
|
|
|
"tupletColon",
|
|
|
|
"unmeasuredTremolo",
|
|
|
|
"unmeasuredTremoloSimple",
|
|
|
|
"unpitchedPercussionClef1",
|
|
|
|
"unpitchedPercussionClef2",
|
|
|
|
"ventiduesima",
|
|
|
|
"ventiduesimaAlta",
|
|
|
|
"ventiduesimaBassa",
|
|
|
|
"vocalBreathMark",
|
|
|
|
"vocalMouthClosed",
|
|
|
|
"vocalMouthOpen",
|
|
|
|
"vocalMouthPursed",
|
|
|
|
"vocalMouthSlightlyOpen",
|
|
|
|
"vocalMouthWideOpen",
|
|
|
|
"vocalSprechgesang",
|
|
|
|
"vocalsSussurando",
|
|
|
|
"wiggleArpeggiatoDown",
|
|
|
|
"wiggleArpeggiatoDownArrow",
|
|
|
|
"wiggleArpeggiatoDownSwash",
|
|
|
|
"wiggleArpeggiatoUp",
|
|
|
|
"wiggleArpeggiatoUpArrow",
|
|
|
|
"wiggleArpeggiatoUpSwash",
|
|
|
|
"wiggleCircular",
|
|
|
|
"wiggleCircularConstant",
|
|
|
|
"wiggleCircularEnd",
|
|
|
|
"wiggleCircularLarge",
|
|
|
|
"wiggleCircularLarger",
|
|
|
|
"wiggleCircularLargerStill",
|
|
|
|
"wiggleCircularLargest",
|
|
|
|
"wiggleCircularSmall",
|
|
|
|
"wiggleCircularStart",
|
|
|
|
"wiggleGlissando",
|
|
|
|
"wiggleGlissandoGroup1",
|
|
|
|
"wiggleGlissandoGroup2",
|
|
|
|
"wiggleGlissandoGroup3",
|
|
|
|
"wiggleSawtooth",
|
|
|
|
"wiggleSquaretooth",
|
|
|
|
"wiggleTrill",
|
|
|
|
"wiggleTrillFast",
|
|
|
|
"wiggleTrillFaster",
|
|
|
|
"wiggleTrillFasterStill",
|
|
|
|
"wiggleTrillFastest",
|
|
|
|
"wiggleTrillSlow",
|
|
|
|
"wiggleTrillSlower",
|
|
|
|
"wiggleTrillSlowerStill",
|
|
|
|
"wiggleTrillSlowest",
|
|
|
|
"wiggleVIbratoLargestSlower",
|
|
|
|
"wiggleVIbratoMediumSlower",
|
|
|
|
"wiggleVibrato",
|
|
|
|
"wiggleVibratoLargeFast",
|
|
|
|
"wiggleVibratoLargeFaster",
|
|
|
|
"wiggleVibratoLargeFasterStill",
|
|
|
|
"wiggleVibratoLargeFastest",
|
|
|
|
"wiggleVibratoLargeSlow",
|
|
|
|
"wiggleVibratoLargeSlower",
|
|
|
|
"wiggleVibratoLargeSlowest",
|
|
|
|
"wiggleVibratoLargestFast",
|
|
|
|
"wiggleVibratoLargestFaster",
|
|
|
|
"wiggleVibratoLargestFasterStill",
|
|
|
|
"wiggleVibratoLargestFastest",
|
|
|
|
"wiggleVibratoLargestSlow",
|
|
|
|
"wiggleVibratoLargestSlowest",
|
|
|
|
"wiggleVibratoMediumFast",
|
|
|
|
"wiggleVibratoMediumFaster",
|
|
|
|
"wiggleVibratoMediumFasterStill",
|
|
|
|
"wiggleVibratoMediumFastest",
|
|
|
|
"wiggleVibratoMediumSlow",
|
|
|
|
"wiggleVibratoMediumSlowest",
|
|
|
|
"wiggleVibratoSmallFast",
|
|
|
|
"wiggleVibratoSmallFaster",
|
|
|
|
"wiggleVibratoSmallFasterStill",
|
|
|
|
"wiggleVibratoSmallFastest",
|
|
|
|
"wiggleVibratoSmallSlow",
|
|
|
|
"wiggleVibratoSmallSlower",
|
|
|
|
"wiggleVibratoSmallSlowest",
|
|
|
|
"wiggleVibratoSmallestFast",
|
|
|
|
"wiggleVibratoSmallestFaster",
|
|
|
|
"wiggleVibratoSmallestFasterStill",
|
|
|
|
"wiggleVibratoSmallestFastest",
|
|
|
|
"wiggleVibratoSmallestSlow",
|
|
|
|
"wiggleVibratoSmallestSlower",
|
|
|
|
"wiggleVibratoSmallestSlowest",
|
|
|
|
"wiggleVibratoStart",
|
|
|
|
"wiggleVibratoWide",
|
|
|
|
"wiggleWavy",
|
|
|
|
"windClosedHole",
|
|
|
|
"windFlatEmbouchure",
|
|
|
|
"windHalfClosedHole1",
|
|
|
|
"windHalfClosedHole2",
|
|
|
|
"windHalfClosedHole3",
|
|
|
|
"windLessRelaxedEmbouchure",
|
|
|
|
"windLessTightEmbouchure",
|
|
|
|
"windMultiphonicsBlackStem",
|
|
|
|
"windMultiphonicsBlackWhiteStem",
|
|
|
|
"windMultiphonicsWhiteStem",
|
|
|
|
"windOpenHole",
|
|
|
|
"windReedPositionIn",
|
|
|
|
"windReedPositionNormal",
|
|
|
|
"windReedPositionOut",
|
|
|
|
"windRelaxedEmbouchure",
|
|
|
|
"windSharpEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windStrongAirPressure",
|
2013-11-06 15:58:05 +01:00
|
|
|
"windThreeQuartersClosedHole",
|
|
|
|
"windTightEmbouchure",
|
|
|
|
"windTrillKey",
|
2013-11-11 15:11:28 +01:00
|
|
|
"windVeryTightEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windWeakAirPressure",
|
|
|
|
|
|
|
|
// EXTENSIONS
|
|
|
|
// SMuFL stylistic alternates which we need to access directly
|
|
|
|
|
|
|
|
"noteheadDoubleWholeAlt", // double whole with double side bars
|
|
|
|
"6StringTabClefSerif", // TAB clef in script style
|
|
|
|
|
|
|
|
// MuseScore local symbols, precomposed symbols to mimic some emmentaler glyphs
|
2013-11-11 15:11:28 +01:00
|
|
|
|
2013-11-12 15:15:48 +01:00
|
|
|
"ornamentPrallMordent",
|
2013-11-11 15:11:28 +01:00
|
|
|
"ornamentUpPrall",
|
|
|
|
"ornamentUpMordent",
|
|
|
|
"ornamentPrallDown",
|
|
|
|
"ornamentDownPrall",
|
|
|
|
"ornamentDownMordent",
|
|
|
|
"ornamentPrallUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"ornamentLinePrall",
|
|
|
|
|
|
|
|
// additional symbols
|
|
|
|
|
|
|
|
"noteLongaUp",
|
|
|
|
"noteLongaDown",
|
|
|
|
"noteLongaSquareUp",
|
|
|
|
"noteLongaSquareDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
};
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QVector<QString> Sym::symUserNames = {
|
2013-11-12 15:15:48 +01:00
|
|
|
"noSym",
|
2013-11-06 15:58:05 +01:00
|
|
|
"4stringTabClef",
|
|
|
|
"6stringTabClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal1119LargeDiesisDown",
|
|
|
|
"accSagittal1119LargeDiesisUp",
|
|
|
|
"accSagittal1119MediumDiesisDown",
|
|
|
|
"accSagittal1119MediumDiesisUp",
|
|
|
|
"accSagittal1149CommaDown",
|
|
|
|
"accSagittal1149CommaUp",
|
|
|
|
"accSagittal11LargeDiesisDown",
|
|
|
|
"accSagittal11LargeDiesisUp",
|
|
|
|
"accSagittal11MediumDiesisDown",
|
|
|
|
"accSagittal11MediumDiesisUp",
|
|
|
|
"accSagittal143CommaDown",
|
|
|
|
"accSagittal143CommaUp",
|
|
|
|
"accSagittal17CommaDown",
|
|
|
|
"accSagittal17CommaUp",
|
|
|
|
"accSagittal17KleismaDown",
|
|
|
|
"accSagittal17KleismaUp",
|
|
|
|
"accSagittal19CommaDown",
|
|
|
|
"accSagittal19CommaUp",
|
|
|
|
"accSagittal19SchismaDown",
|
|
|
|
"accSagittal19SchismaUp",
|
|
|
|
"accSagittal23CommaDown",
|
|
|
|
"accSagittal23CommaUp",
|
|
|
|
"accSagittal23SmallDiesisDown",
|
|
|
|
"accSagittal23SmallDiesisUp",
|
|
|
|
"accSagittal25SmallDiesisDown",
|
|
|
|
"accSagittal25SmallDiesisUp",
|
|
|
|
"accSagittal35LargeDiesisUp",
|
|
|
|
"accSagittal35LargeDiesusDown",
|
|
|
|
"accSagittal35MediumDiesisDown",
|
|
|
|
"accSagittal35MediumDiesisUp",
|
|
|
|
"accSagittal49LargeDiesisDown",
|
|
|
|
"accSagittal49LargeDiesisUp",
|
|
|
|
"accSagittal49MediumDiesisDown",
|
|
|
|
"accSagittal49MediumDiesisUp",
|
|
|
|
"accSagittal49SmallDiesisDown",
|
|
|
|
"accSagittal49SmallDiesisUp",
|
|
|
|
"accSagittal511SmallDiesisDown",
|
|
|
|
"accSagittal511SmallDiesisUp",
|
|
|
|
"accSagittal513LargeDiesisDown",
|
|
|
|
"accSagittal513LargeDiesisUp",
|
|
|
|
"accSagittal513MediumDiesisDown",
|
|
|
|
"accSagittal513MediumDiesisUp",
|
|
|
|
"accSagittal519CommaDown",
|
|
|
|
"accSagittal519CommaUp",
|
|
|
|
"accSagittal523SmallDiesisDown",
|
|
|
|
"accSagittal523SmallDiesisUp",
|
|
|
|
"accSagittal549MediumDiesisDown",
|
|
|
|
"accSagittal549MediumDiesisUp",
|
|
|
|
"accSagittal55CommaDown",
|
|
|
|
"accSagittal55CommaUp",
|
|
|
|
"accSagittal57KleismaDown",
|
|
|
|
"accSagittal57KleismaUp",
|
|
|
|
"accSagittal5CommaDown",
|
|
|
|
"accSagittal5CommaUp",
|
|
|
|
"accSagittal711CommaDown",
|
|
|
|
"accSagittal711CommaUp",
|
|
|
|
"accSagittal711KleismaDown",
|
|
|
|
"accSagittal711KleismaUp",
|
|
|
|
"accSagittal719CommaDown",
|
|
|
|
"accSagittal719CommaUp",
|
|
|
|
"accSagittal7CommaDown",
|
|
|
|
"accSagittal7CommaUp",
|
|
|
|
"accSagittalAcute",
|
|
|
|
"accSagittalDoubleFlat1149CUp",
|
|
|
|
"accSagittalDoubleFlat143CUp",
|
|
|
|
"accSagittalDoubleFlat17CUp",
|
|
|
|
"accSagittalDoubleFlat17kUp",
|
|
|
|
"accSagittalDoubleFlat19CUp",
|
|
|
|
"accSagittalDoubleFlat19sUp",
|
|
|
|
"accSagittalDoubleFlat23CUp",
|
|
|
|
"accSagittalDoubleFlat23SUp",
|
|
|
|
"accSagittalDoubleFlat25SUp",
|
|
|
|
"accSagittalDoubleFlat2ApotomesDown",
|
|
|
|
"accSagittalDoubleFlat49SUp",
|
|
|
|
"accSagittalDoubleFlat511SUp",
|
|
|
|
"accSagittalDoubleFlat519CUp",
|
|
|
|
"accSagittalDoubleFlat523SUp",
|
|
|
|
"accSagittalDoubleFlat55CUp",
|
|
|
|
"accSagittalDoubleFlat57kUp",
|
|
|
|
"accSagittalDoubleFlat5CUp",
|
|
|
|
"accSagittalDoubleFlat711CUp",
|
|
|
|
"accSagittalDoubleFlat711kUp",
|
|
|
|
"accSagittalDoubleFlat719CUp",
|
|
|
|
"accSagittalDoubleFlat7CUp",
|
|
|
|
"accSagittalDoubleSharp1149CDown",
|
|
|
|
"accSagittalDoubleSharp143CDown",
|
|
|
|
"accSagittalDoubleSharp17CDown",
|
|
|
|
"accSagittalDoubleSharp17kDown",
|
|
|
|
"accSagittalDoubleSharp19CDown",
|
|
|
|
"accSagittalDoubleSharp19sDown",
|
|
|
|
"accSagittalDoubleSharp23CDown",
|
|
|
|
"accSagittalDoubleSharp23SDown",
|
|
|
|
"accSagittalDoubleSharp25SDown",
|
|
|
|
"accSagittalDoubleSharp2ApotomesUp",
|
|
|
|
"accSagittalDoubleSharp49SDown",
|
|
|
|
"accSagittalDoubleSharp511SDown",
|
|
|
|
"accSagittalDoubleSharp519CDown",
|
|
|
|
"accSagittalDoubleSharp523SDown",
|
|
|
|
"accSagittalDoubleSharp55CDown",
|
|
|
|
"accSagittalDoubleSharp57kDown",
|
|
|
|
"accSagittalDoubleSharp5CDown",
|
|
|
|
"accSagittalDoubleSharp711CDown",
|
|
|
|
"accSagittalDoubleSharp711kDown",
|
|
|
|
"accSagittalDoubleSharp719CDown",
|
|
|
|
"accSagittalDoubleSharp7CDown",
|
|
|
|
"accSagittalFlat1119LDown",
|
|
|
|
"accSagittalFlat1119MDown",
|
|
|
|
"accSagittalFlat1149CDown",
|
|
|
|
"accSagittalFlat1149CUp",
|
|
|
|
"accSagittalFlat11LDown",
|
|
|
|
"accSagittalFlat11MDown",
|
|
|
|
"accSagittalFlat143CDown",
|
|
|
|
"accSagittalFlat143CUp",
|
|
|
|
"accSagittalFlat17CDown",
|
|
|
|
"accSagittalFlat17CUp",
|
|
|
|
"accSagittalFlat17kDown",
|
|
|
|
"accSagittalFlat17kUp",
|
|
|
|
"accSagittalFlat19CDown",
|
|
|
|
"accSagittalFlat19CUp",
|
|
|
|
"accSagittalFlat19sDown",
|
|
|
|
"accSagittalFlat19sUp",
|
|
|
|
"accSagittalFlat23CDown",
|
|
|
|
"accSagittalFlat23CUp",
|
|
|
|
"accSagittalFlat23SDown",
|
|
|
|
"accSagittalFlat23SUp",
|
|
|
|
"accSagittalFlat25SDown",
|
|
|
|
"accSagittalFlat25SUp",
|
|
|
|
"accSagittalFlat35LDown",
|
|
|
|
"accSagittalFlat35MDown",
|
|
|
|
"accSagittalFlat49LDown",
|
|
|
|
"accSagittalFlat49MDown",
|
|
|
|
"accSagittalFlat49SDown",
|
|
|
|
"accSagittalFlat49SUp",
|
|
|
|
"accSagittalFlat511SDown",
|
|
|
|
"accSagittalFlat511SUp",
|
|
|
|
"accSagittalFlat513LDown",
|
|
|
|
"accSagittalFlat513MDown",
|
|
|
|
"accSagittalFlat519CDown",
|
|
|
|
"accSagittalFlat519CUp",
|
|
|
|
"accSagittalFlat523SDown",
|
|
|
|
"accSagittalFlat523SUp",
|
|
|
|
"accSagittalFlat549MDown",
|
|
|
|
"accSagittalFlat55CDown",
|
|
|
|
"accSagittalFlat55CUp",
|
|
|
|
"accSagittalFlat57kDown",
|
|
|
|
"accSagittalFlat57kUp",
|
|
|
|
"accSagittalFlat5CDown",
|
|
|
|
"accSagittalFlat5CUp",
|
|
|
|
"accSagittalFlat711CDown",
|
|
|
|
"accSagittalFlat711CUp",
|
|
|
|
"accSagittalFlat711kDown",
|
|
|
|
"accSagittalFlat711kUp",
|
|
|
|
"accSagittalFlat719CDown",
|
|
|
|
"accSagittalFlat719CUp",
|
|
|
|
"accSagittalFlat7CDown",
|
|
|
|
"accSagittalFlat7CUp",
|
|
|
|
"accSagittalFlatApotomeDown",
|
|
|
|
"accSagittalGrave",
|
|
|
|
"accSagittalLargeDoubleSharp",
|
|
|
|
"accSagittalNarrowReversedFlat",
|
|
|
|
"accSagittalNarrowReversedFlatAndFlat",
|
|
|
|
"accSagittalShaftDown",
|
|
|
|
"accSagittalShaftUp",
|
|
|
|
"accSagittalSharp1119LUp",
|
|
|
|
"accSagittalSharp1119MUp",
|
|
|
|
"accSagittalSharp1149CDown",
|
|
|
|
"accSagittalSharp1149CUp",
|
|
|
|
"accSagittalSharp11LUp",
|
|
|
|
"accSagittalSharp11MUp",
|
|
|
|
"accSagittalSharp143CDown",
|
|
|
|
"accSagittalSharp143CUp",
|
|
|
|
"accSagittalSharp17CDown",
|
|
|
|
"accSagittalSharp17CUp",
|
|
|
|
"accSagittalSharp17kDown",
|
|
|
|
"accSagittalSharp17kUp",
|
|
|
|
"accSagittalSharp19CDown",
|
|
|
|
"accSagittalSharp19CUp",
|
|
|
|
"accSagittalSharp19sDown",
|
|
|
|
"accSagittalSharp19sUp",
|
|
|
|
"accSagittalSharp23CDown",
|
|
|
|
"accSagittalSharp23CUp",
|
|
|
|
"accSagittalSharp23SDown",
|
|
|
|
"accSagittalSharp23SUp",
|
|
|
|
"accSagittalSharp25SDown",
|
|
|
|
"accSagittalSharp25SUp",
|
|
|
|
"accSagittalSharp35LUp",
|
|
|
|
"accSagittalSharp35MUp",
|
|
|
|
"accSagittalSharp49LUp",
|
|
|
|
"accSagittalSharp49MUp",
|
|
|
|
"accSagittalSharp49SDown",
|
|
|
|
"accSagittalSharp49SUp",
|
|
|
|
"accSagittalSharp511SDown",
|
|
|
|
"accSagittalSharp513LUp",
|
|
|
|
"accSagittalSharp513MUp",
|
|
|
|
"accSagittalSharp519CDown",
|
|
|
|
"accSagittalSharp519CUp",
|
|
|
|
"accSagittalSharp523SDown",
|
|
|
|
"accSagittalSharp523SUp",
|
|
|
|
"accSagittalSharp549MUp",
|
|
|
|
"accSagittalSharp55CDown",
|
|
|
|
"accSagittalSharp55CUp",
|
|
|
|
"accSagittalSharp57kDown",
|
|
|
|
"accSagittalSharp57kUp",
|
|
|
|
"accSagittalSharp5CDown",
|
|
|
|
"accSagittalSharp5CUp",
|
|
|
|
"accSagittalSharp611SUp",
|
|
|
|
"accSagittalSharp711CDown",
|
|
|
|
"accSagittalSharp711CUp",
|
|
|
|
"accSagittalSharp711kDown",
|
|
|
|
"accSagittalSharp711kUp",
|
|
|
|
"accSagittalSharp719CDown",
|
|
|
|
"accSagittalSharp719CUp",
|
|
|
|
"accSagittalSharp7CDown",
|
|
|
|
"accSagittalSharp7CUp",
|
|
|
|
"accSagittalSharpApotomeUp",
|
|
|
|
"accSagittalUnused1",
|
|
|
|
"accSagittalUnused2",
|
|
|
|
"accSagittalUnused3",
|
|
|
|
"accSagittalUnused4",
|
|
|
|
"accSagittalWilsonMinus",
|
|
|
|
"accSagittalWilsonPlus",
|
|
|
|
"accdnCombDot",
|
|
|
|
"accdnCombLH2RanksEmpty",
|
|
|
|
"accdnCombLH3RanksEmptySquare",
|
|
|
|
"accdnCombRH3RanksEmpty",
|
|
|
|
"accdnCombRH4RanksEmpty",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnLH2Ranks16Round",
|
|
|
|
"accdnLH2Ranks8Plus16Round",
|
|
|
|
"accdnLH2Ranks8Round",
|
|
|
|
"accdnLH2RanksFullMasterRound",
|
|
|
|
"accdnLH2RanksMasterPlus16Round",
|
|
|
|
"accdnLH2RanksMasterRound",
|
|
|
|
"accdnLH3Ranks2Plus8Square",
|
|
|
|
"accdnLH3Ranks2Square",
|
|
|
|
"accdnLH3Ranks8Square",
|
|
|
|
"accdnLH3RanksDouble8Square",
|
|
|
|
"accdnLH3RanksTuttiSquare",
|
|
|
|
"accdnRH3RanksAccordion",
|
|
|
|
"accdnRH3RanksAuthenticMusette",
|
|
|
|
"accdnRH3RanksBandoneon",
|
|
|
|
"accdnRH3RanksBassoon",
|
|
|
|
"accdnRH3RanksClarinet",
|
|
|
|
"accdnRH3RanksHarmonium",
|
|
|
|
"accdnRH3RanksImitationMusette",
|
|
|
|
"accdnRH3RanksLowerTremolo8",
|
|
|
|
"accdnRH3RanksMaster",
|
|
|
|
"accdnRH3RanksOboe",
|
|
|
|
"accdnRH3RanksOrgan",
|
|
|
|
"accdnRH3RanksPiccolo",
|
|
|
|
"accdnRH3RanksUpperTremolo8",
|
|
|
|
"accdnRH3RanksViolin",
|
|
|
|
"accdnRH4RanksAlto",
|
|
|
|
"accdnRH4RanksBassAlto",
|
|
|
|
"accdnRH4RanksMaster",
|
|
|
|
"accdnRH4RanksSoftBass",
|
|
|
|
"accdnRH4RanksSoftTenor",
|
|
|
|
"accdnRH4RanksSoprano",
|
|
|
|
"accdnRH4RanksTenor",
|
|
|
|
"accidental1CommaFlat",
|
|
|
|
"accidental1CommaSharp",
|
|
|
|
"accidental2CommaFlat",
|
|
|
|
"accidental2CommaSharp",
|
|
|
|
"accidental3CommaFlat",
|
|
|
|
"accidental3CommaSharp",
|
|
|
|
"accidental4CommaFlat",
|
|
|
|
"accidental5CommaSharp",
|
|
|
|
"accidentalArrowDown",
|
|
|
|
"accidentalArrowUp",
|
|
|
|
"accidentalBakiyeFlat",
|
|
|
|
"accidentalBakiyeSharp",
|
|
|
|
"accidentalBuyukMucennebFlat",
|
|
|
|
"accidentalBuyukMucennebSharp",
|
|
|
|
"accidentalCombiningCloseCurlyBrace",
|
|
|
|
"accidentalCombiningLower17Schisma",
|
|
|
|
"accidentalCombiningLower19Schisma",
|
|
|
|
"accidentalCombiningLower23Limit29LimitComma",
|
|
|
|
"accidentalCombiningLower31Schisma",
|
|
|
|
"accidentalCombiningOpenCurlyBrace",
|
|
|
|
"accidentalCombiningRaise17Schisma",
|
|
|
|
"accidentalCombiningRaise19Schisma",
|
|
|
|
"accidentalCombiningRaise23Limit29LimitComma",
|
|
|
|
"accidentalCombiningRaise31Schisma",
|
|
|
|
"accidentalDoubleFlat",
|
|
|
|
"accidentalDoubleFlatArrowDown",
|
|
|
|
"accidentalDoubleFlatArrowUp",
|
|
|
|
"accidentalDoubleFlatEqualTempered",
|
|
|
|
"accidentalDoubleFlatInverted",
|
|
|
|
"accidentalDoubleFlatOneArrowDown",
|
|
|
|
"accidentalDoubleFlatOneArrowUp",
|
|
|
|
"accidentalDoubleFlatReversed",
|
|
|
|
"accidentalDoubleFlatThreeArrowsDown",
|
|
|
|
"accidentalDoubleFlatThreeArrowsUp",
|
|
|
|
"accidentalDoubleFlatTwoArrowsDown",
|
|
|
|
"accidentalDoubleFlatTwoArrowsUp",
|
|
|
|
"accidentalDoubleSharp",
|
|
|
|
"accidentalDoubleSharpArrowDown",
|
|
|
|
"accidentalDoubleSharpArrowUp",
|
|
|
|
"accidentalDoubleSharpEqualTempered",
|
|
|
|
"accidentalDoubleSharpOneArrowDown",
|
|
|
|
"accidentalDoubleSharpOneArrowUp",
|
|
|
|
"accidentalDoubleSharpThreeArrowsDown",
|
|
|
|
"accidentalDoubleSharpThreeArrowsUp",
|
|
|
|
"accidentalDoubleSharpTwoArrowsDown",
|
|
|
|
"accidentalDoubleSharpTwoArrowsUp",
|
|
|
|
"accidentalFilledReversedFlatAndFlat",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalFilledReversedFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatArrowUp",
|
|
|
|
"accidentalFlat",
|
|
|
|
"accidentalFlatEqualTempered",
|
|
|
|
"accidentalFlatInverted",
|
|
|
|
"accidentalFlatOneArrowDown",
|
|
|
|
"accidentalFlatOneArrowUp",
|
|
|
|
"accidentalFlatThreeArrowsDown",
|
|
|
|
"accidentalFlatThreeArrowsUp",
|
|
|
|
"accidentalFlatTwoArrowsDown",
|
|
|
|
"accidentalFlatTwoArrowsUp",
|
|
|
|
"accidentalHalfSharpArrowDown",
|
|
|
|
"accidentalHalfSharpArrowUp",
|
|
|
|
"accidentalJohnston13",
|
|
|
|
"accidentalJohnston31",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalJohnstonEl",
|
|
|
|
"accidentalJohnstonMinus",
|
|
|
|
"accidentalJohnstonPlus",
|
|
|
|
"accidentalJohnstonSeven",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalKomaFlat",
|
|
|
|
"accidentalKomaSharp",
|
|
|
|
"accidentalKoron",
|
|
|
|
"accidentalKucukMucennebFlat",
|
|
|
|
"accidentalKucukMucennebSharp",
|
|
|
|
"accidentalLowerOneSeptimalComma",
|
|
|
|
"accidentalLowerOneTridecimalQuartertone",
|
|
|
|
"accidentalLowerOneUndecimalQuartertone",
|
|
|
|
"accidentalLowerTwoSeptimalCommas",
|
|
|
|
"accidentalManeriSims12Down",
|
|
|
|
"accidentalManeriSims12Up",
|
|
|
|
"accidentalManeriSims4Down",
|
|
|
|
"accidentalManeriSims4Up",
|
|
|
|
"accidentalManeriSims6Down",
|
|
|
|
"accidentalManeriSims6Up",
|
|
|
|
"accidentalNatural",
|
|
|
|
"accidentalNaturalEqualTempered",
|
|
|
|
"accidentalNaturalFlat",
|
|
|
|
"accidentalNaturalOneArrowDown",
|
|
|
|
"accidentalNaturalOneArrowUp",
|
|
|
|
"accidentalNaturalReversed",
|
|
|
|
"accidentalNaturalSharp",
|
|
|
|
"accidentalNaturalThreeArrowsDown",
|
|
|
|
"accidentalNaturalThreeArrowsUp",
|
|
|
|
"accidentalNaturalTwoArrowsDown",
|
|
|
|
"accidentalNaturalTwoArrowsUp",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowDown",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowUp",
|
|
|
|
"accidentalQuarterFlat3",
|
|
|
|
"accidentalQuarterFlat4",
|
|
|
|
"accidentalQuarterFlat5",
|
|
|
|
"accidentalQuarterFlatArrowUp",
|
|
|
|
"accidentalQuarterFlatNaturalArrowDown",
|
|
|
|
"accidentalQuarterFlatTartini",
|
|
|
|
"accidentalQuarterSharp3",
|
|
|
|
"accidentalQuarterSharp4",
|
|
|
|
"accidentalQuarterSharpArrowDown",
|
|
|
|
"accidentalQuarterSharpNaturalArrowUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalQuarterSharpOneStroke",
|
|
|
|
"accidentalQuarterSharpTwoStrokes",
|
|
|
|
"accidentalQuarterSharpWiggle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalRaiseOneSeptimalComma",
|
|
|
|
"accidentalRaiseOneTridecimalQuartertone",
|
|
|
|
"accidentalRaiseOneUndecimalQuartertone",
|
|
|
|
"accidentalRaiseTwoSeptimalCommas",
|
|
|
|
"accidentalReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalReversedFlatArrowDown",
|
|
|
|
"accidentalReversedFlatArrowUp",
|
|
|
|
"accidentalSharp",
|
|
|
|
"accidentalSharpEqualTempered",
|
|
|
|
"accidentalSharpOneArrowDown",
|
|
|
|
"accidentalSharpOneArrowUp",
|
|
|
|
"accidentalSharpReversed",
|
|
|
|
"accidentalSharpSharp",
|
|
|
|
"accidentalSharpThreeArrowsDown",
|
|
|
|
"accidentalSharpThreeArrowsUp",
|
|
|
|
"accidentalSharpTwoArrowsDown",
|
|
|
|
"accidentalSharpTwoArrowsUp",
|
|
|
|
"accidentalSori",
|
|
|
|
"accidentalThreeQuartersFlat2",
|
|
|
|
"accidentalThreeQuartersFlatArrowDown",
|
|
|
|
"accidentalThreeQuartersFlatCouper",
|
|
|
|
"accidentalThreeQuartersFlatGrisey",
|
|
|
|
"accidentalThreeQuartersFlatTartini",
|
|
|
|
"accidentalThreeQuartersSharp2",
|
|
|
|
"accidentalThreeQuartersSharpArrowUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalThreeQuartersSharpThreeStrokes",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalTripleFlat",
|
|
|
|
"accidentalTripleSharp",
|
|
|
|
"accidentalXenakisOneThirdSharp",
|
|
|
|
"accidentalXenakisTwoThirdsSharp",
|
|
|
|
"analyticsEndStimme",
|
|
|
|
"analyticsHauptstimme",
|
|
|
|
"analyticsInversion1",
|
|
|
|
"analyticsNebenstimme",
|
|
|
|
"analyticsStartStimme",
|
|
|
|
"analyticsTheme",
|
|
|
|
"analyticsTheme1",
|
|
|
|
"analyticsThemeInversion",
|
|
|
|
"analyticsThemeRetrograde",
|
|
|
|
"analyticsThemeRetrogradeInversion",
|
|
|
|
"arpeggiatoDown",
|
|
|
|
"arpeggiatoUp",
|
|
|
|
"arrowBlackDown",
|
|
|
|
"arrowBlackDownLeft",
|
|
|
|
"arrowBlackDownRight",
|
|
|
|
"arrowBlackLeft",
|
|
|
|
"arrowBlackRight",
|
|
|
|
"arrowBlackUp",
|
|
|
|
"arrowBlackUpLeft",
|
|
|
|
"arrowBlackUpRight",
|
|
|
|
"arrowWhiteDown",
|
|
|
|
"arrowWhiteDownLeft",
|
|
|
|
"arrowWhiteDownRight",
|
|
|
|
"arrowWhiteLeft",
|
|
|
|
"arrowWhiteRight",
|
|
|
|
"arrowWhiteUp",
|
|
|
|
"arrowWhiteUpLeft",
|
|
|
|
"arrowWhiteUpRight",
|
|
|
|
"arrowheadBlackDown",
|
|
|
|
"arrowheadBlackDownLeft",
|
|
|
|
"arrowheadBlackDownRight",
|
|
|
|
"arrowheadBlackLeft",
|
|
|
|
"arrowheadBlackRight",
|
|
|
|
"arrowheadBlackUp",
|
|
|
|
"arrowheadBlackUpLeft",
|
|
|
|
"arrowheadBlackUpRight",
|
|
|
|
"arrowheadWhiteDown",
|
|
|
|
"arrowheadWhiteDownLeft",
|
|
|
|
"arrowheadWhiteDownRight",
|
|
|
|
"arrowheadWhiteLeft",
|
|
|
|
"arrowheadWhiteRight",
|
|
|
|
"arrowheadWhiteUp",
|
|
|
|
"arrowheadWhiteUpLeft",
|
|
|
|
"arrowheadWhiteUpRight",
|
|
|
|
"articAccent",
|
|
|
|
"articAccentStaccatoAbove",
|
|
|
|
"articAccentStaccatoBelow",
|
|
|
|
"articLaissezVibrerAbove",
|
|
|
|
"articLaissezVibrerBelow",
|
|
|
|
"articMarcatoAbove",
|
|
|
|
"articMarcatoBelow",
|
|
|
|
"articMarcatoStaccatoAbove",
|
|
|
|
"articMarcatoStaccatoBelow",
|
|
|
|
"articStaccatissimoAbove",
|
|
|
|
"articStaccatissimoBelow",
|
|
|
|
"articStaccatissimoStrokeAbove",
|
|
|
|
"articStaccatissimoStrokeBelow",
|
|
|
|
"articStaccatissimoWedgeAbove",
|
|
|
|
"articStaccatissimoWedgeBelow",
|
|
|
|
"articStaccato",
|
|
|
|
"articStressAbove",
|
|
|
|
"articStressBelow",
|
|
|
|
"articTenuto",
|
|
|
|
"articTenutoSlurAbove",
|
2013-11-18 00:57:35 +01:00
|
|
|
"articTenutoSlurBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"articUnstressAbove",
|
|
|
|
"articUnstressBelow",
|
|
|
|
"augmentationDot",
|
|
|
|
"barlineDashed",
|
|
|
|
"barlineDotted",
|
|
|
|
"barlineDouble",
|
|
|
|
"barlineFinal",
|
|
|
|
"barlineHeavy",
|
|
|
|
"barlineHeavyHeavy",
|
|
|
|
"barlineReverseFinal",
|
|
|
|
"barlineShort",
|
|
|
|
"barlineSingle",
|
|
|
|
"barlineTick",
|
|
|
|
"brace",
|
|
|
|
"bracket",
|
|
|
|
"bracketBottom",
|
|
|
|
"bracketTop",
|
|
|
|
"brassBend",
|
|
|
|
"brassDoitLong",
|
|
|
|
"brassDoitMedium",
|
|
|
|
"brassDoitShort",
|
|
|
|
"brassFallLipLong",
|
|
|
|
"brassFallLipMedium",
|
|
|
|
"brassFallLipShort",
|
|
|
|
"brassFallRoughLong",
|
|
|
|
"brassFallRoughMedium",
|
|
|
|
"brassFallRoughShort",
|
|
|
|
"brassFallSmoothLong",
|
|
|
|
"brassFallSmoothMedium",
|
|
|
|
"brassFallSmoothShort",
|
|
|
|
"brassFlip",
|
|
|
|
"brassHarmonMuteClosed",
|
|
|
|
"brassHarmonMuteStemHalfLeft",
|
|
|
|
"brassHarmonMuteStemHalfRight",
|
|
|
|
"brassHarmonMuteStemOpen",
|
|
|
|
"brassJazzTurn",
|
|
|
|
"brassLiftLong",
|
|
|
|
"brassLiftMedium",
|
|
|
|
"brassLiftShort",
|
|
|
|
"brassMuteClosed",
|
|
|
|
"brassMuteHalfClosed",
|
|
|
|
"brassMuteOpen",
|
|
|
|
"brassPlop",
|
|
|
|
"brassScoop",
|
|
|
|
"brassSmear",
|
|
|
|
"breathMark",
|
|
|
|
"breathMarkSalzedo",
|
|
|
|
"bridgeClef",
|
|
|
|
"buzzRoll",
|
|
|
|
"cClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"cClef8vb",
|
2013-11-06 15:58:05 +01:00
|
|
|
"cClefArrowDown",
|
|
|
|
"cClefArrowUp",
|
|
|
|
"cClefCombining",
|
|
|
|
"cClefReversed",
|
|
|
|
"cClefTriangular",
|
|
|
|
"cClefTriangularToFClef",
|
|
|
|
"caesura",
|
|
|
|
"caesuraShort",
|
|
|
|
"caesuraThick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantAccentusAbove",
|
|
|
|
"chantAccentusBelow",
|
|
|
|
"chantAugmentum",
|
|
|
|
"chantCaesura",
|
|
|
|
"chantCirculusAbove",
|
|
|
|
"chantCirculusBelow",
|
|
|
|
"chantClivis2nd",
|
|
|
|
"chantClivis3rd",
|
|
|
|
"chantClivis4th",
|
|
|
|
"chantClivis5th",
|
|
|
|
"chantConnectingLineAsc2nd",
|
|
|
|
"chantConnectingLineAsc3rd",
|
|
|
|
"chantConnectingLineAsc4th",
|
|
|
|
"chantConnectingLineAsc5th",
|
|
|
|
"chantCustosStemDown",
|
|
|
|
"chantCustosStemUp",
|
|
|
|
"chantDivisioFinalis",
|
|
|
|
"chantDivisioMaior",
|
|
|
|
"chantDivisioMaxima",
|
|
|
|
"chantDivisioMinima",
|
|
|
|
"chantEpisema",
|
|
|
|
"chantIctusAbove",
|
|
|
|
"chantIctusBelow",
|
|
|
|
"chantLiquescentAscLower",
|
|
|
|
"chantLiquescentAscUpper",
|
|
|
|
"chantLiquescentDescLower",
|
|
|
|
"chantLiquescentDescUpper",
|
|
|
|
"chantOriscusAscending",
|
|
|
|
"chantOriscusDescending",
|
|
|
|
"chantPodatus2nd",
|
|
|
|
"chantPodatus3rd",
|
|
|
|
"chantPodatus4th",
|
|
|
|
"chantPodatus5th",
|
|
|
|
"chantPorrectus2nd",
|
|
|
|
"chantPorrectus3rd",
|
|
|
|
"chantPorrectus4th",
|
|
|
|
"chantPorrectus5th",
|
|
|
|
"chantPunctum",
|
|
|
|
"chantPunctumCavum",
|
|
|
|
"chantPunctumInclinatum",
|
|
|
|
"chantPunctumLinea",
|
|
|
|
"chantPunctumLineaCavum",
|
|
|
|
"chantPunctumVirga",
|
|
|
|
"chantQuilisma",
|
|
|
|
"chantSemicirculusAbove",
|
|
|
|
"chantSemicirculusBelow",
|
|
|
|
"chantStaff",
|
|
|
|
"chantStaffNarrow",
|
|
|
|
"chantStaffWide",
|
|
|
|
"chantVirgula",
|
2013-11-06 15:58:05 +01:00
|
|
|
"coda",
|
|
|
|
"codaSquare",
|
|
|
|
"conductorBeat2Compound",
|
|
|
|
"conductorBeat2Simple",
|
|
|
|
"conductorBeat3Compound",
|
|
|
|
"conductorBeat3Simple",
|
|
|
|
"conductorBeat4Compound",
|
|
|
|
"conductorBeat4Simple",
|
|
|
|
"conductorLeftBeat",
|
|
|
|
"conductorRightBeat",
|
|
|
|
"conductorStrongBeat",
|
|
|
|
"conductorWeakBeat",
|
|
|
|
"controlBeginBeam",
|
|
|
|
"controlBeginPhrase",
|
|
|
|
"controlBeginSlur",
|
|
|
|
"controlBeginTie",
|
|
|
|
"controlEndBeam",
|
|
|
|
"controlEndPhrase",
|
|
|
|
"controlEndSlur",
|
|
|
|
"controlEndTie",
|
|
|
|
"csymAugmented",
|
|
|
|
"csymDiminished",
|
|
|
|
"csymHalfDiminished",
|
|
|
|
"csymMajorSeventh",
|
|
|
|
"csymMinor",
|
|
|
|
"daCapo",
|
|
|
|
"dalSegno",
|
2013-11-29 00:37:48 +01:00
|
|
|
"daseianExcellentes1",
|
|
|
|
"daseianExcellentes2",
|
|
|
|
"daseianExcellentes3",
|
|
|
|
"daseianExcellentes4",
|
|
|
|
"daseianFinales1",
|
|
|
|
"daseianFinales2",
|
|
|
|
"daseianFinales3",
|
|
|
|
"daseianFinales4",
|
|
|
|
"daseianGraves1",
|
|
|
|
"daseianGraves2",
|
|
|
|
"daseianGraves3",
|
|
|
|
"daseianGraves4",
|
|
|
|
"daseianResidua1",
|
|
|
|
"daseianResidua2",
|
|
|
|
"daseianSuperiores1",
|
|
|
|
"daseianSuperiores2",
|
|
|
|
"daseianSuperiores3",
|
|
|
|
"daseianSuperiores4",
|
2013-11-06 15:58:05 +01:00
|
|
|
"doubleTongueAbove",
|
|
|
|
"doubleTongueBelow",
|
|
|
|
"dynamicCrescendoHairpin",
|
|
|
|
"dynamicDiminuendoHairpin",
|
|
|
|
"dynamicFF",
|
|
|
|
"dynamicFFF",
|
|
|
|
"dynamicFFFF",
|
|
|
|
"dynamicFFFFF",
|
|
|
|
"dynamicFFFFFF",
|
|
|
|
"dynamicForte",
|
|
|
|
"dynamicFortePiano",
|
|
|
|
"dynamicForzando",
|
|
|
|
"dynamicMF",
|
|
|
|
"dynamicMP",
|
|
|
|
"dynamicMezzo",
|
|
|
|
"dynamicNiente",
|
|
|
|
"dynamicNienteForHairpin",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicPF",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicPP",
|
|
|
|
"dynamicPPP",
|
|
|
|
"dynamicPPPP",
|
|
|
|
"dynamicPPPPP",
|
|
|
|
"dynamicPPPPPP",
|
|
|
|
"dynamicPiano",
|
|
|
|
"dynamicRinforzando",
|
|
|
|
"dynamicRinforzando1",
|
|
|
|
"dynamicRinforzando2",
|
|
|
|
"dynamicSforzando",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicSforzando1",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicSforzandoPianissimo",
|
|
|
|
"dynamicSforzandoPiano",
|
|
|
|
"dynamicSforzato",
|
|
|
|
"dynamicSforzatoFF",
|
|
|
|
"dynamicZ",
|
|
|
|
"elecLoop",
|
|
|
|
"elecLoudspeaker",
|
|
|
|
"elecMIDIController0",
|
|
|
|
"elecMIDIController100",
|
|
|
|
"elecMIDIController20",
|
|
|
|
"elecMIDIController40",
|
|
|
|
"elecMIDIController60",
|
|
|
|
"elecMIDIController80",
|
|
|
|
"elecMIDIIn",
|
|
|
|
"elecMIDIOut",
|
|
|
|
"elecMicrophone",
|
|
|
|
"elecPause",
|
|
|
|
"elecPlay",
|
|
|
|
"elecSkipBackwards",
|
|
|
|
"elecSkipForwards",
|
|
|
|
"elecStop",
|
|
|
|
"elecVolumeLevel0",
|
|
|
|
"elecVolumeLevel100",
|
|
|
|
"elecVolumeLevel20",
|
|
|
|
"elecVolumeLevel40",
|
|
|
|
"elecVolumeLevel60",
|
|
|
|
"elecVolumeLevel80",
|
|
|
|
"fClef",
|
|
|
|
"fClef15ma",
|
|
|
|
"fClef15mb",
|
|
|
|
"fClef8va",
|
|
|
|
"fClef8vb",
|
|
|
|
"fClefArrowDown",
|
|
|
|
"fClefArrowUp",
|
|
|
|
"fClefReversed",
|
|
|
|
"fClefTriangular",
|
|
|
|
"fClefTriangularToCClef",
|
|
|
|
"fClefUpsideDown",
|
|
|
|
"fermataAbove",
|
|
|
|
"fermataBelow",
|
|
|
|
"fermataLongAbove",
|
|
|
|
"fermataLongBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataLongHenzeAbove",
|
|
|
|
"fermataLongHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataShortAbove",
|
|
|
|
"fermataShortBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataShortHenzeAbove",
|
|
|
|
"fermataShortHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataVeryLongAbove",
|
|
|
|
"fermataVeryLongBelow",
|
|
|
|
"fermataVeryShortAbove",
|
|
|
|
"fermataVeryShortBelow",
|
|
|
|
"figbass0",
|
|
|
|
"figbass1",
|
|
|
|
"figbass2",
|
|
|
|
"figbass2Raised",
|
|
|
|
"figbass3",
|
|
|
|
"figbass4",
|
|
|
|
"figbass4Raised",
|
|
|
|
"figbass5",
|
|
|
|
"figbass5Raised1",
|
|
|
|
"figbass5Raised2",
|
|
|
|
"figbass5Raised3",
|
|
|
|
"figbass6",
|
|
|
|
"figbass6Raised",
|
|
|
|
"figbass7",
|
|
|
|
"figbass7Raised",
|
|
|
|
"figbass8",
|
|
|
|
"figbass9",
|
|
|
|
"figbass9Raised",
|
|
|
|
"figbassBracketLeft",
|
|
|
|
"figbassBracketRight",
|
|
|
|
"figbassCombiningLowering",
|
|
|
|
"figbassCombiningRaising",
|
|
|
|
"figbassDoubleFlat",
|
|
|
|
"figbassDoubleSharp",
|
|
|
|
"figbassFlat",
|
|
|
|
"figbassNatural",
|
|
|
|
"figbassParensLeft",
|
|
|
|
"figbassParensRight",
|
|
|
|
"figbassPlus",
|
|
|
|
"figbassSharp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"flag1024thDown",
|
|
|
|
"flag1024thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"flag128thDown",
|
|
|
|
"flag128thUp",
|
|
|
|
"flag16thDown",
|
|
|
|
"flag16thUp",
|
|
|
|
"flag256thDown",
|
|
|
|
"flag256thUp",
|
|
|
|
"flag32ndDown",
|
|
|
|
"flag32ndUp",
|
|
|
|
"flag512thDown",
|
|
|
|
"flag512thUp",
|
|
|
|
"flag64thDown",
|
|
|
|
"flag64thUp",
|
|
|
|
"flag8thDown",
|
|
|
|
"flag8thUp",
|
|
|
|
"flagInternalDown",
|
|
|
|
"flagInternalUp",
|
2013-12-02 14:29:04 +01:00
|
|
|
// "flags1024thDownStraight",
|
|
|
|
// "flags1024thUpStraight",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fretboard3String",
|
|
|
|
"fretboard3StringNut",
|
|
|
|
"fretboard4String",
|
|
|
|
"fretboard4StringNut",
|
|
|
|
"fretboard5String",
|
|
|
|
"fretboard5StringNut",
|
|
|
|
"fretboard6String",
|
|
|
|
"fretboard6StringNut",
|
|
|
|
"fretboardFilledCircle",
|
|
|
|
"fretboardO",
|
|
|
|
"fretboardX",
|
|
|
|
"functionAngleLeft",
|
|
|
|
"functionAngleRight",
|
|
|
|
"functionBracketLeft",
|
|
|
|
"functionBracketRight",
|
|
|
|
"functionDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionDLower",
|
|
|
|
"functionDUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionEight",
|
|
|
|
"functionFive",
|
|
|
|
"functionFour",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionGLower",
|
|
|
|
"functionGUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionGreaterThan",
|
|
|
|
"functionLessThan",
|
|
|
|
"functionMinus",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionNLower",
|
|
|
|
"functionNUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionNine",
|
|
|
|
"functionOne",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionPLower",
|
|
|
|
"functionPUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionParensLeft",
|
|
|
|
"functionParensRight",
|
|
|
|
"functionPlus",
|
|
|
|
"functionRepetition1",
|
|
|
|
"functionRepetition2",
|
|
|
|
"functionRing",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionSLower",
|
|
|
|
"functionSSLower",
|
|
|
|
"functionSSUpper",
|
|
|
|
"functionSUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionSeven",
|
|
|
|
"functionSix",
|
|
|
|
"functionSlashedDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionTLower",
|
|
|
|
"functionTUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionThree",
|
|
|
|
"functionTwo",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionVLower",
|
|
|
|
"functionVUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionZero",
|
|
|
|
"gClef",
|
|
|
|
"gClef15ma",
|
|
|
|
"gClef15mb",
|
|
|
|
"gClef8va",
|
|
|
|
"gClef8vb",
|
|
|
|
"gClef8vbCclef",
|
|
|
|
"gClef8vbOld",
|
2013-11-29 00:37:48 +01:00
|
|
|
"gClef8vbSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"gClefArrowDown",
|
|
|
|
"gClefArrowUp",
|
|
|
|
"gClefLigatedNumberAbove",
|
|
|
|
"gClefLigatedNumberBelow",
|
|
|
|
"gClefReversed",
|
|
|
|
"gClefUpsideDown",
|
|
|
|
"glissandoDown",
|
|
|
|
"glissandoUp",
|
|
|
|
"graceNoteAcciaccaturaStemDown",
|
|
|
|
"graceNoteAcciaccaturaStemUp",
|
|
|
|
"graceNoteAppoggiaturaStemDown",
|
|
|
|
"graceNoteAppoggiaturaStemUp",
|
|
|
|
"graceNoteSlashStemDown",
|
|
|
|
"graceNoteSlashStemUp",
|
|
|
|
"guitarClosePedal",
|
2013-11-29 00:37:48 +01:00
|
|
|
"guitarGolpe",
|
2013-11-06 15:58:05 +01:00
|
|
|
"guitarHalfOpenPedal",
|
|
|
|
"guitarLeftHandTapping",
|
|
|
|
"guitarOpenPedal",
|
|
|
|
"guitarRightHandTapping",
|
|
|
|
"guitarShake",
|
|
|
|
"guitarString0",
|
|
|
|
"guitarString1",
|
|
|
|
"guitarString2",
|
|
|
|
"guitarString3",
|
|
|
|
"guitarString4",
|
|
|
|
"guitarString5",
|
|
|
|
"guitarString6",
|
|
|
|
"guitarString7",
|
|
|
|
"guitarString8",
|
|
|
|
"guitarString9",
|
|
|
|
"guitarVibratoBarDip",
|
|
|
|
"guitarVibratoBarScoop",
|
|
|
|
"guitarVibratoStroke",
|
|
|
|
"guitarWideVibratoStroke",
|
|
|
|
"handbellsBelltree",
|
|
|
|
"handbellsDamp3",
|
|
|
|
"handbellsEcho1",
|
|
|
|
"handbellsEcho2",
|
|
|
|
"handbellsGyro",
|
|
|
|
"handbellsHandMartellato",
|
|
|
|
"handbellsMalletBellOnTable",
|
|
|
|
"handbellsMalletBellSuspended",
|
|
|
|
"handbellsMalletLft",
|
|
|
|
"handbellsMartellato",
|
|
|
|
"handbellsMartellatoLift",
|
|
|
|
"handbellsMutedMartellato",
|
|
|
|
"handbellsPluckLift",
|
|
|
|
"handbellsSwing",
|
|
|
|
"handbellsSwingDown",
|
|
|
|
"handbellsSwingUp",
|
|
|
|
"harpMetalRod",
|
|
|
|
"harpPedalCentered",
|
|
|
|
"harpPedalDivider",
|
|
|
|
"harpPedalLowered",
|
|
|
|
"harpPedalRaised",
|
|
|
|
"harpSalzedoFluidicSoundsLeft",
|
|
|
|
"harpSalzedoFluidicSoundsRight",
|
|
|
|
"harpSalzedoMetallicSounds",
|
|
|
|
"harpSalzedoMuffleTotally",
|
|
|
|
"harpSalzedoOboicFlux",
|
|
|
|
"harpSalzedoPlayUpperEnd",
|
|
|
|
"harpSalzedoSlideWithSuppleness",
|
|
|
|
"harpSalzedoTamTamSounds",
|
|
|
|
"harpSalzedoThunderEffect",
|
|
|
|
"harpSalzedoTimpanicSounds",
|
|
|
|
"harpSalzedoWhistlingSounds",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpStringNoiseStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"harpTuningKey",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpTuningKeyGlissando",
|
|
|
|
"harpTuningKeyHandle",
|
|
|
|
"harpTuningKeyShank",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardLeftPedalPictogram",
|
|
|
|
"keyboardMiddlePedalPictogram",
|
|
|
|
"keyboardPedalHalf",
|
|
|
|
"keyboardPedalHalf2",
|
|
|
|
"keyboardPedalHalf3",
|
|
|
|
"keyboardPedalHeel1",
|
|
|
|
"keyboardPedalHeel2",
|
|
|
|
"keyboardPedalP",
|
|
|
|
"keyboardPedalPed",
|
|
|
|
"keyboardPedalS",
|
|
|
|
"keyboardPedalSost",
|
|
|
|
"keyboardPedalToe1",
|
|
|
|
"keyboardPedalToe2",
|
|
|
|
"keyboardPedalUp",
|
|
|
|
"keyboardPedalUpNotch",
|
|
|
|
"keyboardPedalUpSpecial",
|
|
|
|
"keyboardPluckInside",
|
|
|
|
"keyboardRightPedalPictogram",
|
|
|
|
"leftRepeat",
|
|
|
|
"leftRepeatSmall",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenFlatHardB",
|
|
|
|
"medRenFlatSoftB",
|
|
|
|
"medRenFlatWithDot",
|
|
|
|
"medRenLiquescenceCMN",
|
|
|
|
"medRenNatural",
|
|
|
|
"medRenNaturalWithCross",
|
|
|
|
"medRenPlicaCMN",
|
|
|
|
"medRenSharpCroix",
|
|
|
|
"mensuralAlterationSign",
|
|
|
|
"mensuralBlackBrevis",
|
|
|
|
"mensuralBlackBrevisVoid",
|
|
|
|
"mensuralBlackDragma",
|
|
|
|
"mensuralBlackLonga",
|
|
|
|
"mensuralBlackMaxima",
|
|
|
|
"mensuralBlackMinima",
|
|
|
|
"mensuralBlackMinimaVoid",
|
|
|
|
"mensuralBlackSemibrevis",
|
|
|
|
"mensuralBlackSemibrevisCaudata",
|
|
|
|
"mensuralBlackSemibrevisOblique",
|
|
|
|
"mensuralBlackSemibrevisVoid",
|
|
|
|
"mensuralBlackSemiminima",
|
|
|
|
"mensuralCclef",
|
|
|
|
"mensuralCclefGregorian",
|
|
|
|
"mensuralCclefPetrucci",
|
|
|
|
"mensuralColorationEndRound",
|
|
|
|
"mensuralColorationEndSquare",
|
|
|
|
"mensuralColorationStartRound",
|
|
|
|
"mensuralColorationStartSquare",
|
|
|
|
"mensuralCombStemDiagonal",
|
|
|
|
"mensuralCombStemDown",
|
|
|
|
"mensuralCombStemDownFlagExtended",
|
|
|
|
"mensuralCombStemDownFlagFlared",
|
|
|
|
"mensuralCombStemDownFlagFusa",
|
|
|
|
"mensuralCombStemDownFlagLeft",
|
|
|
|
"mensuralCombStemDownFlagRight",
|
|
|
|
"mensuralCombStemDownFlagSemiminima",
|
|
|
|
"mensuralCombStemUp",
|
|
|
|
"mensuralCombStemUpFlagExtended",
|
|
|
|
"mensuralCombStemUpFlagFlared",
|
|
|
|
"mensuralCombStemUpFlagFusa",
|
|
|
|
"mensuralCombStemUpFlagLeft",
|
|
|
|
"mensuralCombStemUpFlagRight",
|
|
|
|
"mensuralCombStemUpFlagSemiminima",
|
|
|
|
"mensuralCustosCheckmark",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralCustosTurn",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralFClefAncient",
|
|
|
|
"mensuralFclef",
|
|
|
|
"mensuralFclefGregorian",
|
|
|
|
"mensuralFclefPetrucci",
|
|
|
|
"mensuralGclef",
|
|
|
|
"mensuralGclefPetrucci",
|
|
|
|
"mensuralModusImperfectumVert",
|
|
|
|
"mensuralModusPerfectumVert",
|
|
|
|
"mensuralNoteheadLongaBlack",
|
|
|
|
"mensuralNoteheadLongaBlackVoid",
|
|
|
|
"mensuralNoteheadLongaVoid",
|
|
|
|
"mensuralNoteheadMaximaBlack",
|
|
|
|
"mensuralNoteheadMaximaBlackVoid",
|
|
|
|
"mensuralNoteheadMaximaVoid",
|
|
|
|
"mensuralNoteheadSemibrevisBlack",
|
|
|
|
"mensuralNoteheadSemibrevisBlackVoid",
|
|
|
|
"mensuralNoteheadSemibrevisBlackVoidInverted",
|
|
|
|
"mensuralNoteheadSemibrevisVoid",
|
|
|
|
"mensuralProlation1", // temp. pref.prol. perf.
|
|
|
|
"mensuralProlation10", // temp. imp. prol. imp. dimin. rev.
|
|
|
|
"mensuralProlation11", // temp. imp. prol. perf.rev.
|
|
|
|
"mensuralProlation2", // temp. perf.prol. imp.
|
|
|
|
"mensuralProlation3", // temp. perf.prol. imp. dimin.
|
|
|
|
"mensuralProlation4", // temp. perf.prol. perf.dimin
|
|
|
|
"mensuralProlation5", // temp. imp. prol. perf.
|
|
|
|
"mensuralProlation6", // temp. imp. prol. imp.
|
|
|
|
"mensuralProlation7", // temp. imp. prol. imp. rev.
|
|
|
|
"mensuralProlation8", // temp. imp. prol. perf.dimin
|
|
|
|
"mensuralProlation9", // temp. imp. prol. imp. dimin
|
|
|
|
"mensuralProlationCombiningDot",
|
|
|
|
"mensuralProlationCombiningDotVoid",
|
|
|
|
"mensuralProlationCombiningStroke",
|
|
|
|
"mensuralProlationCombiningThreeDots",
|
|
|
|
"mensuralProlationCombiningThreeDotsTri",
|
|
|
|
"mensuralProlationCombiningTwoDots",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralProportion1",
|
|
|
|
"mensuralProportion2",
|
|
|
|
"mensuralProportion3",
|
|
|
|
"mensuralProportion4",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralProportionMajor",
|
|
|
|
"mensuralProportionMinor",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestBrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestFusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestLongaImperfecta",
|
|
|
|
"mensuralRestLongaPerfecta",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestMaxima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestMinima",
|
|
|
|
"mensuralRestSemibrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestSemifusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestSemiminima",
|
|
|
|
"mensuralSignum",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralTempusImperfectumHoriz",
|
|
|
|
"mensuralTempusPerfectumHoriz",
|
|
|
|
"mensuralWhiteBrevis",
|
|
|
|
"mensuralWhiteFusa",
|
|
|
|
"mensuralWhiteLonga",
|
|
|
|
"mensuralWhiteMaxima",
|
|
|
|
"mensuralWhiteMinima",
|
|
|
|
"mensuralWhiteSemiminima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"miscDoNotCopy",
|
|
|
|
"miscDoNotPhotocopy",
|
|
|
|
"miscEyeglasses",
|
|
|
|
"miscStaffDivideArrowDown",
|
|
|
|
"miscStaffDivideArrowUp",
|
|
|
|
"miscStaffDivideArrowUpDown",
|
|
|
|
"miscSwish",
|
|
|
|
"note1024thDown",
|
|
|
|
"note1024thUp",
|
|
|
|
"note128thDown",
|
|
|
|
"note128thUp",
|
|
|
|
"note16thDown",
|
|
|
|
"note16thUp",
|
|
|
|
"note256thDown",
|
|
|
|
"note256thUp",
|
|
|
|
"note32ndDown",
|
|
|
|
"note32ndUp",
|
|
|
|
"note512thDown",
|
|
|
|
"note512thUp",
|
|
|
|
"note64thDown",
|
|
|
|
"note64thUp",
|
|
|
|
"noteABlack",
|
|
|
|
"noteAFlatBlack",
|
|
|
|
"noteAFlatHalf",
|
|
|
|
"noteAFlatWhole",
|
|
|
|
"noteAHalf",
|
|
|
|
"noteASharpBlack",
|
|
|
|
"noteASharpHalf",
|
|
|
|
"noteASharpWhole",
|
|
|
|
"noteAWhole",
|
|
|
|
"noteBBlack",
|
|
|
|
"noteBFlatBlack",
|
|
|
|
"noteBFlatHalf",
|
|
|
|
"noteBFlatWhole",
|
|
|
|
"noteBHalf",
|
|
|
|
"noteBSharpBlack",
|
|
|
|
"noteBSharpHalf",
|
|
|
|
"noteBSharpWhole",
|
|
|
|
"noteBWhole",
|
|
|
|
"noteCBlack",
|
|
|
|
"noteCFlatBlack",
|
|
|
|
"noteCFlatHalf",
|
|
|
|
"noteCFlatWhole",
|
|
|
|
"noteCHalf",
|
|
|
|
"noteCSharpBlack",
|
|
|
|
"noteCSharpHalf",
|
|
|
|
"noteCSharpWhole",
|
|
|
|
"noteCWhole",
|
|
|
|
"noteDBlack",
|
|
|
|
"noteDFlatBlack",
|
|
|
|
"noteDFlatHalf",
|
|
|
|
"noteDFlatWhole",
|
|
|
|
"noteDHalf",
|
|
|
|
"noteDSharpBlack",
|
|
|
|
"noteDSharpHalf",
|
|
|
|
"noteDSharpWhole",
|
|
|
|
"noteDWhole",
|
|
|
|
"noteDoBlack",
|
|
|
|
"noteDoHalf",
|
|
|
|
"noteDoWhole",
|
|
|
|
"noteDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteEBlack",
|
|
|
|
"noteEFlatBlack",
|
|
|
|
"noteEFlatHalf",
|
|
|
|
"noteEFlatWhole",
|
|
|
|
"noteEHalf",
|
|
|
|
"noteESharpBlack",
|
|
|
|
"noteESharpHalf",
|
|
|
|
"noteESharpWhole",
|
|
|
|
"noteEWhole",
|
2014-02-21 10:59:50 +01:00
|
|
|
"note8thDown",
|
|
|
|
"note8thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteEmptyBlack",
|
|
|
|
"noteEmptyHalf",
|
|
|
|
"noteEmptyWhole",
|
|
|
|
"noteFBlack",
|
|
|
|
"noteFFlatBlack",
|
|
|
|
"noteFFlatHalf",
|
|
|
|
"noteFFlatWhole",
|
|
|
|
"noteFHalf",
|
|
|
|
"noteFSharpBlack",
|
|
|
|
"noteFSharpHalf",
|
|
|
|
"noteFSharpWhole",
|
|
|
|
"noteFWhole",
|
|
|
|
"noteFaBlack",
|
|
|
|
"noteFaHalf",
|
|
|
|
"noteFaWhole",
|
|
|
|
"noteGBlack",
|
|
|
|
"noteGFlatBlack",
|
|
|
|
"noteGFlatHalf",
|
|
|
|
"noteGFlatWhole",
|
|
|
|
"noteGHalf",
|
|
|
|
"noteGSharpBlack",
|
|
|
|
"noteGSharpHalf",
|
|
|
|
"noteGSharpWhole",
|
|
|
|
"noteGWhole",
|
|
|
|
"noteHBlack",
|
|
|
|
"noteHHalf",
|
|
|
|
"noteHSharpBlack",
|
|
|
|
"noteHSharpHalf",
|
|
|
|
"noteHSharpWhole",
|
|
|
|
"noteHWhole",
|
|
|
|
"noteHalfDown",
|
|
|
|
"noteHalfUp",
|
|
|
|
"noteLaBlack",
|
|
|
|
"noteLaHalf",
|
|
|
|
"noteLaWhole",
|
|
|
|
"noteMiBlack",
|
|
|
|
"noteMiHalf",
|
|
|
|
"noteMiWhole",
|
|
|
|
"noteQuarterDown",
|
|
|
|
"noteQuarterUp",
|
|
|
|
"noteReBlack",
|
|
|
|
"noteReHalf",
|
|
|
|
"noteReWhole",
|
|
|
|
"noteShapeDiamondBlack",
|
|
|
|
"noteShapeDiamondWhite",
|
|
|
|
"noteShapeMoonBlack",
|
|
|
|
"noteShapeMoonWhite",
|
|
|
|
"noteShapeRoundBlack",
|
|
|
|
"noteShapeRoundWhite",
|
|
|
|
"noteShapeSquareBlack",
|
|
|
|
"noteShapeSquareWhite",
|
|
|
|
"noteShapeTriangleLeftBlack",
|
|
|
|
"noteShapeTriangleLeftWhite",
|
|
|
|
"noteShapeTriangleRightBlack",
|
|
|
|
"noteShapeTriangleRightWhite",
|
|
|
|
"noteShapeTriangleRoundBlack",
|
|
|
|
"noteShapeTriangleRoundWhite",
|
|
|
|
"noteShapeTriangleUpBlack",
|
|
|
|
"noteShapeTriangleUpWhite",
|
|
|
|
"noteSiBlack",
|
|
|
|
"noteSiHalf",
|
|
|
|
"noteSiWhole",
|
|
|
|
"noteSoBlack",
|
|
|
|
"noteSoHalf",
|
|
|
|
"noteSoWhole",
|
|
|
|
"noteTiBlack",
|
|
|
|
"noteTiHalf",
|
|
|
|
"noteTiWhole",
|
|
|
|
"noteWhole",
|
|
|
|
"noteheadBlack",
|
|
|
|
"noteheadCircleSlash",
|
|
|
|
"noteheadCircleX",
|
|
|
|
"noteheadCircleXDoubleWhole",
|
|
|
|
"noteheadCircleXHalf",
|
|
|
|
"noteheadCircleXWhole",
|
|
|
|
"noteheadCircledBlack",
|
|
|
|
"noteheadCircledDoubleWhole",
|
|
|
|
"noteheadCircledHalf",
|
|
|
|
"noteheadCircledWhole",
|
|
|
|
"noteheadClusterDoubleWhole2nd",
|
|
|
|
"noteheadClusterDoubleWhole3rd",
|
|
|
|
"noteheadClusterDoubleWholeBottom",
|
|
|
|
"noteheadClusterDoubleWholeMiddle",
|
|
|
|
"noteheadClusterDoubleWholeTop",
|
|
|
|
"noteheadClusterHalf2nd",
|
|
|
|
"noteheadClusterHalf3rd",
|
|
|
|
"noteheadClusterHalfBottom",
|
|
|
|
"noteheadClusterHalfMiddle",
|
|
|
|
"noteheadClusterHalfTop",
|
|
|
|
"noteheadClusterQuarter2nd",
|
|
|
|
"noteheadClusterQuarter3rd",
|
|
|
|
"noteheadClusterQuarterBottom",
|
|
|
|
"noteheadClusterQuarterMiddle",
|
|
|
|
"noteheadClusterQuarterTop",
|
|
|
|
"noteheadClusterRoundBlack",
|
|
|
|
"noteheadClusterRoundWhite",
|
|
|
|
"noteheadClusterSquareBlack",
|
|
|
|
"noteheadClusterSquareWhite",
|
|
|
|
"noteheadClusterWhole2nd",
|
|
|
|
"noteheadClusterWhole3rd",
|
|
|
|
"noteheadClusterWholeBottom",
|
|
|
|
"noteheadClusterWholeMiddle",
|
|
|
|
"noteheadClusterWholeTop",
|
|
|
|
"noteheadDiamondBlack",
|
|
|
|
"noteheadDiamondBlackOld",
|
|
|
|
"noteheadDiamondClusterBlack2nd",
|
|
|
|
"noteheadDiamondClusterBlack3rd",
|
|
|
|
"noteheadDiamondClusterBlackBottom",
|
|
|
|
"noteheadDiamondClusterBlackMiddle",
|
|
|
|
"noteheadDiamondClusterBlackTop",
|
|
|
|
"noteheadDiamondClusterWhite2nd",
|
|
|
|
"noteheadDiamondClusterWhite3rd",
|
|
|
|
"noteheadDiamondClusterWhiteBottom",
|
|
|
|
"noteheadDiamondClusterWhiteMiddle",
|
|
|
|
"noteheadDiamondClusterWhiteTop",
|
|
|
|
"noteheadDiamondDoubleWhole",
|
|
|
|
"noteheadDiamondDoubleWholeOld",
|
|
|
|
"noteheadDiamondHalf",
|
|
|
|
"noteheadDiamondHalfFilled",
|
|
|
|
"noteheadDiamondHalfOld",
|
|
|
|
"noteheadDiamondWhole",
|
|
|
|
"noteheadDiamondWholeOld",
|
|
|
|
"noteheadDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteheadDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadDoubleWholeWithX",
|
|
|
|
"noteheadHalf",
|
|
|
|
"noteheadHalfWithX",
|
|
|
|
"noteheadHeavyX",
|
|
|
|
"noteheadHeavyXHat",
|
|
|
|
"noteheadLargeArrowDownBlack",
|
|
|
|
"noteheadLargeArrowDownDoubleWhole",
|
|
|
|
"noteheadLargeArrowDownHalf",
|
|
|
|
"noteheadLargeArrowDownWhole",
|
|
|
|
"noteheadLargeArrowUpBlack",
|
|
|
|
"noteheadLargeArrowUpDoubleWhole",
|
|
|
|
"noteheadLargeArrowUpHalf",
|
|
|
|
"noteheadLargeArrowUpWhole",
|
|
|
|
"noteheadMoonBlack",
|
|
|
|
"noteheadMoonWhite",
|
|
|
|
"noteheadNull",
|
|
|
|
"noteheadParenthesis",
|
|
|
|
"noteheadParenthesisLeft",
|
|
|
|
"noteheadParenthesisRight",
|
|
|
|
"noteheadPlusBlack",
|
|
|
|
"noteheadPlusDoubleWhole",
|
|
|
|
"noteheadPlusHalf",
|
|
|
|
"noteheadPlusWhole",
|
|
|
|
"noteheadRoundBlack",
|
|
|
|
"noteheadRoundBlackLarge",
|
|
|
|
"noteheadRoundBlackSlashed",
|
|
|
|
"noteheadRoundBlackSlashedLarge",
|
|
|
|
"noteheadRoundWhite",
|
|
|
|
"noteheadRoundWhiteLarge",
|
|
|
|
"noteheadRoundWhiteSlashed",
|
|
|
|
"noteheadRoundWhiteSlashedLarge",
|
|
|
|
"noteheadRoundWhiteWithDot",
|
|
|
|
"noteheadRoundWhiteWithDotLarge",
|
|
|
|
"noteheadSlashDiamondWhite",
|
|
|
|
"noteheadSlashHorizontalEnds",
|
|
|
|
"noteheadSlashHorizontalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEnds",
|
|
|
|
"noteheadSlashVerticalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEndsSmall",
|
|
|
|
"noteheadSlashWhite",
|
|
|
|
"noteheadSlashWhiteMuted",
|
|
|
|
"noteheadSlashX",
|
|
|
|
"noteheadSlashedBlack1",
|
|
|
|
"noteheadSlashedBlack2",
|
|
|
|
"noteheadSlashedDoubleWhole1",
|
|
|
|
"noteheadSlashedDoubleWhole2",
|
|
|
|
"noteheadSlashedHalf1",
|
|
|
|
"noteheadSlashedHalf2",
|
|
|
|
"noteheadSlashedWhole1",
|
|
|
|
"noteheadSlashedWhole2",
|
|
|
|
"noteheadSquareBlack",
|
|
|
|
"noteheadSquareBlackLarge",
|
|
|
|
"noteheadSquareBlackWhite",
|
|
|
|
"noteheadSquareWhite",
|
|
|
|
"noteheadTriangleDownBlack",
|
|
|
|
"noteheadTriangleDownDoubleWhole",
|
|
|
|
"noteheadTriangleDownHalf",
|
|
|
|
"noteheadTriangleDownWhite",
|
|
|
|
"noteheadTriangleDownWhole",
|
|
|
|
"noteheadTriangleLeftBlack",
|
|
|
|
"noteheadTriangleLeftWhite",
|
|
|
|
"noteheadTriangleRightBlack",
|
|
|
|
"noteheadTriangleRightWhite",
|
|
|
|
"noteheadTriangleRoundDownBlack",
|
|
|
|
"noteheadTriangleRoundDownWhite",
|
|
|
|
"noteheadTriangleUpBlack",
|
|
|
|
"noteheadTriangleUpDoubleWhole",
|
|
|
|
"noteheadTriangleUpHalf",
|
|
|
|
"noteheadTriangleUpRightBlack",
|
|
|
|
"noteheadTriangleUpRightWhite",
|
|
|
|
"noteheadTriangleUpWhite",
|
|
|
|
"noteheadTriangleUpWhole",
|
|
|
|
"noteheadVoidWithX",
|
|
|
|
"noteheadWhole",
|
|
|
|
"noteheadWholeWithX",
|
|
|
|
"noteheadXBlack",
|
|
|
|
"noteheadXDoubleWhole",
|
|
|
|
"noteheadXHalf",
|
|
|
|
"noteheadXOrnate",
|
|
|
|
"noteheadXWhole",
|
|
|
|
"ornamentBottomLeftConcaveStroke",
|
|
|
|
"ornamentBottomLeftConcaveStrokeLarge",
|
|
|
|
"ornamentBottomLeftConvexStroke",
|
|
|
|
"ornamentBottomRightConcaveStroke",
|
|
|
|
"ornamentBottomRightConvexStroke",
|
|
|
|
"ornamentComma",
|
|
|
|
"ornamentDoubleObliqueLinesAfterNote",
|
|
|
|
"ornamentDoubleObliqueLinesBeforeNote",
|
|
|
|
"ornamentDownCurve",
|
|
|
|
"ornamentHaydn",
|
|
|
|
"ornamentHighLeftConcaveStroke",
|
|
|
|
"ornamentHighLeftConvexStroke",
|
|
|
|
"ornamentHighRightConcaveStroke",
|
|
|
|
"ornamentHighRightConvexStroke",
|
|
|
|
"ornamentHookAfterNote",
|
|
|
|
"ornamentHookBeforeNote",
|
|
|
|
"ornamentLeftFacingHalfCircle",
|
|
|
|
"ornamentLeftFacingHook",
|
|
|
|
"ornamentLeftPlus",
|
|
|
|
"ornamentLeftShakeT",
|
|
|
|
"ornamentLeftVerticalStroke",
|
|
|
|
"ornamentLeftVerticalStrokeWithCross",
|
|
|
|
"ornamentLowLeftConcaveStroke",
|
|
|
|
"ornamentLowLeftConvexStroke",
|
|
|
|
"ornamentLowRightConcaveStroke",
|
|
|
|
"ornamentLowRightConvexStroke",
|
|
|
|
"ornamentMiddleVerticalStroke",
|
|
|
|
"ornamentMordent",
|
|
|
|
"ornamentMordentInverted",
|
|
|
|
"ornamentObliqueLineAfterNote",
|
|
|
|
"ornamentObliqueLineBeforeNote",
|
|
|
|
"ornamentObliqueLineHorizAfterNote",
|
|
|
|
"ornamentObliqueLineHorizBeforeNote",
|
|
|
|
"ornamentOriscus",
|
|
|
|
"ornamentPortDeVoixV",
|
|
|
|
"ornamentPrecompAppoggTrill",
|
|
|
|
"ornamentPrecompAppoggTrillSuffix",
|
|
|
|
"ornamentPrecompDescendingSlide",
|
|
|
|
"ornamentPrecompPortDeVoixMordent",
|
|
|
|
"ornamentPrecompSlide",
|
|
|
|
"ornamentPrecompSlideTrillBach",
|
|
|
|
"ornamentPrecompSlideTrillDAnglebert",
|
|
|
|
"ornamentPrecompSlideTrillMarpurg",
|
|
|
|
"ornamentPrecompSlideTrillMuffat",
|
|
|
|
"ornamentPrecompSlideTrillSuffixMuffat",
|
|
|
|
"ornamentPrecompTrillSuffixDandrieu",
|
|
|
|
"ornamentPrecompTurnTrillBach",
|
|
|
|
"ornamentPrecompTurnTrillDAnglebert",
|
|
|
|
"ornamentQuilisma",
|
|
|
|
"ornamentRightFacingHalfCircle",
|
|
|
|
"ornamentRightFacingHook",
|
|
|
|
"ornamentRightVerticalStroke",
|
|
|
|
"ornamentSchleifer",
|
|
|
|
"ornamentShake3",
|
|
|
|
"ornamentShakeMuffat1",
|
|
|
|
"ornamentShortObliqueLineAfterNote",
|
|
|
|
"ornamentShortObliqueLineBeforeNote",
|
|
|
|
"ornamentTopLeftConcaveStroke",
|
|
|
|
"ornamentTopLeftConvexStroke",
|
|
|
|
"ornamentTopRightConcaveStroke",
|
|
|
|
"ornamentTopRightConvexStroke",
|
|
|
|
"ornamentTremblement",
|
|
|
|
"ornamentTrill",
|
|
|
|
"ornamentTurn",
|
|
|
|
"ornamentTurnInverted",
|
|
|
|
"ornamentTurnSlash",
|
|
|
|
"ornamentTurnUp",
|
|
|
|
"ornamentTurnUpS",
|
|
|
|
"ornamentUpCurve",
|
|
|
|
"ornamentVerticalLine",
|
|
|
|
"ornamentZigZagLineNoRightEnd",
|
|
|
|
"ornamentZigZagLineWithRightEnd",
|
|
|
|
"ottava",
|
|
|
|
"ottavaAlta",
|
|
|
|
"ottavaBassa",
|
|
|
|
"ottavaBassaBa",
|
|
|
|
"pendereckiTremolo",
|
|
|
|
"pictAlmglocken",
|
|
|
|
"pictAnvil",
|
|
|
|
"pictBassDrum",
|
|
|
|
"pictBassDrumOnSide",
|
|
|
|
"pictBeaterBow",
|
|
|
|
"pictBeaterBrassMalletsDown",
|
|
|
|
"pictBeaterBrassMalletsUp",
|
|
|
|
"pictBeaterDoubleBassDrumDown",
|
|
|
|
"pictBeaterDoubleBassDrumUp",
|
|
|
|
"pictBeaterFinger",
|
|
|
|
"pictBeaterFingernails",
|
|
|
|
"pictBeaterFist",
|
|
|
|
"pictBeaterGuiroScraper",
|
|
|
|
"pictBeaterHammer",
|
|
|
|
"pictBeaterHand",
|
|
|
|
"pictBeaterHardBassDrumDown",
|
|
|
|
"pictBeaterHardBassDrumUp",
|
|
|
|
"pictBeaterHardGlockenspielDown",
|
|
|
|
"pictBeaterHardGlockenspielLeft",
|
|
|
|
"pictBeaterHardGlockenspielRight",
|
|
|
|
"pictBeaterHardGlockenspielUp",
|
|
|
|
"pictBeaterHardTimpaniDown",
|
|
|
|
"pictBeaterHardTimpaniLeft",
|
|
|
|
"pictBeaterHardTimpaniRight",
|
|
|
|
"pictBeaterHardTimpaniUp",
|
|
|
|
"pictBeaterHardXylophoneDown",
|
|
|
|
"pictBeaterHardXylophoneLeft",
|
|
|
|
"pictBeaterHardXylophoneRight",
|
|
|
|
"pictBeaterHardXylophoneUp",
|
|
|
|
"pictBeaterHardYarnDown",
|
|
|
|
"pictBeaterHardYarnLeft",
|
|
|
|
"pictBeaterHardYarnRight",
|
|
|
|
"pictBeaterHardYarnUp",
|
|
|
|
"pictBeaterJazzSticksDown",
|
|
|
|
"pictBeaterJazzSticksUp",
|
|
|
|
"pictBeaterKnittingNeedle",
|
|
|
|
"pictBeaterMallet",
|
|
|
|
"pictBeaterMediumBassDrumDown",
|
|
|
|
"pictBeaterMediumBassDrumUp",
|
|
|
|
"pictBeaterMediumTimpaniDown",
|
|
|
|
"pictBeaterMediumTimpaniLeft",
|
|
|
|
"pictBeaterMediumTimpaniRight",
|
|
|
|
"pictBeaterMediumTimpaniUp",
|
|
|
|
"pictBeaterMediumXylophoneDown",
|
|
|
|
"pictBeaterMediumXylophoneLeft",
|
|
|
|
"pictBeaterMediumXylophoneRight",
|
|
|
|
"pictBeaterMediumXylophoneUp",
|
|
|
|
"pictBeaterMediumYarnDown",
|
|
|
|
"pictBeaterMediumYarnLeft",
|
|
|
|
"pictBeaterMediumYarnRight",
|
|
|
|
"pictBeaterMediumYarnUp",
|
|
|
|
"pictBeaterMetalHammer",
|
|
|
|
"pictBeaterSnareSticksDown",
|
|
|
|
"pictBeaterSnareSticksUp",
|
|
|
|
"pictBeaterSoftBassDrumDown",
|
|
|
|
"pictBeaterSoftBassDrumUp",
|
|
|
|
"pictBeaterSoftGlockenspielDown",
|
|
|
|
"pictBeaterSoftGlockenspielLeft",
|
|
|
|
"pictBeaterSoftGlockenspielRight",
|
|
|
|
"pictBeaterSoftGlockenspielUp",
|
|
|
|
"pictBeaterSoftTimpaniDown",
|
|
|
|
"pictBeaterSoftTimpaniLeft",
|
|
|
|
"pictBeaterSoftTimpaniRight",
|
|
|
|
"pictBeaterSoftTimpaniUp",
|
|
|
|
"pictBeaterSoftXylophone",
|
|
|
|
"pictBeaterSoftXylophoneDown",
|
|
|
|
"pictBeaterSoftXylophoneLeft",
|
|
|
|
"pictBeaterSoftXylophoneRight",
|
|
|
|
"pictBeaterSoftXylophoneUp",
|
|
|
|
"pictBeaterSoftYarnDown",
|
|
|
|
"pictBeaterSoftYarnLeft",
|
|
|
|
"pictBeaterSoftYarnRight",
|
|
|
|
"pictBeaterSoftYarnUp",
|
|
|
|
"pictBeaterSpoonWoodenMallet",
|
|
|
|
"pictBeaterSuperballDown",
|
|
|
|
"pictBeaterSuperballLeft",
|
|
|
|
"pictBeaterSuperballRight",
|
|
|
|
"pictBeaterSuperballUp",
|
|
|
|
"pictBeaterTriangleDown",
|
|
|
|
"pictBeaterTriangleUp",
|
|
|
|
"pictBeaterWireBrushesDown",
|
|
|
|
"pictBeaterWireBrushesUp",
|
|
|
|
"pictBeaterWoodTimpaniDown",
|
|
|
|
"pictBeaterWoodTimpaniLeft",
|
|
|
|
"pictBeaterWoodTimpaniRight",
|
|
|
|
"pictBeaterWoodTimpaniUp",
|
|
|
|
"pictBeaterWoodXylophoneDown",
|
|
|
|
"pictBeaterWoodXylophoneLeft",
|
|
|
|
"pictBeaterWoodXylophoneRight",
|
|
|
|
"pictBeaterWoodXylophoneUp",
|
|
|
|
"pictBell",
|
|
|
|
"pictBellOfCymbal",
|
|
|
|
"pictBellPlate",
|
|
|
|
"pictBirdWhistle",
|
|
|
|
"pictBoardClapper",
|
|
|
|
"pictBongos",
|
|
|
|
"pictBrakeDrum",
|
|
|
|
"pictCabasa",
|
|
|
|
"pictCannon",
|
|
|
|
"pictCarHorn",
|
|
|
|
"pictCastanets",
|
|
|
|
"pictCenter1",
|
|
|
|
"pictCenter2",
|
|
|
|
"pictCenter3",
|
|
|
|
"pictChimes",
|
|
|
|
"pictChineseCymbal",
|
|
|
|
"pictChokeCymbal",
|
|
|
|
"pictClaves",
|
|
|
|
"pictCoins",
|
|
|
|
"pictConga",
|
|
|
|
"pictCowBell",
|
|
|
|
"pictCrashCymbals",
|
|
|
|
"pictCrotales",
|
|
|
|
"pictCymbalTongs",
|
|
|
|
"pictDamp1",
|
|
|
|
"pictDamp2",
|
|
|
|
"pictDamp3",
|
|
|
|
"pictDamp4",
|
|
|
|
"pictDrumStick",
|
|
|
|
"pictDuckCall",
|
|
|
|
"pictEdgeOfCymbal",
|
|
|
|
"pictEmptyTrap",
|
|
|
|
"pictFingerCymbals",
|
|
|
|
"pictFlexatone",
|
|
|
|
"pictFootballRatchet",
|
|
|
|
"pictGlsp",
|
|
|
|
"pictGlspSmithBrindle",
|
|
|
|
"pictGobletDrum",
|
|
|
|
"pictGong",
|
|
|
|
"pictGongWithButton",
|
|
|
|
"pictGuiro",
|
|
|
|
"pictGumHardDown",
|
|
|
|
"pictGumHardLeft",
|
|
|
|
"pictGumHardRight",
|
|
|
|
"pictGumHardUp",
|
|
|
|
"pictGumMediumDown",
|
|
|
|
"pictGumMediumLeft",
|
|
|
|
"pictGumMediumRight",
|
|
|
|
"pictGumMediumUp",
|
|
|
|
"pictGumSoftDown",
|
|
|
|
"pictGumSoftLeft",
|
|
|
|
"pictGumSoftRight",
|
|
|
|
"pictGumSoftUp",
|
|
|
|
"pictHalfOpen1",
|
|
|
|
"pictHalfOpen2",
|
|
|
|
"pictHandbell",
|
|
|
|
"pictHiHat",
|
|
|
|
"pictHiHatOnStand",
|
|
|
|
"pictKlaxonHorn",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictLeftHandCircle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictLionsRoar",
|
|
|
|
"pictLogDrum",
|
|
|
|
"pictMar",
|
|
|
|
"pictMarSmithBrindle",
|
|
|
|
"pictMaraca",
|
|
|
|
"pictMaracas",
|
|
|
|
"pictMegaphone",
|
|
|
|
"pictNormalPosition",
|
|
|
|
"pictOnRim",
|
|
|
|
"pictOpen",
|
|
|
|
"pictOpenRimShot",
|
|
|
|
"pictPistolShot",
|
|
|
|
"pictPoliceWhistle",
|
|
|
|
"pictRainstick",
|
|
|
|
"pictRatchet",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictRightHandSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictRim1",
|
|
|
|
"pictRim2",
|
|
|
|
"pictRim3",
|
|
|
|
"pictRimShotOnStem",
|
|
|
|
"pictSandpaperBlocks",
|
|
|
|
"pictScrapeAroundRim",
|
|
|
|
"pictScrapeCenterToEdge",
|
|
|
|
"pictScrapeEdgeToCenter",
|
|
|
|
"pictSiren",
|
|
|
|
"pictSistrum",
|
|
|
|
"pictSizzleCymbal",
|
|
|
|
"pictSleighBell",
|
|
|
|
"pictSlideBrushOnGong",
|
|
|
|
"pictSlideWhistle",
|
|
|
|
"pictSlitDrum",
|
|
|
|
"pictSnareDrum",
|
|
|
|
"pictSnareDrumMilitary",
|
|
|
|
"pictSnareDrumSnaresOff",
|
|
|
|
"pictStickShot",
|
|
|
|
"pictSuperball",
|
|
|
|
"pictSuspendedCymbal",
|
|
|
|
"pictTabla",
|
|
|
|
"pictTamTam",
|
|
|
|
"pictTamTamWithBeater",
|
|
|
|
"pictTambourine",
|
|
|
|
"pictTempleBlocks",
|
|
|
|
"pictTenorDrum",
|
|
|
|
"pictThundersheet",
|
|
|
|
"pictTimbales",
|
|
|
|
"pictTimpani",
|
|
|
|
"pictTomTom",
|
|
|
|
"pictTriangle",
|
|
|
|
"pictTubularBells",
|
|
|
|
"pictVib",
|
|
|
|
"pictVibSmithBrindle",
|
|
|
|
"pictVibraslap",
|
|
|
|
"pictVietnameseHat",
|
|
|
|
"pictWhip",
|
|
|
|
"pictWindChimesGlass",
|
|
|
|
"pictWindMachine",
|
|
|
|
"pictWindWhistle",
|
|
|
|
"pictWoodBlock",
|
|
|
|
"pictWoundHardDown",
|
|
|
|
"pictWoundHardLeft",
|
|
|
|
"pictWoundHardRight",
|
|
|
|
"pictWoundHardUp",
|
|
|
|
"pictWoundSoftDown",
|
|
|
|
"pictWoundSoftLeft",
|
|
|
|
"pictWoundSoftRight",
|
|
|
|
"pictWoundSoftUp",
|
|
|
|
"pictXyl",
|
|
|
|
"pictXylSmithBrindle",
|
|
|
|
"pluckedBuzzPizzicato",
|
|
|
|
"pluckedDamp",
|
|
|
|
"pluckedDampAll",
|
|
|
|
"pluckedDampOnStem",
|
|
|
|
"pluckedFingernailFlick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pluckedLeftHandPizzicato",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pluckedPlectrum",
|
|
|
|
"pluckedSnapPizzicatoAbove",
|
|
|
|
"pluckedSnapPizzicatoBelow",
|
|
|
|
"pluckedWithFingernails",
|
|
|
|
"quindicesima",
|
|
|
|
"quindicesimaAlta",
|
|
|
|
"quindicesimaBassa",
|
|
|
|
"repeat1Bar",
|
|
|
|
"repeat2Bars",
|
|
|
|
"repeat4Bars",
|
2013-11-29 00:37:48 +01:00
|
|
|
"repeatDot",
|
2013-11-06 15:58:05 +01:00
|
|
|
"repeatDots",
|
|
|
|
"rest1024th",
|
|
|
|
"rest128th",
|
|
|
|
"rest16th",
|
|
|
|
"rest256th",
|
|
|
|
"rest32nd",
|
|
|
|
"rest512th",
|
|
|
|
"rest64th",
|
|
|
|
"rest8th",
|
|
|
|
"restDoubleWhole",
|
|
|
|
"restHBar",
|
|
|
|
"restHBarLeft",
|
|
|
|
"restHBarRight",
|
|
|
|
"restHalf",
|
|
|
|
"restLonga",
|
|
|
|
"restQuarter",
|
|
|
|
"restQuarterOld",
|
|
|
|
"restWhole",
|
|
|
|
"reversedBrace",
|
|
|
|
"reversedBracketBottom",
|
|
|
|
"reversedBracketTop",
|
|
|
|
"rightRepeat",
|
|
|
|
"rightRepeatSmall",
|
|
|
|
"segno",
|
|
|
|
"segnoSerpent1",
|
|
|
|
"segnoSerpent2",
|
|
|
|
"semipitchedPercussionClef1",
|
|
|
|
"semipitchedPercussionClef2",
|
2013-11-29 00:37:48 +01:00
|
|
|
"splitBarDivider",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff1Line",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff1LineNarrow",
|
|
|
|
"staff1LineWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff2Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff2LinesNarrow",
|
|
|
|
"staff2LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff3Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff3LinesNarrow",
|
|
|
|
"staff3LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff4Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff4LinesNarrow",
|
|
|
|
"staff4LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff5Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff5LinesNarrow",
|
|
|
|
"staff5LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff6Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff6LinesNarrow",
|
|
|
|
"staff6LinesWide",
|
|
|
|
"staffPosLower1",
|
|
|
|
"staffPosLower2",
|
|
|
|
"staffPosLower3",
|
|
|
|
"staffPosLower4",
|
|
|
|
"staffPosLower5",
|
|
|
|
"staffPosLower6",
|
|
|
|
"staffPosLower7",
|
|
|
|
"staffPosLower8",
|
|
|
|
"staffPosRaise1",
|
|
|
|
"staffPosRaise2",
|
|
|
|
"staffPosRaise3",
|
|
|
|
"staffPosRaise4",
|
|
|
|
"staffPosRaise5",
|
|
|
|
"staffPosRaise6",
|
|
|
|
"staffPosRaise7",
|
|
|
|
"staffPosRaise8",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stem",
|
|
|
|
"stemBowOnBridge",
|
|
|
|
"stemBowOnTailpiece",
|
|
|
|
"stemBuzzRoll",
|
|
|
|
"stemDamp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"stemHarpStringNoise",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stemMultiphonicsBlack",
|
|
|
|
"stemMultiphonicsBlackWhite",
|
|
|
|
"stemMultiphonicsWhite",
|
|
|
|
"stemPendereckiTremolo",
|
|
|
|
"stemRimShot",
|
|
|
|
"stemSprechgesang",
|
|
|
|
"stemSulPonticello",
|
|
|
|
"stemSussurando",
|
|
|
|
"stemSwished",
|
|
|
|
"stemVibratoPulse",
|
|
|
|
"stringsBowBehindBridge",
|
|
|
|
"stringsBowOnBridge",
|
|
|
|
"stringsBowOnTailpiece",
|
|
|
|
"stringsChangeBowDirection",
|
|
|
|
"stringsDownBow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"stringsFouett\u00e9",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stringsHalfHarmonic",
|
|
|
|
"stringsHarmonic",
|
|
|
|
"stringsJeteAbove",
|
|
|
|
"stringsJeteBelow",
|
|
|
|
"stringsMuteOff",
|
|
|
|
"stringsMuteOn",
|
|
|
|
"stringsOverpressureDownBow",
|
|
|
|
"stringsOverpressureNoDirection",
|
|
|
|
"stringsOverpressurePossibileDownBow",
|
|
|
|
"stringsOverpressurePossibileUpBow",
|
|
|
|
"stringsOverpressureUpBow",
|
|
|
|
"stringsThumbPosition",
|
|
|
|
"stringsUpBow",
|
|
|
|
"stringsVibratoPulse",
|
|
|
|
"systemDivider",
|
|
|
|
"systemDividerExtraLong",
|
|
|
|
"systemDividerLong",
|
2013-11-29 00:37:48 +01:00
|
|
|
"textAugmentationDot",
|
|
|
|
"textBlackNoteFrac16thLongStem",
|
|
|
|
"textBlackNoteFrac16thShortStem",
|
|
|
|
"textBlackNoteFrac32ndLongStem",
|
|
|
|
"textBlackNoteFrac8thLongStem",
|
|
|
|
"textBlackNoteFrac8thShortStem",
|
|
|
|
"textBlackNoteLongStem",
|
|
|
|
"textBlackNoteShortStem",
|
|
|
|
"textCont16thBeamLongStem",
|
|
|
|
"textCont16thBeamShortStem",
|
|
|
|
"textCont32ndBeamLongStem",
|
|
|
|
"textCont8thBeamLongStem",
|
|
|
|
"textCont8thBeamShortStem",
|
|
|
|
"textTie",
|
|
|
|
"textTuplet3LongStem",
|
|
|
|
"textTuplet3ShortStem",
|
|
|
|
"textTupletBracketEndLongStem",
|
|
|
|
"textTupletBracketEndShortStem",
|
|
|
|
"textTupletBracketStartLongStem",
|
|
|
|
"textTupletBracketStartShortStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSig0",
|
|
|
|
"timeSig1",
|
|
|
|
"timeSig2",
|
|
|
|
"timeSig3",
|
|
|
|
"timeSig4",
|
|
|
|
"timeSig5",
|
|
|
|
"timeSig6",
|
|
|
|
"timeSig7",
|
|
|
|
"timeSig8",
|
|
|
|
"timeSig9",
|
2013-11-29 00:37:48 +01:00
|
|
|
"timeSigCombDenominator",
|
|
|
|
"timeSigCombNumerator",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSigComma",
|
|
|
|
"timeSigCommon",
|
|
|
|
"timeSigCutCommon",
|
|
|
|
"timeSigEquals",
|
|
|
|
"timeSigFractionHalf",
|
|
|
|
"timeSigFractionOneThird",
|
|
|
|
"timeSigFractionQuarter",
|
|
|
|
"timeSigFractionThreeQuarters",
|
|
|
|
"timeSigFractionTwoThirds",
|
|
|
|
"timeSigFractionalSlash",
|
|
|
|
"timeSigMinus",
|
|
|
|
"timeSigMultiply",
|
|
|
|
"timeSigOpenPenderecki",
|
|
|
|
"timeSigParensLeft",
|
|
|
|
"timeSigParensLeftSmall",
|
|
|
|
"timeSigParensRight",
|
|
|
|
"timeSigParensRightSmall",
|
|
|
|
"timeSigPlus",
|
|
|
|
"timeSigPlusSmall",
|
|
|
|
"timeSigX",
|
|
|
|
"tremolo1",
|
|
|
|
"tremolo2",
|
|
|
|
"tremolo3",
|
|
|
|
"tremolo4",
|
|
|
|
"tremolo5",
|
|
|
|
"tremoloFingered1",
|
|
|
|
"tremoloFingered2",
|
|
|
|
"tremoloFingered3",
|
|
|
|
"tremoloFingered4",
|
|
|
|
"tremoloFingered5",
|
|
|
|
"tripleTongueAbove",
|
|
|
|
"tripleTongueBelow",
|
|
|
|
"tuplet0",
|
|
|
|
"tuplet1",
|
|
|
|
"tuplet2",
|
|
|
|
"tuplet3",
|
|
|
|
"tuplet4",
|
|
|
|
"tuplet5",
|
|
|
|
"tuplet6",
|
|
|
|
"tuplet7",
|
|
|
|
"tuplet8",
|
|
|
|
"tuplet9",
|
|
|
|
"tupletColon",
|
|
|
|
"unmeasuredTremolo",
|
|
|
|
"unmeasuredTremoloSimple",
|
|
|
|
"unpitchedPercussionClef1",
|
|
|
|
"unpitchedPercussionClef2",
|
|
|
|
"ventiduesima",
|
|
|
|
"ventiduesimaAlta",
|
|
|
|
"ventiduesimaBassa",
|
|
|
|
"vocalBreathMark",
|
|
|
|
"vocalMouthClosed",
|
|
|
|
"vocalMouthOpen",
|
|
|
|
"vocalMouthPursed",
|
|
|
|
"vocalMouthSlightlyOpen",
|
|
|
|
"vocalMouthWideOpen",
|
|
|
|
"vocalSprechgesang",
|
|
|
|
"vocalsSussurando",
|
|
|
|
"wiggleArpeggiatoDown",
|
|
|
|
"wiggleArpeggiatoDownArrow",
|
|
|
|
"wiggleArpeggiatoDownSwash",
|
|
|
|
"wiggleArpeggiatoUp",
|
|
|
|
"wiggleArpeggiatoUpArrow",
|
|
|
|
"wiggleArpeggiatoUpSwash",
|
|
|
|
"wiggleCircular",
|
|
|
|
"wiggleCircularConstant",
|
|
|
|
"wiggleCircularEnd",
|
|
|
|
"wiggleCircularLarge",
|
|
|
|
"wiggleCircularLarger",
|
|
|
|
"wiggleCircularLargerStill",
|
|
|
|
"wiggleCircularLargest",
|
|
|
|
"wiggleCircularSmall",
|
|
|
|
"wiggleCircularStart",
|
|
|
|
"wiggleGlissando",
|
|
|
|
"wiggleGlissandoGroup1",
|
|
|
|
"wiggleGlissandoGroup2",
|
|
|
|
"wiggleGlissandoGroup3",
|
|
|
|
"wiggleSawtooth",
|
|
|
|
"wiggleSquaretooth",
|
|
|
|
"wiggleTrill",
|
|
|
|
"wiggleTrillFast",
|
|
|
|
"wiggleTrillFaster",
|
|
|
|
"wiggleTrillFasterStill",
|
|
|
|
"wiggleTrillFastest",
|
|
|
|
"wiggleTrillSlow",
|
|
|
|
"wiggleTrillSlower",
|
|
|
|
"wiggleTrillSlowerStill",
|
|
|
|
"wiggleTrillSlowest",
|
|
|
|
"wiggleVIbratoLargestSlower",
|
|
|
|
"wiggleVIbratoMediumSlower",
|
|
|
|
"wiggleVibrato",
|
|
|
|
"wiggleVibratoLargeFast",
|
|
|
|
"wiggleVibratoLargeFaster",
|
|
|
|
"wiggleVibratoLargeFasterStill",
|
|
|
|
"wiggleVibratoLargeFastest",
|
|
|
|
"wiggleVibratoLargeSlow",
|
|
|
|
"wiggleVibratoLargeSlower",
|
|
|
|
"wiggleVibratoLargeSlowest",
|
|
|
|
"wiggleVibratoLargestFast",
|
|
|
|
"wiggleVibratoLargestFaster",
|
|
|
|
"wiggleVibratoLargestFasterStill",
|
|
|
|
"wiggleVibratoLargestFastest",
|
|
|
|
"wiggleVibratoLargestSlow",
|
|
|
|
"wiggleVibratoLargestSlowest",
|
|
|
|
"wiggleVibratoMediumFast",
|
|
|
|
"wiggleVibratoMediumFaster",
|
|
|
|
"wiggleVibratoMediumFasterStill",
|
|
|
|
"wiggleVibratoMediumFastest",
|
|
|
|
"wiggleVibratoMediumSlow",
|
|
|
|
"wiggleVibratoMediumSlowest",
|
|
|
|
"wiggleVibratoSmallFast",
|
|
|
|
"wiggleVibratoSmallFaster",
|
|
|
|
"wiggleVibratoSmallFasterStill",
|
|
|
|
"wiggleVibratoSmallFastest",
|
|
|
|
"wiggleVibratoSmallSlow",
|
|
|
|
"wiggleVibratoSmallSlower",
|
|
|
|
"wiggleVibratoSmallSlowest",
|
|
|
|
"wiggleVibratoSmallestFast",
|
|
|
|
"wiggleVibratoSmallestFaster",
|
|
|
|
"wiggleVibratoSmallestFasterStill",
|
|
|
|
"wiggleVibratoSmallestFastest",
|
|
|
|
"wiggleVibratoSmallestSlow",
|
|
|
|
"wiggleVibratoSmallestSlower",
|
|
|
|
"wiggleVibratoSmallestSlowest",
|
|
|
|
"wiggleVibratoStart",
|
|
|
|
"wiggleVibratoWide",
|
|
|
|
"wiggleWavy",
|
|
|
|
"windClosedHole",
|
|
|
|
"windFlatEmbouchure",
|
|
|
|
"windHalfClosedHole1",
|
|
|
|
"windHalfClosedHole2",
|
|
|
|
"windHalfClosedHole3",
|
|
|
|
"windLessRelaxedEmbouchure",
|
|
|
|
"windLessTightEmbouchure",
|
|
|
|
"windMultiphonicsBlackStem",
|
|
|
|
"windMultiphonicsBlackWhiteStem",
|
|
|
|
"windMultiphonicsWhiteStem",
|
|
|
|
"windOpenHole",
|
|
|
|
"windReedPositionIn",
|
|
|
|
"windReedPositionNormal",
|
|
|
|
"windReedPositionOut",
|
|
|
|
"windRelaxedEmbouchure",
|
|
|
|
"windSharpEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windStrongAirPressure",
|
2013-11-06 15:58:05 +01:00
|
|
|
"windThreeQuartersClosedHole",
|
|
|
|
"windTightEmbouchure",
|
|
|
|
"windTrillKey",
|
2013-11-11 15:11:28 +01:00
|
|
|
"windVeryTightEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windWeakAirPressure",
|
|
|
|
|
|
|
|
// EXTENSIONS
|
|
|
|
// SMuFL stylistic alternates which we need to access directly
|
|
|
|
|
|
|
|
"noteheadDoubleWholeAlt", // double whole with double side bars
|
|
|
|
"6StringTabClefSerif", // TAB clef in script style
|
|
|
|
|
|
|
|
// MuseScore local symbols, precomposed symbols to mimic some emmentaler glyphs
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-12 15:15:48 +01:00
|
|
|
"ornamentPrallMordent",
|
2013-11-11 15:11:28 +01:00
|
|
|
"ornamentUpPrall",
|
|
|
|
"ornamentUpMordent",
|
|
|
|
"ornamentPrallDown",
|
|
|
|
"ornamentDownPrall",
|
|
|
|
"ornamentDownMordent",
|
|
|
|
"ornamentPrallUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"ornamentLinePrall",
|
|
|
|
|
|
|
|
// additional symbols
|
|
|
|
|
|
|
|
"noteLongaUp",
|
|
|
|
"noteLongaDown",
|
|
|
|
"noteLongaSquareUp",
|
|
|
|
"noteLongaSquareDown",
|
2013-11-11 15:11:28 +01:00
|
|
|
};
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-18 00:57:35 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// Conversion table of old symbol names (1.3)
|
|
|
|
// The mapping corresponds to fonts/mscore/glyphnames.json and must be in sync with it
|
|
|
|
// symNames must be in sync with enum class SymId
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
struct oldName {
|
|
|
|
const char* name;
|
|
|
|
SymId symId;
|
|
|
|
};
|
|
|
|
|
|
|
|
QHash<QString, SymId> Sym::lonhash;
|
|
|
|
QVector<oldName> oldNames = {
|
|
|
|
{"rests.0", SymId::restWhole },
|
|
|
|
{"rests.1", SymId::restHalf },
|
|
|
|
{"rests.0o", SymId::restWhole }, // whole rest outside staff missing in SMuFL
|
|
|
|
{"rests.1o", SymId::restHalf }, // half rest outside staff missing in SMuFL
|
|
|
|
// {"rests.M3", SymId::noSym }, // double longa rest missing in SMuFL
|
|
|
|
{"rests.M1", SymId::restDoubleWhole },
|
|
|
|
{"rests.M2", SymId::restLonga },
|
|
|
|
{"rests.2", SymId::restQuarter },
|
|
|
|
{"rests.2classical", SymId::restQuarterOld },
|
|
|
|
{"rests.3", SymId::rest8th },
|
|
|
|
{"rests.4", SymId::rest16th },
|
|
|
|
{"rests.5", SymId::rest32nd },
|
|
|
|
{"rests.6", SymId::rest64th },
|
|
|
|
{"rests.7", SymId::rest128th },
|
|
|
|
|
|
|
|
{"accidentals.sharp", SymId::accidentalSharp },
|
|
|
|
{"accidentals.sharp.arrowup", SymId::accidentalSharpOneArrowUp },
|
|
|
|
{"accidentals.sharp.arrowdown", SymId::accidentalSharpOneArrowDown },
|
|
|
|
// {"accidentals.sharp.arrowboth", SymId::noSym }, // sharp with both arrows missing in SMuFL
|
|
|
|
{"accidentals.sharp.slashslash.stem", SymId::accidentalQuarterSharp4 },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"accidentals.sharp.slashslashslash.stemstem", SymId::accidentalBuyukMucennebSharp },
|
|
|
|
{"accidentals.sharp.slashslashslash.stem", SymId::accidentalKomaSharp },
|
2013-11-18 00:57:35 +01:00
|
|
|
{"accidentals.sharp.slashslash.stemstemstem", SymId::accidentalThreeQuartersSharp2 },
|
|
|
|
{"accidentals.natural", SymId::accidentalNatural },
|
|
|
|
{"accidentals.natural.arrowup", SymId::accidentalNaturalOneArrowUp },
|
|
|
|
{"accidentals.natural.arrowdown", SymId::accidentalNaturalOneArrowUp },
|
|
|
|
// {"accidentals.natural.arrowboth", SymId::noSym }, // natural with both arrows missing in SMuFL
|
|
|
|
{"accidentals.flat", SymId::accidentalFlat },
|
|
|
|
{"accidentals.flat.arrowup", SymId::accidentalFlatOneArrowUp },
|
|
|
|
{"accidentals.flat.arrowdown", SymId::accidentalFlatOneArrowDown },
|
|
|
|
// {"accidentals.flat.arrowboth", SymId::noSym }, // flat with both arrows missing in SMuFL
|
2013-11-29 00:37:48 +01:00
|
|
|
{"accidentals.flat.slash", SymId::accidentalBakiyeFlat },
|
|
|
|
{"accidentals.flat.slashslash", SymId::accidentalBuyukMucennebFlat },
|
2013-11-18 00:57:35 +01:00
|
|
|
{"accidentals.mirroredflat.flat", SymId::accidentalThreeQuartersFlatCouper },
|
|
|
|
{"accidentals.mirroredflat", SymId::accidentalQuarterFlat4 }, // more than one candidate in SMuFL: first occurring chosen
|
|
|
|
// {"accidentals.mirroredflat.backslash", SymId::noSym }, // mirrored-slashed flat missing in SMuFL
|
|
|
|
{"accidentals.flatflat", SymId::accidentalDoubleFlat },
|
2013-11-29 00:37:48 +01:00
|
|
|
// {"accidentals.flatflat.slash", SymId::noSym }, // slashes double flat missing in SMuFL
|
2013-11-18 00:57:35 +01:00
|
|
|
{"accidentals.doublesharp", SymId::accidentalDoubleSharp },
|
|
|
|
{"accidentals.sori", SymId::accidentalSori },
|
|
|
|
{"accidentals.koron", SymId::accidentalKoron },
|
|
|
|
{"accidentals.rightparen", SymId::noteheadParenthesisRight }, // SMULF parenth. for note heads used instead
|
|
|
|
{"accidentals.leftparen", SymId::noteheadParenthesisLeft }, // "
|
|
|
|
|
|
|
|
{"arrowheads.open.01", SymId::arrowheadWhiteRight }, // similar, not identical in SMuFL
|
|
|
|
{"arrowheads.open.0M1", SymId::arrowheadWhiteLeft }, // "
|
|
|
|
{"arrowheads.open.11", SymId::arrowheadWhiteUp }, // "
|
|
|
|
{"arrowheads.open.1M1", SymId::arrowheadWhiteDown }, // "
|
|
|
|
{"arrowheads.close.01", SymId::arrowheadBlackRight },
|
|
|
|
{"arrowheads.close.0M1", SymId::arrowheadBlackLeft },
|
|
|
|
{"arrowheads.close.11", SymId::arrowheadBlackUp },
|
|
|
|
{"arrowheads.close.1M1", SymId::arrowheadBlackDown },
|
|
|
|
|
|
|
|
{"dots.dot", SymId::augmentationDot },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"noteheads.uM2", SymId::noteLongaUp },
|
|
|
|
{"noteheads.dM2", SymId::noteLongaDown },
|
2013-11-20 00:38:49 +01:00
|
|
|
{"noteheads.sM1", SymId::noteheadDoubleWhole },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"noteheads.sM1double", SymId::noteheadDoubleWholeSquare },
|
2013-11-18 00:57:35 +01:00
|
|
|
{"noteheads.s0", SymId::noteheadWhole },
|
|
|
|
{"noteheads.s1", SymId::noteheadHalf },
|
|
|
|
{"noteheads.s2", SymId::noteheadBlack },
|
|
|
|
{"noteheads.s0diamond", SymId::noteheadDiamondWhole },
|
|
|
|
{"noteheads.s1diamond", SymId::noteheadDiamondHalf },
|
|
|
|
{"noteheads.s2diamond", SymId::noteheadDiamondBlack },
|
|
|
|
{"noteheads.s0triangle", SymId::noteheadTriangleDownWhole },
|
|
|
|
{"noteheads.d1triangle", SymId::noteheadTriangleDownHalf },
|
|
|
|
{"noteheads.u1triangle", SymId::noteheadTriangleDownHalf },
|
|
|
|
{"noteheads.u2triangle", SymId::noteheadTriangleDownBlack },
|
|
|
|
{"noteheads.d2triangle", SymId::noteheadTriangleDownBlack },
|
|
|
|
{"noteheads.s0slash", SymId::noteheadSlashDiamondWhite },
|
|
|
|
{"noteheads.s1slash", SymId::noteheadSlashWhite },
|
|
|
|
{"noteheads.s2slash", SymId::noteheadSlashHorizontalEnds },
|
|
|
|
{"noteheads.s0cross", SymId::noteheadXWhole },
|
|
|
|
{"noteheads.s1cross", SymId::noteheadXHalf },
|
|
|
|
{"noteheads.s2cross", SymId::noteheadXBlack },
|
|
|
|
{"noteheads.s2xcircle", SymId::noteheadCircleX },
|
|
|
|
// {"noteheads.s0do", SymId::noSym }, // Whole DO triangle up missing in SMuFL
|
|
|
|
{"noteheads.d1do", SymId::noteShapeTriangleUpWhite },
|
|
|
|
{"noteheads.u1do", SymId::noteShapeTriangleUpWhite },
|
|
|
|
{"noteheads.d2do", SymId::noteShapeTriangleUpBlack },
|
|
|
|
{"noteheads.u2do", SymId::noteShapeTriangleUpBlack },
|
|
|
|
// {"noteheads.s0re", SymId::noSym }, // Whole moon-shaped RE missing in SMuFL
|
|
|
|
{"noteheads.u1re", SymId::noteShapeMoonWhite },
|
|
|
|
{"noteheads.d1re", SymId::noteShapeMoonWhite },
|
|
|
|
{"noteheads.u2re", SymId::noteShapeMoonBlack },
|
|
|
|
{"noteheads.d2re", SymId::noteShapeMoonBlack },
|
|
|
|
// {"noteheads.s0mi", SymId::noSym }, // Whole diamond-shaped MI missing in SMuFL
|
|
|
|
{"noteheads.s1mi", SymId::noteShapeDiamondWhite },
|
|
|
|
{"noteheads.s2mi", SymId::noteShapeDiamondBlack },
|
|
|
|
// {"noteheads.u0fa", SymId::noSym }, // Whole triangle-left shaped (up) FA missing in SMuFL
|
|
|
|
// {"noteheads.d0fa", SymId::noSym }, // Whole triangle-left shaped (dn) FA missing in SMuFL
|
|
|
|
{"noteheads.u1fa", SymId::noteheadTriangleUpRightWhite },
|
|
|
|
{"noteheads.d1fa", SymId::noteShapeTriangleRightWhite },
|
|
|
|
{"noteheads.u2fa", SymId::noteheadTriangleUpRightBlack },
|
|
|
|
{"noteheads.d2fa", SymId::noteheadTriangleLeftBlack },
|
|
|
|
// {"noteheads.s0la", SymId::noSym }, // Whole rectangle shaped LA missing in SMuFL
|
|
|
|
{"noteheads.s1la", SymId::noteShapeSquareWhite },
|
|
|
|
{"noteheads.s2la", SymId::noteShapeSquareBlack },
|
|
|
|
// {"noteheads.s0ti", SymId::noSym }, // Whole rounded-triangle shaped TI missing in SMuFL
|
|
|
|
{"noteheads.u1ti", SymId::noteShapeTriangleRoundWhite },
|
|
|
|
{"noteheads.d1ti", SymId::noteShapeTriangleRoundWhite },
|
|
|
|
{"noteheads.u2ti", SymId::noteShapeTriangleRoundBlack },
|
|
|
|
{"noteheads.d2ti", SymId::noteShapeTriangleRoundBlack },
|
|
|
|
// {"noteheads.s0sol", SymId::noSym }, // Whole rounded shaped SOL missing in SMuFL
|
|
|
|
{"noteheads.s1sol", SymId::noteShapeRoundWhite },
|
|
|
|
{"noteheads.s2sol", SymId::noteShapeRoundBlack },
|
|
|
|
|
|
|
|
{"scripts.ufermata", SymId::fermataAbove },
|
|
|
|
{"scripts.dfermata", SymId::fermataBelow },
|
|
|
|
{"scripts.snappizzicato", SymId::pluckedSnapPizzicatoAbove },
|
|
|
|
{"scripts.ushortfermata", SymId::fermataShortAbove },
|
|
|
|
{"scripts.dshortfermata", SymId::fermataShortBelow },
|
|
|
|
{"scripts.ulongfermata", SymId::fermataLongAbove },
|
|
|
|
{"scripts.dlongfermata", SymId::fermataLongBelow },
|
|
|
|
{"scripts.uverylongfermata", SymId::fermataVeryLongAbove },
|
|
|
|
{"scripts.dverylongfermata", SymId::fermataVeryLongBelow },
|
|
|
|
{"scripts.thumb", SymId::stringsThumbPosition },
|
|
|
|
{"scripts.sforzato", SymId::articAccent },
|
|
|
|
// {"scripts.espr", SymId::noSym }, // <> 'espressivo' removed and not present in SMuFL
|
|
|
|
{"scripts.staccato", SymId::articStaccato },
|
|
|
|
{"scripts.ustaccatissimo", SymId::articStaccatissimoAbove },
|
|
|
|
{"scripts.dstaccatissimo", SymId::articStaccatissimoBelow },
|
|
|
|
{"scripts.tenuto", SymId::articTenuto },
|
|
|
|
{"scripts.uportato", SymId::articTenutoSlurAbove },
|
|
|
|
{"scripts.dportato", SymId::articTenutoSlurBelow },
|
|
|
|
{"scripts.umarcato", SymId::articMarcatoAbove },
|
|
|
|
{"scripts.dmarcato", SymId::articMarcatoBelow },
|
|
|
|
{"scripts.open", SymId::brassMuteOpen },
|
|
|
|
{"scripts.halfopen", SymId::brassMuteHalfClosed }, // CHECK!!!
|
|
|
|
{"scripts.stopped", SymId::brassMuteClosed },
|
|
|
|
{"scripts.upbow", SymId::stringsUpBow },
|
|
|
|
{"scripts.downbow", SymId::stringsDownBow },
|
|
|
|
{"scripts.reverseturn", SymId::ornamentTurnInverted },
|
|
|
|
{"scripts.turn", SymId::ornamentTurn },
|
|
|
|
{"scripts.trill", SymId::ornamentTrill },
|
|
|
|
{"scripts.upedalheel", SymId::keyboardPedalHeel1 },
|
|
|
|
{"scripts.dpedalheel", SymId::keyboardPedalHeel2 },
|
|
|
|
{"scripts.upedaltoe", SymId::keyboardPedalToe1 },
|
|
|
|
{"scripts.dpedaltoe", SymId::keyboardPedalToe2 },
|
|
|
|
{"scripts.flageolet", SymId::stringsHarmonic },
|
|
|
|
|
|
|
|
{"scripts.segno", SymId::segno },
|
|
|
|
{"scripts.varsegno", SymId::segnoSerpent1 }, // not identical to SMuFL, but very similar
|
|
|
|
{"scripts.coda", SymId::coda },
|
|
|
|
{"scripts.varcoda", SymId::codaSquare },
|
|
|
|
{"scripts.rcomma", SymId::breathMark },
|
|
|
|
// {"scripts.lcomma", SymId::noSym }, // reversed breath missing in SMuFL
|
|
|
|
// {"scripts.rvarcomma", SymId::noSym }, // straight breath missing in SMuFL
|
|
|
|
// {"scripts.lvarcomma", SymId::noSym }, // reversed straight breath missing in SMuFL
|
|
|
|
{"scripts.arpeggio", SymId::wiggleArpeggiatoUp },
|
|
|
|
{"scripts.trill_element", SymId::wiggleTrill },
|
|
|
|
{"scripts.arpeggio.arrow.M1", SymId::wiggleArpeggiatoDownArrow },
|
|
|
|
{"scripts.arpeggio.arrow.1", SymId::wiggleArpeggiatoUpArrow },
|
|
|
|
{"scripts.trilelement", SymId::wiggleTrillFastest },
|
|
|
|
{"scripts.prall", SymId::ornamentMordent },
|
|
|
|
{"scripts.mordent", SymId::ornamentMordentInverted },
|
|
|
|
{"scripts.prallprall", SymId::ornamentTremblement },
|
|
|
|
{"scripts.prallmordent", SymId::ornamentPrallMordent },
|
|
|
|
{"scripts.upprall", SymId::ornamentUpPrall },
|
|
|
|
{"scripts.upmordent", SymId::ornamentUpMordent },
|
|
|
|
{"scripts.pralldown", SymId::ornamentPrallDown },
|
|
|
|
{"scripts.downprall", SymId::ornamentDownPrall },
|
|
|
|
{"scripts.downmordent", SymId::ornamentDownMordent },
|
|
|
|
{"scripts.prallup", SymId::ornamentPrallUp },
|
|
|
|
{"scripts.lineprall", SymId::ornamentLinePrall },
|
|
|
|
{"scripts.schleifer", SymId::ornamentPrecompSlide },
|
|
|
|
// {"scripts.caesura.straight", SymId::noSym }, // straight ceasura missing in SMuFL
|
|
|
|
{"scripts.caesura.curved", SymId::caesura },
|
|
|
|
|
|
|
|
{"flags.u3", SymId::flag8thUp },
|
|
|
|
{"flags.u4", SymId::flag16thUp },
|
|
|
|
{"flags.u5", SymId::flag32ndUp },
|
|
|
|
{"flags.u6", SymId::flag64thUp },
|
|
|
|
{"flags.u7", SymId::flag128thUp },
|
|
|
|
{"flags.d3", SymId::flag8thDown },
|
|
|
|
{"flags.ugrace", SymId::graceNoteSlashStemUp },
|
|
|
|
{"flags.dgrace", SymId::graceNoteSlashStemDown },
|
|
|
|
{"flags.d4", SymId::flag16thDown },
|
|
|
|
{"flags.d5", SymId::flag32ndDown },
|
|
|
|
{"flags.d6", SymId::flag16thDown },
|
|
|
|
{"flags.d7", SymId::flag128thDown },
|
|
|
|
|
|
|
|
{"clefs.C", SymId::cClef },
|
|
|
|
// {"clefs.C_change", SymId::noSym }, // change clefs missing in SMuFL
|
|
|
|
{"clefs.F", SymId::fClef },
|
|
|
|
// {"clefs.F_change", SymId::noSym }, // change clefs missing in SMuFL
|
|
|
|
{"clefs.G", SymId::gClef },
|
|
|
|
// {"clefs.G_change", SymId::noSym }, // change clefs missing in SMuFL
|
|
|
|
{"clefs.percussion", SymId::unpitchedPercussionClef1 },
|
|
|
|
// {"clefs.percussion_change", SymId::noSym }, // change clefs missing in SMuFL
|
|
|
|
{"clefs.tab", SymId::sixStringTabClef },
|
|
|
|
// {"clefs.tab_change", SymId::noSym }, // change clefs missing in SMuFL, but fourStringTabclef could be used
|
|
|
|
{"timesig.C44", SymId::timeSigCommon },
|
|
|
|
{"timesig.C22", SymId::timeSigCutCommon },
|
|
|
|
{"pedal.*", SymId::keyboardPedalUp },
|
|
|
|
// {"pedal.M", SymId::noSym }, // "Ped." components missing in SMuFL
|
|
|
|
// {"pedal..", SymId::noSym }, // "
|
|
|
|
// {"pedal.P", SymId::noSym }, // "
|
|
|
|
// {"pedal.d", SymId::noSym }, // "
|
|
|
|
// {"pedal.e", SymId::noSym }, // "
|
|
|
|
{"pedal.Ped", SymId::keyboardPedalPed },
|
|
|
|
{"brackettips.uright", SymId::bracketTop },
|
|
|
|
{"brackettips.dright", SymId::bracketBottom },
|
|
|
|
{"brackettips.uleft", SymId::reversedBracketTop },
|
|
|
|
{"brackettips.dleft", SymId::reversedBracketBottom },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"accordion.accDot", SymId::accdnCombDot },
|
|
|
|
{"accordion.accFreebase", SymId::accdnCombLH2RanksEmpty },
|
|
|
|
{"accordion.accStdbase", SymId::accdnCombRH4RanksEmpty },
|
|
|
|
{"accordion.accBayanbase", SymId::accdnCombLH3RanksEmptySquare },
|
|
|
|
// {"accordion.accOldEE", SymId::noSym }, // missing in SMuFL
|
|
|
|
{"accordion.accDiscant", SymId::accdnCombRH3RanksEmpty },
|
2013-11-18 00:57:35 +01:00
|
|
|
// {"accordion.push", SymId::???? },
|
|
|
|
// {"accordion.pull", SymId::???? },
|
|
|
|
// {"space", SymId::noSym }, // punctuation missing in SMuFL?
|
|
|
|
// {"plus", SymId::noSym }, // "
|
|
|
|
// {"comma", SymId::noSym }, // "
|
|
|
|
// {"hyphen", SymId::noSym }, // "
|
|
|
|
// {"period", SymId::noSym }, // "
|
|
|
|
{"zero", SymId::timeSig0 },
|
|
|
|
{"one", SymId::timeSig1 },
|
|
|
|
{"two", SymId::timeSig2 },
|
|
|
|
{"three", SymId::timeSig3 },
|
|
|
|
{"four", SymId::timeSig4 },
|
|
|
|
{"five", SymId::timeSig5 },
|
|
|
|
{"six", SymId::timeSig6 },
|
|
|
|
{"seven", SymId::timeSig7 },
|
|
|
|
{"eight", SymId::timeSig8 },
|
|
|
|
{"nine", SymId::timeSig9 },
|
|
|
|
{"f", SymId::dynamicForte },
|
|
|
|
{"m", SymId::dynamicMezzo },
|
2013-11-19 11:24:45 +01:00
|
|
|
{"p", SymId::dynamicPiano },
|
|
|
|
{"r", SymId::dynamicRinforzando },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"s", SymId::dynamicSforzando },
|
2013-11-18 00:57:35 +01:00
|
|
|
{"z", SymId::dynamicZ },
|
2013-11-29 00:37:48 +01:00
|
|
|
{"noteheads.uM2alt", SymId::noteLongaSquareUp },
|
|
|
|
{"noteheads.dM2alt", SymId::noteLongaSquareDown },
|
|
|
|
{"noteheads.sM1alt", SymId::noteheadDoubleWholeSquare},
|
|
|
|
{"timesig.Cdot", SymId::mensuralProlation5 },
|
|
|
|
{"timesig.O", SymId::mensuralProlation2 },
|
|
|
|
{"timesig.Ocut", SymId::mensuralProlation3 },
|
|
|
|
{"timesig.Odot", SymId::mensuralProlation1 },
|
2013-11-18 00:57:35 +01:00
|
|
|
{"clefs.tab2", SymId::sixStringTabClefSerif }
|
|
|
|
};
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// sym2pixmap
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QPixmap ScoreFont::sym2pixmap(SymId id, qreal mag)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
QString string = toString(id);
|
2013-11-11 15:11:28 +01:00
|
|
|
QRectF bb(bbox(id, mag));
|
2013-11-06 15:58:05 +01:00
|
|
|
bb.setRect(bb.x() * mag, bb.y() * mag, bb.width() * mag, bb.height() * mag);
|
|
|
|
|
|
|
|
bb.adjust(-5, -5, 5, 5);
|
|
|
|
int w = lrint(bb.width());
|
|
|
|
int h = lrint(bb.height());
|
|
|
|
QPixmap pm(w, h);
|
|
|
|
pm.fill(QColor(0, 0, 0, 0));
|
|
|
|
QPainter painter;
|
|
|
|
painter.begin(&pm);
|
|
|
|
painter.setPen(Qt::black);
|
|
|
|
draw(id, &painter, mag, -bb.topLeft() + QPointF(2.0, 2.0));
|
|
|
|
painter.end();
|
|
|
|
return pm;
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-02-13 14:04:03 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// draw
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2014-01-22 15:50:01 +01:00
|
|
|
void ScoreFont::draw(const QString& s, QPainter* painter, qreal mag, const QPointF& pos) const
|
2013-02-13 14:04:03 +01:00
|
|
|
{
|
|
|
|
qreal imag = 1.0 / mag;
|
|
|
|
painter->scale(mag, mag);
|
2014-02-28 12:00:32 +01:00
|
|
|
painter->setFont(font());
|
2014-01-22 15:50:01 +01:00
|
|
|
painter->drawText(pos * imag, s);
|
2013-02-13 14:04:03 +01:00
|
|
|
painter->scale(imag, imag);
|
|
|
|
}
|
|
|
|
|
2014-01-22 15:50:01 +01:00
|
|
|
void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos) const
|
2013-11-19 12:12:07 +01:00
|
|
|
{
|
2014-01-22 15:50:01 +01:00
|
|
|
draw(toString(id), painter, mag, pos);
|
2013-11-19 12:12:07 +01:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, int n) const
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-11 15:11:28 +01:00
|
|
|
QString s = toString(id);
|
|
|
|
QString d;
|
|
|
|
for (int i = 0; i < n; ++i)
|
|
|
|
d += s;
|
2014-01-22 15:50:01 +01:00
|
|
|
draw(d, painter, mag, pos);
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// symToHtml
|
|
|
|
// transform symbol into html code suitable
|
|
|
|
// for QDocument->setHtml()
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QString ScoreFont::symToHtml(SymId s, int leftMargin, const TextStyle* ts, qreal _spatium)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
|
|
|
qreal size;
|
|
|
|
if (ts) {
|
|
|
|
size = ts->font(_spatium).pointSizeF();
|
|
|
|
}
|
|
|
|
else {
|
2014-02-28 12:00:32 +01:00
|
|
|
size = _font->pixelSize();
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 12:00:32 +01:00
|
|
|
QString family = _font->family();
|
2012-05-26 14:26:10 +02:00
|
|
|
return QString(
|
|
|
|
"<data>"
|
|
|
|
"<html>"
|
|
|
|
"<head>"
|
|
|
|
"<meta name=\"qrichtext\" content=\"1\" >"
|
|
|
|
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
|
|
|
|
"<style type=\"text/css\">"
|
|
|
|
"p, li { white-space: pre-wrap; }"
|
|
|
|
"</style>"
|
|
|
|
"</head>"
|
|
|
|
"<body style=\" font-family:'%1'; font-size:%2pt;\">"
|
|
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
|
|
|
|
"&#%4;"
|
|
|
|
"</p>"
|
|
|
|
"</body>"
|
|
|
|
"</html>"
|
2013-11-11 15:11:28 +01:00
|
|
|
"</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QString ScoreFont::symToHtml(SymId s1, SymId s2, int leftMargin)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2014-02-28 12:00:32 +01:00
|
|
|
qreal size = _font->pixelSize();
|
|
|
|
QString family = _font->family();
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
return QString(
|
|
|
|
"<data>"
|
|
|
|
"<html>"
|
|
|
|
"<head>"
|
|
|
|
"<meta name=\"qrichtext\" content=\"1\" >"
|
|
|
|
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
|
|
|
|
"<style type=\"text/css\">"
|
|
|
|
"p, li { white-space: pre-wrap; }"
|
|
|
|
"</style>"
|
|
|
|
"</head>"
|
|
|
|
"<body style=\" font-family:'%1'; font-size:%2pt;\">"
|
|
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
|
|
|
|
"&#%4;&#%5;"
|
|
|
|
"</p>"
|
|
|
|
"</body>"
|
|
|
|
"</html>"
|
2013-11-11 15:11:28 +01:00
|
|
|
"</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s1)).arg(toString(s2));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-30 12:46:15 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// id2name
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
const char* Sym::id2name(SymId id)
|
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
return symNames[int(id)];
|
2013-08-30 12:46:15 +02:00
|
|
|
}
|
2012-09-08 11:33:46 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// initScoreFonts
|
|
|
|
// load default score font
|
2012-09-08 11:33:46 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
void initScoreFonts()
|
2012-09-08 11:33:46 +02:00
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
int index = 0;
|
2013-11-12 15:15:48 +01:00
|
|
|
for (auto i : Sym::symNames)
|
|
|
|
Sym::lnhash.insert(i, SymId(index++));
|
2013-11-06 15:58:05 +01:00
|
|
|
ScoreFont::fontFactory("Bravura"); // load reference font
|
2013-11-18 00:57:35 +01:00
|
|
|
for (oldName i : oldNames)
|
|
|
|
Sym::lonhash.insert(i.name, SymId(i.symId));
|
2012-09-08 11:33:46 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-11 15:11:28 +01:00
|
|
|
// codeToString
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
static QString codeToString(int code)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-11 15:11:28 +01:00
|
|
|
QString s;
|
|
|
|
if (code & 0xffff0000) {
|
|
|
|
s = QChar(QChar::highSurrogate(code));
|
|
|
|
s += QChar(QChar::lowSurrogate(code));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-11-11 15:11:28 +01:00
|
|
|
else
|
|
|
|
s = QChar(code);
|
|
|
|
return s;
|
|
|
|
}
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// load
|
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
void ScoreFont::load()
|
|
|
|
{
|
2013-11-12 18:07:35 +01:00
|
|
|
#if !defined(Q_OS_MAC) && !defined(Q_OS_IOS)
|
2013-11-19 16:06:08 +01:00
|
|
|
if (-1 == QFontDatabase::addApplicationFont(_fontPath + _filename)) {
|
|
|
|
qDebug("ScoreFont: fatal error: cannot load internal font <%s>", qPrintable(_fontPath + _filename));
|
|
|
|
if (!QFile(_fontPath + _filename).exists())
|
2013-11-12 15:15:48 +01:00
|
|
|
qDebug(" file not found");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!MScore::debugMode)
|
|
|
|
exit(-1);
|
|
|
|
}
|
2013-11-12 18:07:35 +01:00
|
|
|
#endif
|
2014-02-28 12:00:32 +01:00
|
|
|
_font = new QFont();
|
|
|
|
_font->setWeight(QFont::Normal); // if not set we get system default
|
|
|
|
_font->setItalic(false);
|
|
|
|
_font->setFamily(_family);
|
|
|
|
_font->setStyleStrategy(QFont::NoFontMerging);
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
// horizontal hinting is bad as note hooks do not attach to stems
|
|
|
|
// properly at some magnifications
|
2014-02-28 12:00:32 +01:00
|
|
|
_font->setHintingPreference(QFont::PreferVerticalHinting);
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
qreal size = 20.0 * MScore::DPI / PPI;
|
2014-02-28 12:00:32 +01:00
|
|
|
_font->setPixelSize(lrint(size));
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-19 16:06:08 +01:00
|
|
|
QFile fi(_fontPath + "glyphnames.json");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!fi.open(QIODevice::ReadOnly))
|
|
|
|
qDebug("ScoreFont: open glyph names file <%s> failed", qPrintable(fi.fileName()));
|
|
|
|
QJsonParseError error;
|
|
|
|
QJsonObject o = QJsonDocument::fromJson(fi.readAll(), &error).object();
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
2014-01-13 12:52:29 +01:00
|
|
|
qDebug("Json parse error in <%s>(offset: %d): %s", qPrintable(fi.fileName()),
|
|
|
|
error.offset, qPrintable(error.errorString()));
|
2013-11-11 15:11:28 +01:00
|
|
|
|
2014-02-28 12:00:32 +01:00
|
|
|
_fm = new QFontMetricsF(font());
|
2013-11-11 15:11:28 +01:00
|
|
|
for (auto i : o.keys()) {
|
|
|
|
bool ok;
|
|
|
|
int code = o.value(i).toObject().value("codepoint").toString().mid(2).toInt(&ok, 16);
|
|
|
|
if (!ok)
|
|
|
|
qDebug("codepoint not recognized for glyph %s", qPrintable(i));
|
|
|
|
if (Sym::lnhash.contains(i)) {
|
|
|
|
SymId symId = Sym::lnhash.value(i);
|
|
|
|
Sym* sym = &_symbols[int(symId)];
|
|
|
|
sym->setString(codeToString(code));
|
2014-02-13 12:08:21 +01:00
|
|
|
sym->setWidth(_fm->width(sym->string()));
|
2014-02-13 15:32:57 +01:00
|
|
|
sym->setBbox(QRectF(_fm->tightBoundingRect(sym->string())));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-12-02 09:31:10 +01:00
|
|
|
// else
|
|
|
|
// qDebug("unknown glyph: %s", qPrintable(i));
|
2013-11-11 15:11:28 +01:00
|
|
|
}
|
|
|
|
fi.close();
|
2013-11-19 16:06:08 +01:00
|
|
|
fi.setFileName(_fontPath + "metadata.json");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!fi.open(QIODevice::ReadOnly))
|
|
|
|
qDebug("ScoreFont: open glyph metadata file <%s> failed", qPrintable(fi.fileName()));
|
|
|
|
o = QJsonDocument::fromJson(fi.readAll(), &error).object();
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
2014-01-13 12:52:29 +01:00
|
|
|
qDebug("Json parse error in <%s>(offset: %d): %s", qPrintable(fi.fileName()),
|
|
|
|
error.offset, qPrintable(error.errorString()));
|
2013-11-11 15:11:28 +01:00
|
|
|
QJsonObject oo = o.value("glyphs").toObject();
|
|
|
|
for (auto i : oo.keys()) {
|
|
|
|
QJsonObject ooo = oo.value(i).toObject();
|
|
|
|
SymId symId = Sym::lnhash.value(i, SymId::noSym);
|
|
|
|
if (symId == SymId::noSym)
|
2013-12-30 10:04:42 +01:00
|
|
|
qDebug("ScoreFont: symId not found <%s> in <%s>", qPrintable(i), qPrintable(fi.fileName()));
|
2013-11-11 15:11:28 +01:00
|
|
|
Sym* sym = &_symbols[int(symId)];
|
|
|
|
for (auto i : ooo.keys()) {
|
|
|
|
if (i == "stemDownNW") {
|
|
|
|
//qreal x = ooo.value(i).toArray().at(0).toDouble();
|
|
|
|
//qreal y = ooo.value(i).toArray().at(1).toDouble();
|
|
|
|
}
|
|
|
|
else if (i == "stemUpSE") {
|
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble();
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble();
|
|
|
|
sym->setAttach(QPointF(4.0 * x * MScore::DPI/PPI, 4.0 * -y * MScore::DPI/PPI));
|
2013-05-03 09:58:33 +02:00
|
|
|
}
|
|
|
|
}
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-11-11 15:11:28 +01:00
|
|
|
// create missing composed glyphs
|
|
|
|
|
|
|
|
struct Composed {
|
|
|
|
SymId id;
|
|
|
|
std::vector<SymId> rids;
|
|
|
|
} composed[] = {
|
|
|
|
|
|
|
|
{ SymId::ornamentPrallMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
} },
|
2013-11-13 15:08:08 +01:00
|
|
|
{ SymId::ornamentUpPrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentBottomLeftConcaveStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentUpMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentBottomLeftConcaveStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentPrallDown,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentBottomRightConcaveStroke,
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentDownPrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentDownMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentPrallUp,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentTopRightConvexStroke,
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentLinePrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}}
|
2013-11-11 15:11:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
for (const Composed& c : composed) {
|
|
|
|
if (!_symbols[int(c.id)].isValid()) {
|
|
|
|
Sym* sym = &_symbols[int(c.id)];
|
|
|
|
QString s;
|
|
|
|
for (SymId id : c.rids)
|
|
|
|
s += _symbols[int(id)].string();
|
|
|
|
sym->setString(s);
|
2014-03-14 00:18:39 +01:00
|
|
|
sym->setBbox(QRectF(_fm->tightBoundingRect(s)));
|
2013-11-11 15:11:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
loaded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// fontFactory
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
ScoreFont* ScoreFont::fontFactory(QString s)
|
|
|
|
{
|
|
|
|
ScoreFont* f = 0;
|
|
|
|
for (ScoreFont& sf : _scoreFonts) {
|
|
|
|
if (sf.name().toLower() == s.toLower()) { // ignore letter case
|
|
|
|
f = &sf;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Q_ASSERT(f);
|
|
|
|
|
|
|
|
if (!f->loaded)
|
|
|
|
f->load();
|
2013-11-06 15:58:05 +01:00
|
|
|
return f;
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-11-08 10:33:08 +01:00
|
|
|
|
2014-01-23 18:49:07 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// fallbackFont
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
ScoreFont* ScoreFont::fallbackFont()
|
|
|
|
{
|
|
|
|
ScoreFont* f = &_scoreFonts[FALLBACK_FONT];
|
|
|
|
if (!f->loaded)
|
|
|
|
f->load();
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// bbox
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
const QRectF ScoreFont::bbox(SymId id, qreal mag) const
|
|
|
|
{
|
2014-02-13 15:32:57 +01:00
|
|
|
QRectF r = sym(id).bbox();
|
2013-11-11 15:11:28 +01:00
|
|
|
return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
|
|
|
|
}
|
|
|
|
|
2013-11-19 12:12:07 +01:00
|
|
|
const QRectF ScoreFont::bbox(const QString& s, qreal mag) const
|
|
|
|
{
|
|
|
|
QRectF r(_fm->tightBoundingRect(s));
|
|
|
|
return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
|
|
|
|
}
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
}
|
|
|
|
|