Verovio
Source code documentation
graphic.h
1 // Name: graphic.h
3 // Author: Werner Goebl
4 // Created: 26/09/2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_GRAPHIC_H__
9 #define __VRV_GRAPHIC_H__
10 
11 #include <cassert>
12 
13 //----------------------------------------------------------------------------
14 
15 #include "atts_analytical.h"
16 #include "atts_shared.h"
17 #include "object.h"
18 #include "vrvdef.h"
19 
20 namespace vrv {
21 
22 //----------------------------------------------------------------------------
23 // Graphic
24 //----------------------------------------------------------------------------
30 class Graphic : public Object, public AttPointing, public AttWidth, public AttHeight, public AttTyped {
31 public:
35  Graphic();
37  virtual ~Graphic();
38  Object *Clone() const override { return new Graphic(*this); }
39  void Reset() override;
40  std::string GetClassName() const override { return "graphic"; }
42 
46  int GetDrawingWidth(int unit, int staffSize) const;
48  int GetDrawingHeight(int unit, int staffSize) 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 
73 #endif
vrv::Graphic::Accept
FunctorCode Accept(Functor &functor) override
Interface for class functor visitation.
vrv::Graphic
Implements the graphic element in MEI.
Definition: graphic.h:30
vrv::Graphic::Clone
Object * Clone() const override
Method call for copying child classes.
Definition: graphic.h:38
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Graphic::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.