|
enum class | ChannelSwitchTarget {
Current
, ToLayer1
, ToLayer2
, ToLayer3
,
ToLayer4
, ToChord
, ToExpression
} |
| The values for "On Playback Affect". The target channels are specified in the Score Manager dropdown for staves. More...
|
|
enum class | PlaybackStart { BeginningOfMeasure
, AlignmentPoint
, PositionInMeasure
} |
| The choice where to start playback. More...
|
|
enum class | ShowStaffList { ScoreAndPart
, ScoreOnly
, PartOnly
} |
| Where to show the assignment (when there is no staff list.) More...
|
|
enum class | ShareMode { All
, Partial
, None
} |
| Describes how this instance is shared between part and score. More...
|
|
using | SharedNodes = std::set< std::string > |
| The container type for shared nodes.
|
|
|
| MeasureExprAssign (const DocumentWeakPtr &document, Cmper ID, ShareMode shareMode, Cmper cmper, Inci inci) |
| Constructor function.
|
|
MusxInstance< TextExpressionDef > | getTextExpression () const |
| Gets the assigned text expression.
|
|
MusxInstance< ShapeExpressionDef > | getShapeExpression () const |
| Gets the assigned shape expression.
|
|
void | integrityCheck (const std::shared_ptr< Base > &ptrToThis) override |
| Allows a class to determine if it has been properly contructed by the factory and fix issues that it can, such as creating default instances of contained classes.
|
|
| OthersBase (const OthersBase &)=default |
| explicit default copy constructor
|
|
| OthersBase (OthersBase &&) noexcept=default |
| explicit default move constructor
|
|
Cmper | getCmper () const |
| Gets the cmper key value.
|
|
std::optional< Inci > | getInci () const |
| Gets the optional array index (inci ).
|
|
Cmper | getRequestedPartId () const |
| If this instance was retrieved from an object pool, it contains the part ID that was used to retrieve it. If this value is different than getSourcePartId, then this instance is a copy of the pool instance.
|
|
virtual | ~Base () noexcept(false)=default |
| Virtual destructor for polymorphic behavior.
|
|
DocumentPtr | getDocument () const |
| Gets a reference to the Document.
|
|
Cmper | getSourcePartId () const |
| Gets the source partId for this instance. If an instance is fully shared with the score, the source is SCORE_PARTID. If an instance is partially shared or non shared, the source is the ID of the part that sourced it.
|
|
ShareMode | getShareMode () const |
| Gets the sharing mode for this instance.
|
|
const SharedNodes & | getUnlinkedNodes () const |
| Gets the unlinked nodes for this instance. (Only populated for ShareMode::Partial )
|
|
void | addUnlinkedNode (const std::string &nodeName) |
| Adds a shared node for this instance.
|
|
virtual bool | requireAllFields () const |
| Specifies if the parser should alert (print or throw) when an unknown xml tag is found for this class.
|
|
|
Cmper | textExprId {} |
| The Cmper of a text expression (xml node is <textExprID> )
|
|
Cmper | shapeExprId {} |
| The Cmper of a shape expression (xml node is <shapeExprID> )
|
|
Evpu | horzEvpuOff {} |
| Horizontal Evpu offset from the default position.
|
|
Edu | eduPosition {} |
| Horizontal Edu position (xml node is <horzEduOff> )
|
|
Evpu | vertEvpuOff {} |
| Vertical Evpu offset from the default position (xml node is <vertOff> )
|
|
StaffCmper | staffAssign {} |
| The staff to which this expression is assigned, or -1 if it is assigned to top staff and -2 if assigned to bottom staff.
|
|
int | layer {} |
| The 1-based layer number (1..4) to which this expression is assigned. (0 = all layers.)
|
|
ChannelSwitchTarget | channelSwitch {} |
| "On Playback Affect" value.
|
|
bool | dontScaleWithEntry {} |
| Inverse of "Scale Expression with Attached Note".
|
|
PlaybackStart | playbackStart {} |
| Where to start playback.
|
|
ShowStaffList | showStaffList {} |
| "Show On Score and Part(s)|Score Only|Part(s) Only".
|
|
bool | createdByHp {} |
| This assignment was created by Finale's smart playback engine.
|
|
bool | hidden {} |
| True if the expression is hidden.
|
|
int | staffGroup {} |
| Assignment is part of a group of assignments associated with a staff list and should be modified as a group.
|
|
Cmper | staffList {} |
|
int | graceNoteIndex {} |
| 1-based index from leftmost grace note. 0 = main note.
|
|
int | rehearsalMarkOffset {} |
| Restarts the rehearsal mark sequence at this 1-based sequence value. If this is zero, the sequence continues normally.
|
|
Assigns a TextExpressionDef or ShapeExpressionDef to a measure.
Only one of textExprId or shapeExprId is non-zero.
The Cmper for a MeasureExprAssign is the Cmper of the Measure to which it is attached.