 |
Verovio
Source code documentation
|
8 #ifndef __VRV_CHORD_H__
9 #define __VRV_CHORD_H__
11 #include "atts_shared.h"
12 #include "drawinginterface.h"
13 #include "durationinterface.h"
14 #include "layerelement.h"
44 public AttVisibility {
54 void Reset()
override;
55 std::string GetClassName()
const override {
return "chord"; }
61 DurationInterface *GetDurationInterface()
override {
return vrv_cast<DurationInterface *>(
this); }
63 const DurationInterface *GetDurationInterface()
const override {
return vrv_cast<const DurationInterface *>(
this); }
64 StemmedDrawingInterface *GetStemmedDrawingInterface()
override {
return vrv_cast<StemmedDrawingInterface *>(
this); }
65 const StemmedDrawingInterface *GetStemmedDrawingInterface()
const override
67 return vrv_cast<const StemmedDrawingInterface *>(
this);
95 Note *GetBottomNote();
96 const Note *GetBottomNote()
const;
98 int GetYBottom()
const;
116 const Layer **layerBelow = NULL)
const;
143 Point GetStemDownNW(
const Doc *doc,
int staffSize,
bool isCueSize)
const override;
144 int CalcStemLenInThirdUnits(
const Staff *staff, data_STEMDIRECTION stemDir)
const override;
167 bool &isUnison,
bool &stemSameas)
override;
191 FunctorCode AcceptEnd(
Functor &functor)
override;
192 FunctorCode AcceptEnd(
ConstFunctor &functor)
const override;
216 void FilterList(ListOfConstObjects &childList)
const override;
224 mutable std::list<ChordNoteGroup *> m_noteGroups;
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
bool HasNoteWithDots() const
Return true if the chord has at least one note with a @dots > 0.
Point GetStemUpSE(const Doc *doc, int staffSize, bool isCueSize) const override
Get the stem up / stem down attachment point.
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
Object * Clone() const override
Method call for copying child classes.
Definition: chord.h:53
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
Note * GetTopNote()
Return the top or bottom note or their Y position.
This class is an interface for elements with duration, such as notes and rests.
Definition: drawinginterface.h:33
This class represents a basic object.
Definition: object.h:59
bool HasAdjacentNotesInStaff(const Staff *staff) const
Return true if the chord has two notes with 1 diatonic step difference in the specific staff.
MapOfNoteLocs CalcNoteLocations(NotePredicate predicate=NULL) const override
The note locations w.r.t.
int GetXMin() const
Return min or max note X position.
void AddChild(Object *object) override
Overwritten method for chord.
void GetYExtremes(int &yMax, int &yMin) const
Return the maximum and minimum Y positions of the notes in the chord.
void FilterList(ListOfConstObjects &childList) const override
Filter the flat list and keep only Note elements.
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
bool IsSupportedChild(ClassId classId) override
Add an element (only note supported) to a chord.
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
bool IsVisible() const
Check if the chord or one of its children is visible.
void GetCrossStaffExtremes(Staff *&staffAbove, Staff *&staffBelow, Layer **layerAbove=NULL, Layer **layerBelow=NULL)
Return the cross staff above or below (if any).
This class models the MEI <note> element.
Definition: note.h:47
This abstract class is the base class for all const functors.
Definition: functor.h:126
void ResetAccidList()
Returns list of notes that have accidentals.
bool HasToBeAligned() const override
Override the method since alignment is required.
Definition: chord.h:72
This class is an interface for MEI stemmed element.
Definition: drawinginterface.h:353
void CalculateNoteGroups()
Recalculate the m_noteGroups vector.
std::list< const Note * > GetAdjacentNotesList(const Staff *staff, int loc) const
Helper to get list of notes that are adjacent to the specified location.
void ClearNoteGroups() const
Clear the m_noteGroups vector and delete all the objects.
MapOfDotLocs CalcDotLocations(int layerCount, bool primary) const override
The dot locations w.r.t.
bool HasCrossStaff() const override
Return true if the chord has some cross staff notes.
int AdjustOverlappingLayers(const Doc *doc, const std::vector< LayerElement * > &otherElements, bool areDotsAdjusted, bool &isUnison, bool &stemSameas) override
Helper to adjust overlapping layers for chords Returns the shift of the adjustment.
int PositionInChord(const Note *note) const
Return information about a note's position in the chord.
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
Simple class for representing points.
Definition: devicecontextbase.h:203