 |
Verovio
Source code documentation
|
8 #ifndef __VRV_TIME_INTERFACE_H__
9 #define __VRV_TIME_INTERFACE_H__
11 #include "atts_shared.h"
12 #include "interface.h"
20 class PrepareStaffCurrentTimeSpanningFunctor;
21 class PrepareTimePointingFunctor;
22 class PrepareTimeSpanningFunctor;
23 class PrepareTimestampsFunctor;
24 class ResetDataFunctor;
44 void Reset()
override;
45 InterfaceId
IsInterface()
const override {
return INTERFACE_TIME_POINT; }
55 const LayerElement *GetStart()
const {
return m_start; }
128 std::string m_startID;
150 void Reset()
override;
151 InterfaceId
IsInterface()
const override {
return INTERFACE_TIME_SPANNING; }
161 const LayerElement *GetEnd()
const {
return m_end; }
167 bool SetStartAndEnd(LayerElement *element);
172 bool HasStartAndEnd()
const {
return (m_start && m_end); }
198 bool IsOrdered(
const LayerElement *start,
const LayerElement *end)
const;
207 StaffAlignment *alignment, curvature_CURVEDIR curveDir,
bool &skipAbove,
bool &skipBelow);
220 FunctorCode InterfacePrepareTimestamps(PrepareTimestampsFunctor &functor, Object *
object)
override;
221 FunctorCode InterfacePrepareStaffCurrentTimeSpanning(
222 PrepareStaffCurrentTimeSpanningFunctor &functor, Object *
object);
223 FunctorCode InterfaceResetData(ResetDataFunctor &functor, Object *
object)
override;
This class matches the start for TimePointingInterface elements (such as fermata or harm).
Definition: preparedatafunctor.h:414
void SetIDStr()
Extract the fragment of the start or end @xml:id if given.
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
Measure * GetStartMeasure()
Return the start measure of the TimePointInterface.
void GetCrossStaffOverflows(StaffAlignment *alignment, curvature_CURVEDIR curveDir, bool &skipAbove, bool &skipBelow)
Check if the slur or tie needs to be taken into account as overflow above or below in case of cross-s...
FunctorCode InterfacePrepareTimeSpanning(PrepareTimeSpanningFunctor &functor, Object *object)
We have functor code in the interface for avoiding code duplication in each implementation class.
This class represents a basic object.
Definition: object.h:59
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
bool VerifyMeasure(const Object *owner) const
Return true if the interface owner is encoded in the measure of its start element Display a warning i...
FunctorCode InterfacePrepareTimePointing(PrepareTimePointingFunctor &functor, Object *object)
We have functor code in the interface for avoiding code duplication in each implementation class.
bool SetStartOnly(LayerElement *start)
Set first LayerElement by verifying it is the correct one.
This class matches start and end for TimeSpanningInterface elements with tstamp(2) attributes.
Definition: preparedatafunctor.h:524
bool IsOrdered() const
Check if the end points are temporally ordered @Return true if end temporally occurs after start.
bool IsOnStaff(int n) const
Return true if the TimePointInterface occurs on the staff Looks that the parent staff if the using @...
std::vector< const Staff * > GetTstampStaves(const Measure *measure, const Object *object) const
Return a vector of staves looking at the @staff attribute or at the parent staff of the @startid.
void Reset() override
Virtual reset method.
void AddStaff(int n)
Add a staff n to the AttStaffident vector (if not already there)
Measure * GetEndMeasure()
Return the end measure of the TimePointInterface.
bool HasStart() const
Return true if a start is given (@startid or @tstamp)
Definition: timeinterface.h:71
bool IsSpanningMeasures() const
Return true if the element is spanning over two or more measures.
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: timeinterface.h:151
This class is an interface for spanning elements, such as slur, hairpin, etc.
Definition: timeinterface.h:141
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
This class resets the drawing values before calling PrepareData after changes.
Definition: resetfunctor.h:22
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: timeinterface.h:45
void Reset() override
Virtual reset method.
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35