Verovio
Source code documentation
textdirinterface.h
1 // Name: textdirinterface.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_TEXT_DIR_INTERFACE_H__
9 #define __VRV_TEXT_DIR_INTERFACE_H__
10 
11 #include "atts_shared.h"
12 #include "interface.h"
13 #include "vrvdef.h"
14 
15 namespace vrv {
16 
17 //----------------------------------------------------------------------------
18 // TextDirInterface
19 //----------------------------------------------------------------------------
20 
26 class TextDirInterface : public Interface, public AttPlacementRelStaff {
27 public:
34  virtual ~TextDirInterface();
35  void Reset() override;
36  InterfaceId IsInterface() const override { return INTERFACE_TEXT_DIR; }
38 
42  int GetNumberOfLines(const Object *object) const;
43 
47  bool AreChildrenAlignedTo(const Object *object, data_HORIZONTALALIGNMENT alignment) const;
48 
49 private:
50  //
51 public:
52  //
53 private:
54 };
55 
56 } // namespace vrv
57 
58 #endif
vrv::TextDirInterface::GetNumberOfLines
int GetNumberOfLines(const Object *object) const
Return the number of lines in the text object by counting <lb> children.
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Interface
This is a base class for regrouping MEI att classes.
Definition: interface.h:32
vrv::TextDirInterface
This class is an interface for elements implementing a text directive, such as <dir>,...
Definition: textdirinterface.h:26
vrv::TextDirInterface::Reset
void Reset() override
Virtual reset method.
vrv::TextDirInterface::IsInterface
InterfaceId IsInterface() const override
Virtual method returning the InterfaceId of the interface.
Definition: textdirinterface.h:36
vrv::TextDirInterface::AreChildrenAlignedTo
bool AreChildrenAlignedTo(const Object *object, data_HORIZONTALALIGNMENT alignment) const
Check whether one of the children has hAlign attribute set to alignment value.