 |
Verovio
Source code documentation
|
8 #ifndef __VRV_FUNCTOR_H__
9 #define __VRV_FUNCTOR_H__
11 #include "comparison.h"
12 #include "functorinterface.h"
39 FunctorCode
GetCode()
const {
return m_code; }
41 void ResetCode() { m_code = FUNCTOR_CONTINUE; }
42 void SetCode(FunctorCode code) { m_code = code; }
50 void SetVisibleOnly(
bool visibleOnly) { m_visibleOnly = visibleOnly; }
65 bool GetDirection()
const {
return m_direction; }
66 bool SetDirection(
bool direction)
68 bool previous = m_direction;
69 m_direction = direction;
85 FunctorCode m_code = FUNCTOR_CONTINUE;
89 bool m_visibleOnly =
true;
91 bool m_direction = FORWARD;
164 Doc *GetDoc() {
return m_doc; }
198 const Doc *GetDoc()
const {
return m_doc; }
236 bool IsProcessingData()
const {
return m_processingData; }
237 void SetDataCollectionCompleted() { m_processingData =
true; }
248 bool m_processingData =
false;
253 #endif // __VRV_FUNCTOR_H__
bool IsCollectingData() const
Check and switch the current phase.
Definition: functor.h:235
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
This abstract class is the base class for all const functors that need access to the document.
Definition: functor.h:185
bool VisibleOnly() const
Getter/Setter for the visibility.
Definition: functor.h:49
FunctorCode GetCode() const
Getter/Setter for the functor code which controls traversal.
Definition: functor.h:40
This class is used to store comparison filters and apply them when necessary.
Definition: comparison.h:588
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
This abstract class is the base class for all const functors.
Definition: functor.h:126
virtual bool ImplementsEndInterface() const =0
Return true if the functor implements the end interface.
Filters * GetFilters() const
Getters/Setters for the filters and direction Here setters return the previous value.
Definition: functor.h:58
This class is a mixin for all functors that require two step processing: (1) Collecing data.
Definition: functor.h:220
This class is an interface for functors based on a visitor pattern.
Definition: functorinterface.h:159
This class is an interface for const functors based on a visitor pattern.
Definition: functorinterface.h:534
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
This abstract class contains functionality that is common to all functors.
Definition: functor.h:26