Verovio
Source code documentation
facsimile.h
1 // Name: facsimile.h
3 // Author: Juliette Regimbal
4 // Created: 2018
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FACSIMILE_H__
9 #define __VRV_FACSIMILE_H__
10 
11 #include <cassert>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "atts_analytical.h"
16 #include "atts_shared.h"
17 #include "object.h"
18 #include "view.h"
19 #include "vrvdef.h"
20 
21 namespace vrv {
22 
23 //----------------------------------------------------------------------------
24 // Facsimile
25 //----------------------------------------------------------------------------
31 class Facsimile : public Object, public AttTyped {
32 public:
37  Facsimile();
39  virtual ~Facsimile();
40  Object *Clone() const override { return new Facsimile(*this); }
41  void Reset() override;
42  std::string GetClassName() const override { return "facsimile"; }
44  bool IsSupportedChild(ClassId classId) override;
45 
46  Zone *FindZoneByID(const std::string &zoneId);
47  const Zone *FindZoneByID(const std::string &zoneId) const;
48  int GetMaxX() const;
49  int GetMaxY() const;
50 
51  //----------//
52  // Functors //
53  //----------//
54 
58  FunctorCode Accept(Functor &functor) override;
60  FunctorCode Accept(ConstFunctor &functor) const override;
61  FunctorCode AcceptEnd(Functor &functor) override;
62  FunctorCode AcceptEnd(ConstFunctor &functor) const override;
64 
65 protected:
66  //
67 private:
68  //
69 };
70 
71 } // namespace vrv
72 #endif
vrv::Facsimile::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Facsimile::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: facsimile.h:40
vrv::Facsimile
Implements the facsimile element in MEI.
Definition: facsimile.h:31
vrv::Facsimile::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::Facsimile::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.