Verovio
Source code documentation
preparedatafunctor.h
1 // Name: preparedatafunctor.h
3 // Author: David Bauer
4 // Created: 2022
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_PREPAREDATAFUNCTOR_H__
9 #define __VRV_PREPAREDATAFUNCTOR_H__
10 
11 #include "functor.h"
12 
13 namespace vrv {
14 
15 class Facsimile;
16 class SystemMilestoneInterface;
17 class SymbolTable;
18 
19 //----------------------------------------------------------------------------
20 // PrepareDataInitializationFunctor
21 //----------------------------------------------------------------------------
22 
27 public:
33  virtual ~PrepareDataInitializationFunctor() = default;
35 
36  /*
37  * Abstract base implementation
38  */
39  bool ImplementsEndInterface() const override { return false; }
40 
41  /*
42  * Functor interface
43  */
45  FunctorCode VisitDiv(Div *div) override;
46  FunctorCode VisitChord(Chord *chord) override;
47  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
48  FunctorCode VisitKeySig(KeySig *keySig) override;
49  FunctorCode VisitRepeatMark(RepeatMark *repeatMark) override;
50  FunctorCode VisitScore(Score *score) override;
51  FunctorCode VisitTextLayoutElement(TextLayoutElement *textLayoutElement) override;
53 
54 protected:
55  //
56 private:
57  //
58 public:
59  //
60 private:
61  //
62 };
63 
64 //----------------------------------------------------------------------------
65 // PrepareCueSizeFunctor
66 //----------------------------------------------------------------------------
67 
72 public:
78  virtual ~PrepareCueSizeFunctor() = default;
80 
81  /*
82  * Abstract base implementation
83  */
84  bool ImplementsEndInterface() const override { return false; }
85 
86  /*
87  * Functor interface
88  */
90  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
92 
93 protected:
94  //
95 private:
96  //
97 public:
98  //
99 private:
100  //
101 };
102 
103 //----------------------------------------------------------------------------
104 // PrepareCrossStaffFunctor
105 //----------------------------------------------------------------------------
106 
111 public:
117  virtual ~PrepareCrossStaffFunctor() = default;
119 
120  /*
121  * Abstract base implementation
122  */
123  bool ImplementsEndInterface() const override { return true; }
124 
125  /*
126  * Functor interface
127  */
129  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
130  FunctorCode VisitLayerElementEnd(LayerElement *layerElement) override;
131  FunctorCode VisitMeasure(Measure *measure) override;
133 
134 protected:
135  //
136 private:
137  //
138 public:
139  //
140 private:
141  // The current measure
142  Measure *m_currentMeasure;
143  // The current cross staff
144  Staff *m_currentCrossStaff;
145  // The current cross layer
146  Layer *m_currentCrossLayer;
147 };
148 
149 //----------------------------------------------------------------------------
150 // PrepareAltSymFunctor
151 //----------------------------------------------------------------------------
152 
157 public:
163  virtual ~PrepareAltSymFunctor() = default;
165 
166  /*
167  * Abstract base implementation
168  */
169  bool ImplementsEndInterface() const override { return false; }
170 
171  /*
172  * Getter for the symbol table
173  */
174  SymbolTable *GetSymbolTable() const { return m_symbolTable; }
175 
176  /*
177  * Functor interface
178  */
180  FunctorCode VisitObject(Object *object) override;
182 
183 protected:
184  //
185 private:
186  //
187 public:
188  //
189 private:
190  // The SymbolTable in the current scoreDef
191  SymbolTable *m_symbolTable;
192 };
193 
194 //----------------------------------------------------------------------------
195 // PrepareFacsimileFunctor
196 //----------------------------------------------------------------------------
197 
202 public:
208  virtual ~PrepareFacsimileFunctor() = default;
210 
211  /*
212  * Abstract base implementation
213  */
214  bool ImplementsEndInterface() const override { return false; }
215 
216  /*
217  * Getter for the zoneless syllables
218  */
219  const ListOfObjects &GetZonelessSyls() const { return m_zonelessSyls; }
220 
221  /*
222  * Getter for the facsimile
223  */
224  Facsimile *GetFacsimile() const { return m_facsimile; }
225 
226  /*
227  * Functor interface
228  */
230  FunctorCode VisitObject(Object *object) override;
232 
233 protected:
234  //
235 private:
236  //
237 public:
238  //
239 private:
240  // The facsimile
241  Facsimile *m_facsimile;
242  // List of zoneless syllables
243  ListOfObjects m_zonelessSyls;
244 };
245 
246 //----------------------------------------------------------------------------
247 // PrepareLinkingFunctor
248 //----------------------------------------------------------------------------
249 
254 public:
260  virtual ~PrepareLinkingFunctor() = default;
262 
263  /*
264  * Abstract base implementation
265  */
266  bool ImplementsEndInterface() const override { return false; }
267 
268  /*
269  * Getter for the interface / id pairs
270  */
272  const MapOfLinkingInterfaceIDPairs &GetNextIDPairs() const { return m_nextIDPairs; }
273  const MapOfLinkingInterfaceIDPairs &GetSameasIDPairs() const { return m_sameasIDPairs; }
274  const MapOfNoteIDPairs &GetStemSameasIDPairs() const { return m_stemSameasIDPairs; }
276 
277  /*
278  * Insert interface / id pairs
279  */
281  void InsertNextIDPair(const std::string &nextID, LinkingInterface *interface);
282  void InsertSameasIDPair(const std::string &sameasID, LinkingInterface *interface);
284 
285  /*
286  * Functor interface
287  */
289  FunctorCode VisitObject(Object *object) override;
291 
292 protected:
293  //
294 private:
301  void ResolveStemSameas(Note *note);
302 
303 public:
304  //
305 private:
306  // Holds the interface / id pairs to match for links
307  MapOfLinkingInterfaceIDPairs m_nextIDPairs;
308  // Holds the interface / id pairs to match for sameas
309  MapOfLinkingInterfaceIDPairs m_sameasIDPairs;
310  // Holds the note / id pairs to match for stem.sameas
311  MapOfNoteIDPairs m_stemSameasIDPairs;
312 };
313 
314 //----------------------------------------------------------------------------
315 // PreparePlistFunctor
316 //----------------------------------------------------------------------------
317 
322 public:
328  virtual ~PreparePlistFunctor() = default;
330 
331  /*
332  * Abstract base implementation
333  */
334  bool ImplementsEndInterface() const override { return false; }
335 
336  /*
337  * Getter and modifier for the interface / id pairs
338  */
340  const ArrayOfPlistInterfaceIDPairs &GetInterfaceIDPairs() const { return m_interfaceIDPairs; }
341  void InsertInterfaceIDPair(const std::string &elementID, PlistInterface *interface);
343 
344  /*
345  * Functor interface
346  */
348  FunctorCode VisitObject(Object *object) override;
350 
351 protected:
352  //
353 private:
354  //
355 public:
356  //
357 private:
358  // Holds the interface / id pairs to match
359  ArrayOfPlistInterfaceIDPairs m_interfaceIDPairs;
360 };
361 
362 //----------------------------------------------------------------------------
363 // PrepareDurationFunctor
364 //----------------------------------------------------------------------------
365 
370 public:
376  virtual ~PrepareDurationFunctor() = default;
378 
379  /*
380  * Abstract base implementation
381  */
382  bool ImplementsEndInterface() const override { return false; }
383 
384  /*
385  * Functor interface
386  */
388  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
389  FunctorCode VisitScore(Score *score) override;
390  FunctorCode VisitScoreDef(ScoreDef *scoreDef) override;
391  FunctorCode VisitStaffDef(StaffDef *staffDef) override;
393 
394 protected:
395  //
396 private:
397  //
398 public:
399  //
400 private:
401  // The current scoreDef default duration
402  data_DURATION m_durDefault;
403  // The current staffDef default durations
404  std::map<int, data_DURATION> m_durDefaultForStaffN;
405 };
406 
407 //----------------------------------------------------------------------------
408 // PrepareTimePointingFunctor
409 //----------------------------------------------------------------------------
410 
415 public:
421  virtual ~PrepareTimePointingFunctor() = default;
423 
424  /*
425  * Abstract base implementation
426  */
427  bool ImplementsEndInterface() const override { return true; }
428 
429  /*
430  * Getter and modifier for the interface / id tuples
431  */
433  void InsertInterfaceIDTuple(ClassId classID, TimePointInterface *interface);
435 
436  /*
437  * Functor interface
438  */
440  FunctorCode VisitF(F *f) override;
441  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
442  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
443  FunctorCode VisitMeasureEnd(Measure *measure) override;
445 
446 protected:
447  //
448 private:
449  //
450 public:
451  //
452 private:
453  // The interface list that holds the current elements to match
454  ListOfPointingInterClassIdPairs m_timePointingInterfaces;
455 };
456 
457 //----------------------------------------------------------------------------
458 // PrepareTimeSpanningFunctor
459 //----------------------------------------------------------------------------
460 
467 public:
473  virtual ~PrepareTimeSpanningFunctor() = default;
475 
476  /*
477  * Abstract base implementation
478  */
479  bool ImplementsEndInterface() const override { return true; }
480 
481  /*
482  * Getter and modifier for the interface / owner pairs
483  */
485  const ListOfSpanningInterOwnerPairs &GetInterfaceOwnerPairs() const { return m_timeSpanningInterfaces; }
486  void InsertInterfaceOwnerPair(Object *owner, TimeSpanningInterface *interface);
488 
489  /*
490  * Functor interface
491  */
493  FunctorCode VisitF(F *f) override;
494  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
495  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
496  FunctorCode VisitMeasure(Measure *measure) override;
497  FunctorCode VisitMeasureEnd(Measure *measure) override;
499 
500 protected:
501  //
502 private:
503  // Delegates to the pseudo functor of the interface
504  FunctorCode CallPseudoFunctor(Object *timeSpanningObject);
505 
506 public:
507  //
508 private:
509  // The interface list that holds the current elements to match
510  ListOfSpanningInterOwnerPairs m_timeSpanningInterfaces;
511  // Indicates whether we currently traverse a measure
512  bool m_insideMeasure;
513 };
514 
515 //----------------------------------------------------------------------------
516 // PrepareTimestampsFunctor
517 //----------------------------------------------------------------------------
518 
525 public:
531  virtual ~PrepareTimestampsFunctor() = default;
533 
534  /*
535  * Abstract base implementation
536  */
537  bool ImplementsEndInterface() const override { return true; }
538 
539  /*
540  * Getter and modifier for the interface / object lists
541  */
543  const ListOfSpanningInterClassIdPairs &GetInterfaceIDPairs() const { return m_timeSpanningInterfaces; }
544  void InsertInterfaceIDPair(ClassId classID, TimeSpanningInterface *interface);
545  void InsertObjectBeatPair(Object *object, const data_MEASUREBEAT &beat);
547 
548  /*
549  * Functor interface
550  */
552  FunctorCode VisitDocEnd(Doc *doc) override;
553  FunctorCode VisitF(F *f) override;
554  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
555  FunctorCode VisitMeasureEnd(Measure *measure) override;
557 
558 protected:
559  //
560 private:
561  //
562 public:
563  //
564 private:
565  // The interface list that holds the current elements to match
566  ListOfSpanningInterClassIdPairs m_timeSpanningInterfaces;
567  // The list of tstamp2 elements to attach at the measure end
568  ListOfObjectBeatPairs m_tstamps;
569 };
570 
571 //----------------------------------------------------------------------------
572 // PreparePedalsFunctor
573 //----------------------------------------------------------------------------
574 
579 public:
585  virtual ~PreparePedalsFunctor() = default;
587 
588  /*
589  * Abstract base implementation
590  */
591  bool ImplementsEndInterface() const override { return true; }
592 
593  /*
594  * Functor interface
595  */
597  FunctorCode VisitMeasureEnd(Measure *measure) override;
598  FunctorCode VisitPedal(Pedal *pedal) override;
600 
601 protected:
602  //
603 private:
604  //
605 public:
606  //
607 private:
608  // The current pedals to be linked / grouped
609  std::list<Pedal *> m_pedalLines;
610 };
611 
612 //----------------------------------------------------------------------------
613 // PreparePointersByLayerFunctor
614 //----------------------------------------------------------------------------
615 
621 public:
627  virtual ~PreparePointersByLayerFunctor() = default;
629 
630  /*
631  * Abstract base implementation
632  */
633  bool ImplementsEndInterface() const override { return true; }
634 
635  /*
636  * Functor interface
637  */
639  FunctorCode VisitDot(Dot *dot) override;
640  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
641  FunctorCode VisitMeasureEnd(Measure *measure) override;
643 
644 protected:
645  //
646 private:
647  //
648 public:
649  //
650 private:
651  // The current note, rest etc.
652  LayerElement *m_currentElement;
653  // The last dot
654  Dot *m_lastDot;
655 };
656 
657 //----------------------------------------------------------------------------
658 // PrepareLyricsFunctor
659 //----------------------------------------------------------------------------
660 
667 public:
673  virtual ~PrepareLyricsFunctor() = default;
675 
676  /*
677  * Abstract base implementation
678  */
679  bool ImplementsEndInterface() const override { return true; }
680 
681  /*
682  * Functor interface
683  */
685  FunctorCode VisitChord(Chord *chord) override;
686  FunctorCode VisitDocEnd(Doc *doc) override;
687  FunctorCode VisitNote(Note *note) override;
688  FunctorCode VisitSyl(Syl *syl) override;
690 
691 protected:
692  //
693 private:
694  //
695 public:
696  //
697 private:
698  // The current Syl
699  Syl *m_currentSyl;
700  // The last Note or Chord
701  LayerElement *m_lastNoteOrChord;
702  // The penultimate Note or Chord
703  LayerElement *m_penultimateNoteOrChord;
704 };
705 
706 //----------------------------------------------------------------------------
707 // PrepareLayerElementPartsFunctor
708 //----------------------------------------------------------------------------
709 
714 public:
720  virtual ~PrepareLayerElementPartsFunctor() = default;
722 
723  /*
724  * Abstract base implementation
725  */
726  bool ImplementsEndInterface() const override { return false; }
727 
728  /*
729  * Functor interface
730  */
732  FunctorCode VisitChord(Chord *chord) override;
733  FunctorCode VisitNote(Note *note) override;
734  FunctorCode VisitRest(Rest *rest) override;
735  FunctorCode VisitTabDurSym(TabDurSym *tabDurSym) override;
736  FunctorCode VisitTuplet(Tuplet *tuplet) override;
738 
739 protected:
740  //
741 private:
742  // Create stem if it does not exist
743  Stem *EnsureStemExists(Stem *stem, Object *parent) const;
744  // Create dots if they should exist, otherwise remove them
745  Dots *ProcessDots(Dots *dots, Object *parent, bool shouldExist) const;
746  // Create flag if it should exist, otherwise remove it
747  Flag *ProcessFlag(Flag *flag, Object *parent, bool shouldExist) const;
748 
749 public:
750  //
751 private:
752  //
753 };
754 
755 //----------------------------------------------------------------------------
756 // PrepareRptFunctor
757 //----------------------------------------------------------------------------
758 
764 public:
768  PrepareRptFunctor(Doc *doc);
770  virtual ~PrepareRptFunctor() = default;
772 
773  /*
774  * Abstract base implementation
775  */
776  bool ImplementsEndInterface() const override { return false; }
777 
778  /*
779  * Functor interface
780  */
782  FunctorCode VisitLayer(Layer *layer) override;
783  FunctorCode VisitMRpt(MRpt *mRpt) override;
784  FunctorCode VisitStaff(Staff *staff) override;
786 
787 protected:
788  //
789 private:
790  //
791 public:
792  //
793 private:
794  // The current MRpt
795  MRpt *m_currentMRpt;
796  // The data_BOOLEAN indicating if multiNumber
797  data_BOOLEAN m_multiNumber;
798 };
799 
800 //----------------------------------------------------------------------------
801 // PrepareDelayedTurnsFunctor
802 //----------------------------------------------------------------------------
803 
809 public:
815  virtual ~PrepareDelayedTurnsFunctor() = default;
817 
818  /*
819  * Abstract base implementation
820  */
821  bool ImplementsEndInterface() const override { return false; }
822 
823  /*
824  * Getter for the map of delayed turns
825  */
826  const std::map<LayerElement *, Turn *> &GetDelayedTurns() const { return m_delayedTurns; }
827 
828  /*
829  * Reset the current turn and element
830  */
831  void ResetCurrent();
832 
833  /*
834  * Functor interface
835  */
837  FunctorCode VisitLayerElement(LayerElement *layerElement) override;
838  FunctorCode VisitTurn(Turn *turn) override;
840 
841 protected:
842  //
843 private:
844  //
845 public:
846  //
847 private:
848  // The element to which a turn is pointing to
849  LayerElement *m_previousElement;
850  // The current chord
851  Chord *m_currentChord;
852  // The turn to which we want to set a m_drawingEndElement
853  Turn *m_currentTurn;
854  // A map of the delayed turns and the layer elements they point to
855  std::map<LayerElement *, Turn *> m_delayedTurns;
856 };
857 
858 //----------------------------------------------------------------------------
859 // PrepareMilestonesFunctor
860 //----------------------------------------------------------------------------
861 
866 public:
872  virtual ~PrepareMilestonesFunctor() = default;
874 
875  /*
876  * Abstract base implementation
877  */
878  bool ImplementsEndInterface() const override { return false; }
879 
880  /*
881  * Getter and modifier for the interface list
882  */
884  const std::vector<SystemMilestoneInterface *> &GetStartMilestones() const { return m_startMilestones; }
885  void InsertStartMilestone(SystemMilestoneInterface *interface);
887 
888  /*
889  * Functor interface
890  */
892  FunctorCode VisitEditorialElement(EditorialElement *editorialElement) override;
893  FunctorCode VisitEnding(Ending *ending) override;
894  FunctorCode VisitMeasure(Measure *measure) override;
895  FunctorCode VisitSection(Section *section) override;
896  FunctorCode VisitSystemMilestone(SystemMilestoneEnd *systemMilestoneEnd) override;
898 
899 protected:
900  //
901 private:
902  //
903 public:
904  //
905 private:
906  // The last measure
907  Measure *m_lastMeasure;
908  // The current ending
909  Ending *m_currentEnding;
910  // The list of start milestones
911  std::vector<SystemMilestoneInterface *> m_startMilestones;
912 };
913 
914 //----------------------------------------------------------------------------
915 // PrepareFloatingGrpsFunctor
916 //----------------------------------------------------------------------------
917 
923 public:
929  virtual ~PrepareFloatingGrpsFunctor() = default;
931 
932  /*
933  * Abstract base implementation
934  */
935  bool ImplementsEndInterface() const override { return true; }
936 
937  /*
938  * Functor interface
939  */
941  FunctorCode VisitDir(Dir *dir) override;
942  FunctorCode VisitDynam(Dynam *dynam) override;
943  FunctorCode VisitEnding(Ending *ending) override;
944  FunctorCode VisitHairpin(Hairpin *hairpin) override;
945  FunctorCode VisitHarm(Harm *harm) override;
946  FunctorCode VisitMeasure(Measure *measure) override;
947  FunctorCode VisitMeasureEnd(Measure *measure) override;
948  FunctorCode VisitPedal(Pedal *pedal) override;
949  FunctorCode VisitSystemMilestone(SystemMilestoneEnd *systemMilestoneEnd) override;
951 
952 protected:
953  //
954 private:
955  //
956 public:
957  //
958 private:
959  // The previous ending
960  Ending *m_previousEnding;
961  // The dynams in the current measure
962  std::vector<Dynam *> m_dynams;
963  // The current hairpins to be linked / grouped
964  std::vector<Hairpin *> m_hairpins;
965  // The map of existing harms (based on @n)
966  std::map<std::string, Harm *> m_harms;
967 };
968 
969 //----------------------------------------------------------------------------
970 // PrepareStaffCurrentTimeSpanningFunctor
971 //----------------------------------------------------------------------------
972 
979 public:
985  virtual ~PrepareStaffCurrentTimeSpanningFunctor() = default;
987 
988  /*
989  * Abstract base implementation
990  */
991  bool ImplementsEndInterface() const override { return true; }
992 
993  /*
994  * Getter and modifier for the interface list
995  */
997  const ArrayOfObjects &GetTimeSpanningElements() const { return m_timeSpanningElements; }
998  void InsertTimeSpanningElement(Object *element);
1000 
1001  /*
1002  * Functor interface
1003  */
1005  FunctorCode VisitF(F *f) override;
1006  FunctorCode VisitFloatingObject(FloatingObject *floatingObject) override;
1007  FunctorCode VisitMeasureEnd(Measure *measure) override;
1008  FunctorCode VisitStaff(Staff *staff) override;
1009  FunctorCode VisitSyl(Syl *syl) override;
1011 
1012 protected:
1013  //
1014 private:
1015  //
1016 public:
1017  //
1018 private:
1019  // The currently running TimeSpanningInterface elements
1020  ArrayOfObjects m_timeSpanningElements;
1021 };
1022 
1023 //----------------------------------------------------------------------------
1024 // PrepareRehPositionFunctor
1025 //----------------------------------------------------------------------------
1026 
1031 public:
1037  virtual ~PrepareRehPositionFunctor() = default;
1039 
1040  /*
1041  * Abstract base implementation
1042  */
1043  bool ImplementsEndInterface() const override { return false; }
1044 
1045  /*
1046  * Functor interface
1047  */
1049  FunctorCode VisitReh(Reh *reh) override;
1051 
1052 protected:
1053  //
1054 private:
1055  //
1056 public:
1057  //
1058 private:
1059  //
1060 };
1061 
1062 //----------------------------------------------------------------------------
1063 // PrepareBeamSpanElementsFunctor
1064 //----------------------------------------------------------------------------
1065 
1071 public:
1077  virtual ~PrepareBeamSpanElementsFunctor() = default;
1079 
1080  /*
1081  * Abstract base implementation
1082  */
1083  bool ImplementsEndInterface() const override { return false; }
1084 
1085  /*
1086  * Functor interface
1087  */
1089  FunctorCode VisitBeamSpan(BeamSpan *beamSpan) override;
1091 
1092 protected:
1093  //
1094 private:
1095  // Helper to get the element list for the beamSpan - elements are acquired from all layerElements
1096  // that are located in between start and end of the beamSpan
1097  ArrayOfObjects GetBeamSpanElementList(BeamSpan *beamSpan, Layer *layer, const Staff *staff) const;
1098 
1099 public:
1100  //
1101 private:
1102  //
1103 };
1104 
1105 } // namespace vrv
1106 
1107 #endif // __VRV_PREPAREDATAFUNCTOR_H__
vrv::PrepareTimePointingFunctor
This class matches the start for TimePointingInterface elements (such as fermata or harm).
Definition: preparedatafunctor.h:414
vrv::StaffDef
This class represents a MEI staffDef.
Definition: staffdef.h:26
vrv::Staff
This class represents a staff in a laid-out score (Doc).
Definition: staff.h:102
vrv::Measure
This class represents a measure in a page-based score (Doc).
Definition: measure.h:37
vrv::RepeatMark
This class models the MEI <ornam> element.
Definition: repeatmark.h:26
vrv::PrepareStaffCurrentTimeSpanningFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:991
vrv::F
This class models the MEI <f> element.
Definition: f.h:24
vrv::PreparePointersByLayerFunctor
This class processes by layer and sets drawing pointers.
Definition: preparedatafunctor.h:620
vrv::PrepareLyricsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:679
vrv::BeamSpan
This class models the MEI <beamSpan> element.
Definition: beamspan.h:31
vrv::PrepareMilestonesFunctor
This class sets the Measure of Ending.
Definition: preparedatafunctor.h:865
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::PrepareFloatingGrpsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:935
vrv::PrepareCrossStaffFunctor
This class sets the cross staff and cross layer pointers on layer elements.
Definition: preparedatafunctor.h:110
vrv::Div
This class represents an MEI Div.
Definition: div.h:24
vrv::TabDurSym
This class models the MEI <tabDurSym> element.
Definition: tabdursym.h:25
vrv::PrepareFloatingGrpsFunctor
This class groups FloatingObjects by drawingGrpId.
Definition: preparedatafunctor.h:922
vrv::Ending
This class represents a MEI ending.
Definition: ending.h:28
vrv::PreparePointersByLayerFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:633
vrv::Dots
This class models a group of dots as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:27
vrv::Chord
This class represents a collection of notes in the same layer with the same onset time.
Definition: chord.h:32
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::Pedal
This class models the MEI <pedal> element.
Definition: pedal.h:27
vrv::PrepareLyricsFunctor
This class sets wordpos and connector ends.
Definition: preparedatafunctor.h:666
vrv::PrepareDataInitializationFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:39
vrv::Flag
This class models a stem as a layer element part and has no direct MEI equivalent.
Definition: elementpart.h:97
vrv::Dir
This class models the MEI <dir> element.
Definition: dir.h:26
vrv::PrepareBeamSpanElementsFunctor
This class gets the list of referenced elements for the BeamSpan and marks referenced objects as cont...
Definition: preparedatafunctor.h:1070
vrv::PrepareCrossStaffFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:123
vrv::PrepareDataInitializationFunctor
This class is responsible for one time member initialization at the very begin.
Definition: preparedatafunctor.h:26
vrv::PreparePlistFunctor
This class matches elements of @plist.
Definition: preparedatafunctor.h:321
vrv::PrepareDurationFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:382
vrv::PreparePedalsFunctor
This class matches down and up pedal lines.
Definition: preparedatafunctor.h:578
vrv::PrepareStaffCurrentTimeSpanningFunctor
This class goes through all the TimeSpanningInterface elements and sets them for each staff that is c...
Definition: preparedatafunctor.h:978
vrv::PrepareRptFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:776
vrv::PrepareBeamSpanElementsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:1083
vrv::PrepareLinkingFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:266
vrv::PrepareMilestonesFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:878
vrv::PrepareTimePointingFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:427
vrv::SystemMilestoneEnd
This class models an end milestone element at the system level.
Definition: systemmilestone.h:28
vrv::SymbolTable
Definition: symboltable.h:20
vrv::Functor
This abstract class is the base class for all mutable functors.
Definition: functor.h:101
vrv::PrepareTimestampsFunctor
This class matches start and end for TimeSpanningInterface elements with tstamp(2) attributes.
Definition: preparedatafunctor.h:524
vrv::PrepareTimeSpanningFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:479
vrv::PrepareCueSizeFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:84
vrv::PrepareAltSymFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:169
vrv::PrepareFacsimileFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:214
vrv::PrepareRehPositionFunctor
This class resolves the Reh time pointing position in case none is set.
Definition: preparedatafunctor.h:1030
vrv::FloatingObject
This class represents elements appearing within a measure.
Definition: floatingobject.h:28
vrv::MRpt
This class models the MEI <mRpt> element.
Definition: mrpt.h:26
vrv::Reh
This class models the MEI <reh> element.
Definition: reh.h:26
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::PrepareTimeSpanningFunctor
This class matches start and end for TimeSpanningInterface elements (such as tie or slur).
Definition: preparedatafunctor.h:466
vrv::Facsimile
Implements the facsimile element in MEI.
Definition: facsimile.h:31
vrv::PrepareRptFunctor
This class sets mRpt drawing numbers (if required).
Definition: preparedatafunctor.h:763
vrv::PrepareDelayedTurnsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:821
vrv::PrepareDelayedTurnsFunctor
This class sets Turn::m_drawingEndNote for delayed turns.
Definition: preparedatafunctor.h:808
vrv::PrepareRehPositionFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:1043
vrv::Dot
Definition: dot.h:22
vrv::PrepareLayerElementPartsFunctor
This class adds LayerElement parts (stem, flag, dots, etc).
Definition: preparedatafunctor.h:713
vrv::PrepareLayerElementPartsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:726
vrv::PrepareTimestampsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:537
vrv::Dynam
Definition: dynam.h:24
vrv::Syl
Syl is a TimeSpanningInterface for managing syllable connectors.
Definition: syl.h:31
vrv::PreparePedalsFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:591
vrv::Stem
This class models a stem as a layer element part and as MEI <stem> element.
Definition: stem.h:27
vrv::PrepareFacsimileFunctor
This class associates layer elements with @facs to the appropriate zone.
Definition: preparedatafunctor.h:201
vrv::ScoreDef
This class represents a MEI scoreDef.
Definition: scoredef.h:129
vrv::PrepareAltSymFunctor
This class matches the @altsym element to the corresponding symbolDef.
Definition: preparedatafunctor.h:156
vrv::PrepareLinkingFunctor
This class matches linking elements (e.g, @next).
Definition: preparedatafunctor.h:253
vrv::Tuplet
Definition: tuplet.h:28
vrv::Rest
This class models the MEI <rest> element.
Definition: rest.h:37
vrv::CollectAndProcess
This class is a mixin for all functors that require two step processing: (1) Collecing data.
Definition: functor.h:220
vrv::Score
This class represent a <score> in MEI.
Definition: score.h:30
vrv::PrepareDurationFunctor
This class extracts the default duration from scoredef/staffdef.
Definition: preparedatafunctor.h:369
vrv::KeySig
This class models the MEI <keySig> element.
Definition: keysig.h:44
vrv::TextLayoutElement
This class represents a text element featuring horizontal and vertical layout.
Definition: textlayoutelement.h:24
vrv::LayerElement
This class is a base class for the Layer (<layer>) content.
Definition: layerelement.h:46
vrv::Layer
This class represents a layer in a laid-out score (Doc).
Definition: layer.h:33
vrv::Harm
This class models the MEI <harm> element.
Definition: harm.h:27
vrv::DocFunctor
This abstract class is the base class for all mutable functors that need access to the document.
Definition: functor.h:151
vrv::PreparePlistFunctor::ImplementsEndInterface
bool ImplementsEndInterface() const override
Return true if the functor implements the end interface.
Definition: preparedatafunctor.h:334
vrv::Hairpin
This class models the MEI <hairpin> element.
Definition: hairpin.h:25
vrv::PrepareCueSizeFunctor
This class sets the drawing cue size for all layer elements.
Definition: preparedatafunctor.h:71
vrv::TimePointInterface
This class is an interface for elements having a single time point, such as tempo,...
Definition: timeinterface.h:35