 |
Verovio
Source code documentation
|
8 #ifndef __VRV_TABGRP_H__
9 #define __VRV_TABGRP_H__
11 #include "durationinterface.h"
12 #include "layerelement.h"
33 void Reset()
override;
34 std::string GetClassName()
const override {
return "tabGrp"; }
40 DurationInterface *GetDurationInterface()
override {
return vrv_cast<DurationInterface *>(
this); }
42 const DurationInterface *GetDurationInterface()
const override {
return vrv_cast<const DurationInterface *>(
this); }
56 Note *GetBottomNote();
57 const Note *GetBottomNote()
const;
59 int GetYBottom()
const;
69 FunctorCode
Accept(Functor &functor)
override;
71 FunctorCode
Accept(ConstFunctor &functor)
const override;
72 FunctorCode AcceptEnd(Functor &functor)
override;
73 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
80 void FilterList(ListOfConstObjects &childList)
const override;
This class represents a basic object.
Definition: object.h:59
This class models the MEI <tabGrp> element.
Definition: tabgrp.h:23
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
Note * GetTopNote()
Return the top or bottom note or their Y position.
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
void FilterList(ListOfConstObjects &childList) const override
Filter the flat list and keep only Note elements.
bool IsSupportedChild(ClassId classId) override
Add an element to a element.
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
Object * Clone() const override
Method call for copying child classes.
Definition: tabgrp.h:32
void Reset() override
Virtual reset method.
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46