Verovio
Source code documentation
grpsym.h
1 // Name: grpsym.h
3 // Author: Andriy Makarchuk
4 // Created: 2020
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_GRPSYM_H__
9 #define __VRV_GRPSYM_H__
10 
11 #include "atts_mei.h"
12 #include "atts_shared.h"
13 #include "object.h"
14 #include "staffdef.h"
15 
16 namespace vrv {
17 
18 //----------------------------------------------------------------------------
19 // GrpSym
20 //----------------------------------------------------------------------------
21 
25 class GrpSym : public Object,
26  public AttColor,
27  public AttGrpSymLog,
28  public AttStaffGroupingSym,
29  public AttStartId,
30  public AttStartEndId {
31 public:
36  GrpSym();
38  virtual ~GrpSym();
39  Object *Clone() const override { return new GrpSym(*this); }
40  void Reset() override;
41  std::string GetClassName() const override { return "grpSym"; }
43 
47  void SetStartDef(StaffDef *start);
49  StaffDef *GetStartDef() { return m_startDef; }
50  const StaffDef *GetStartDef() const { return m_startDef; }
51  void SetEndDef(StaffDef *end);
52  StaffDef *GetEndDef() { return m_endDef; }
53  const StaffDef *GetEndDef() const { return m_endDef; }
55 
59  int GetDrawingX() const override;
61  int GetDrawingY() const override;
63 
64  //----------//
65  // Functors //
66  //----------//
67 
71  FunctorCode Accept(Functor &functor) override;
73  FunctorCode Accept(ConstFunctor &functor) const override;
74  FunctorCode AcceptEnd(Functor &functor) override;
75  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
77 
78 private:
79  //
80 public:
81  //
82 private:
83  //
84  StaffDef *m_startDef;
85  StaffDef *m_endDef;
86 };
87 
88 } // namespace vrv
89 
90 #endif // __VRV_GRPSYM_H__
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::GrpSym::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::GrpSym
This class represents a MEI grpSym.
Definition: grpsym.h:25
vrv::GrpSym::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: grpsym.h:39
vrv::GrpSym::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.