Verovio
Source code documentation
altsyminterface.h
1 // Name: altsyminterface.h
3 // Author: Laurent Pugin
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_ALTSYM_INTERFACE_H__
9 #define __VRV_ALTSYM_INTERFACE_H__
10 
11 #include "att.h"
12 #include "atts_usersymbols.h"
13 #include "interface.h"
14 #include "vrvdef.h"
15 
16 namespace vrv {
17 
18 class PrepareAltSymFunctor;
19 class ResetDataFunctor;
20 class SymbolDef;
21 
22 //----------------------------------------------------------------------------
23 // AltSymInterface
24 //----------------------------------------------------------------------------
25 
30 class AltSymInterface : public Interface, public AttAltSym {
31 public:
38  virtual ~AltSymInterface();
39  void Reset() override;
40  InterfaceId IsInterface() const override { return INTERFACE_ALT_SYM; }
42 
47  void SetAltSymbolDef(SymbolDef *symbolDef);
49  SymbolDef *GetAltSymbolDef() { return m_symbolDef; }
50  const SymbolDef *GetAltSymbolDef() const { return m_symbolDef; }
52 
56  bool HasAltSymbolDef() const { return (m_symbolDef); }
59 
60  //-----------------//
61  // Pseudo functors //
62  //-----------------//
63 
69  FunctorCode InterfacePrepareAltSym(PrepareAltSymFunctor &functor, Object *object);
71  FunctorCode InterfaceResetData(ResetDataFunctor &functor, Object *object);
73 
74 protected:
78  void SetIDStr();
79 
80 private:
81  //
82 public:
83  //
84 private:
85  SymbolDef *m_symbolDef;
86  std::string m_symbolDefID;
87 };
88 
89 } // namespace vrv
90 
91 #endif
vrv::SymbolDef
Definition: symboldef.h:20
vrv::Interface
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
vrv::AltSymInterface::SetIDStr
void SetIDStr()
Extract the fragment of the start or end @xml:id if given.
vrv::AltSymInterface::InterfacePrepareAltSym
FunctorCode InterfacePrepareAltSym(PrepareAltSymFunctor &functor, Object *object)
We have functor code in the interface for avoiding code duplication in each implementation class.
vrv::AltSymInterface
This class is an interface for elements having a @altsym It is not an abstract class but should not b...
Definition: altsyminterface.h:30
vrv::AltSymInterface::IsInterface
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: altsyminterface.h:40
vrv::AltSymInterface::Reset
void Reset() override
Virtual reset method.
vrv::AltSymInterface::HasAltSymbolDef
bool HasAltSymbolDef() const
Return true if a symbolDef is given and resolved.
Definition: altsyminterface.h:57