Verovio
Source code documentation
tabgrp.h
1 // Name: tabgrp.h
3 // Author: Laurent Pugin
4 // Created: 2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TABGRP_H__
9 #define __VRV_TABGRP_H__
10 
11 #include "durationinterface.h"
12 #include "layerelement.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // TabGrp
18 //----------------------------------------------------------------------------
19 
23 class TabGrp : public LayerElement, public ObjectListInterface, public DurationInterface {
24 public:
29  TabGrp();
31  virtual ~TabGrp();
32  Object *Clone() const override { return new TabGrp(*this); }
33  void Reset() override;
34  std::string GetClassName() const override { return "tabGrp"; }
36 
40  DurationInterface *GetDurationInterface() override { return vrv_cast<DurationInterface *>(this); }
42  const DurationInterface *GetDurationInterface() const override { return vrv_cast<const DurationInterface *>(this); }
44 
48  bool IsSupportedChild(ClassId classId) override;
49 
53  Note *GetTopNote();
55  const Note *GetTopNote() const;
56  Note *GetBottomNote();
57  const Note *GetBottomNote() const;
58  int GetYTop() const;
59  int GetYBottom() const;
61 
62  //----------//
63  // Functors //
64  //----------//
65 
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;
75 
76 protected:
80  void FilterList(ListOfConstObjects &childList) const override;
81 
82 private:
83  //
84 public:
85  //
86 private:
87  //
88 };
89 
90 } // namespace vrv
91 
92 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::TabGrp
This class models the MEI <tabGrp> element.
Definition: tabgrp.h:23
vrv::ObjectListInterface
This class is an pseudo interface for elements maintaining a flat list of children LayerElement for p...
Definition: object.h:873
vrv::TabGrp::GetTopNote
Note * GetTopNote()
Return the top or bottom note or their Y position.
vrv::TabGrp::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::TabGrp::FilterList
void FilterList(ListOfConstObjects &childList) const override
Filter the flat list and keep only Note elements.
vrv::TabGrp::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Add an element to a element.
vrv::DurationInterface
This class is an interface for elements with duration, such as notes and rests.
Definition: durationinterface.h:31
vrv::TabGrp::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: tabgrp.h:32
vrv::TabGrp::Reset
void Reset() override
Virtual reset method.
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46