Verovio
Source code documentation
positioninterface.h
1 // Name: positioninterface.h
3 // Author: Laurent Pugin
4 // Created: 2011
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_POSITION_INTERFACE_H__
9 #define __VRV_POSITION_INTERFACE_H__
10 
11 #include "atts_shared.h"
12 #include "interface.h"
13 
14 namespace vrv {
15 
16 class Layer;
17 class LayerElement;
18 class ResetDataFunctor;
19 class ResetHorizontalAlignmentFunctor;
20 
21 //----------------------------------------------------------------------------
22 // PositionInterface
23 //----------------------------------------------------------------------------
24 
30 class PositionInterface : public Interface, public AttStaffLoc, public AttStaffLocPitched {
31 public:
38  virtual ~PositionInterface();
39  void Reset() override;
40  InterfaceId IsInterface() const override { return INTERFACE_POSITION; }
42 
47  void SetDrawingLoc(int drawingLoc) { m_drawingLoc = drawingLoc; }
49  int GetDrawingLoc() const { return m_drawingLoc; }
51 
52  int CalcDrawingLoc(const Layer *layer, const LayerElement *element);
53 
58  bool HasIdenticalPositionInterface(const PositionInterface *otherPositionInterface) const;
59 
66  bool HasLedgerLines(int &linesAbove, int &linesBelow, const Staff *staff) const;
67 
68  //-----------------//
69  // Pseudo functors //
70  //-----------------//
71 
77  FunctorCode InterfaceResetData(ResetDataFunctor &functor, Object *object);
79  FunctorCode InterfaceResetHorizontalAlignment(ResetHorizontalAlignmentFunctor &functor, Object *object);
81 
82 private:
83  //
84 public:
85  //
86 private:
90  int m_drawingLoc;
91 };
92 
93 } // namespace vrv
94 
95 #endif
vrv::PositionInterface::IsInterface
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: positioninterface.h:40
vrv::PositionInterface::InterfaceResetData
FunctorCode InterfaceResetData(ResetDataFunctor &functor, Object *object)
We have functor code in the interface for avoiding code duplication in each implementation class.
vrv::PositionInterface::HasIdenticalPositionInterface
bool HasIdenticalPositionInterface(const PositionInterface *otherPositionInterface) const
Inteface comparison operator.
vrv::PositionInterface
This class is an interface for elements with a position on the staff, such as rests.
Definition: positioninterface.h:30
vrv::Interface
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
vrv::PositionInterface::Reset
void Reset() override
Virtual reset method.
vrv::PositionInterface::HasLedgerLines
bool HasLedgerLines(int &linesAbove, int &linesBelow, const Staff *staff) const
Check if the note has ledger lines.