Verovio
Source code documentation
editorial.h
1 // Name: editorial.h
3 // Author: Laurent Pugin
4 // Created: 2014
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_EDITORIAL_H__
9 #define __VRV_EDITORIAL_H__
10 
11 #include "atts_critapp.h"
12 #include "atts_shared.h"
13 #include "object.h"
14 #include "systemmilestone.h"
15 
16 namespace vrv {
17 
18 class Layer;
19 class LayerElement;
20 class Measure;
21 class ControlElement;
22 class ScoreDef;
23 class Staff;
24 class StaffDef;
25 class StaffGrp;
26 class TextElement;
27 
28 //----------------------------------------------------------------------------
29 // EditorialElement
30 //----------------------------------------------------------------------------
31 
38 class EditorialElement : public Object, public SystemMilestoneInterface, public AttLabelled, public AttTyped {
39 public:
46  EditorialElement(ClassId classId);
47  virtual ~EditorialElement();
48  void Reset() override;
50 
54  bool IsSupportedChild(ClassId classId) override;
57 
58  //----------//
59  // Functors //
60  //----------//
61 
65  FunctorCode Accept(Functor &functor) override;
67  FunctorCode Accept(ConstFunctor &functor) const override;
68  FunctorCode AcceptEnd(Functor &functor) override;
69  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
71 
72 private:
73  //
74 public:
80  VisibilityType m_visibility;
81 
82 private:
83 };
84 
85 } // namespace vrv
86 
87 #endif
vrv::SystemMilestoneInterface
This class is an interface for container elements that have to be turned to milestones in a page-base...
Definition: systemmilestone.h:91
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::EditorialElement::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::EditorialElement::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::ConstFunctor
This abstract class is the base class for all const functors.
Definition: functor.h:126
vrv::EditorialElement::m_visibility
VisibilityType m_visibility
Holds the visibility (hidden or visible) for an editorial element.
Definition: editorial.h:80
vrv::EditorialElement
This class is a base class for the editorial element containing musical content, for example <rgd> or...
Definition: editorial.h:38
vrv::EditorialElement::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.