Verovio
Source code documentation
symboldef.h
1 // Name: symboldef.h
3 // Author: Laurent Pugin
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_SYMBOLDEF_H__
9 #define __VRV_SYMBOLDEF_H__
10 
11 #include "atts_shared.h"
12 #include "object.h"
13 
14 namespace vrv {
15 
16 //----------------------------------------------------------------------------
17 // SymbolDef
18 //----------------------------------------------------------------------------
19 
20 class SymbolDef : public Object {
21 public:
26  SymbolDef();
28  virtual ~SymbolDef();
29  void Reset() override;
30  std::string GetClassName() const override { return "symbolDef"; }
32 
36  bool IsSupportedChild(ClassId classId) override;
39 
43  int GetSymbolWidth(Doc *doc, int staffSize, bool dimin) const;
45  int GetSymbolHeight(Doc *doc, int staffSize, bool dimin) const;
47 
53  void SetTemporaryParent(Object *parent);
55  void ResetTemporaryParent();
57 
58 private:
60  std::pair<int, int> GetSymbolSize(Doc *doc, int staffSize, bool dimin) const;
61 
62 public:
63  //
64 private:
66  Object *m_originalParent;
67 };
68 
69 } // namespace vrv
70 
71 #endif
vrv::SymbolDef::Reset
void Reset() override
Reset the object, that is 1) removing all children and 2) resetting all attributes.
vrv::SymbolDef
Definition: symboldef.h:20
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::SymbolDef::IsSupportedChild
bool IsSupportedChild(ClassId classId) override
Base method for checking if a child can be added.
vrv::Object
This class represents a basic object.
Definition: object.h:59