8 #ifndef __VRV_ACCID_H__
9 #define __VRV_ACCID_H__
11 #include "atts_externalsymbols.h"
12 #include "atts_gestural.h"
13 #include "layerelement.h"
14 #include "positioninterface.h"
18 class AlignmentReference;
30 public AttAccidentalGes,
33 public AttEnclosingChars,
35 public AttExtSymNames,
36 public AttPlacementOnStaff,
37 public AttPlacementRelEvent {
47 void Reset()
override;
48 std::string GetClassName()
const override {
return "accid"; }
52 bool IsRelativeToStaff()
const override {
return (this->HasLoc() || (this->HasOloc() && this->HasPloc())); }
57 PositionInterface *GetPositionInterface()
override {
return vrv_cast<PositionInterface *>(
this); }
59 const PositionInterface *GetPositionInterface()
const override {
return vrv_cast<const PositionInterface *>(
this); }
68 void SetDrawingUnisonAccid(
Accid *drawingUnison) { m_drawingUnison = drawingUnison; }
70 Accid *GetDrawingUnisonAccid() {
return m_drawingUnison; }
71 const Accid *GetDrawingUnisonAccid()
const {
return m_drawingUnison; }
78 std::u32string
GetSymbolStr(data_NOTATIONTYPE notationType)
const;
83 void AdjustX(LayerElement *element,
const Doc *doc,
int staffSize, std::vector<Accid *> &leftAccids,
84 std::set<Accid *> &adjustedAccids);
94 void IsAlignedWithSameLayer(
bool alignWithSameLayer) { m_alignedWithSameLayer = alignWithSameLayer; }
96 bool IsAlignedWithSameLayer()
const {
return m_alignedWithSameLayer; }
106 static char32_t GetAccidGlyph(data_ACCIDENTAL_WRITTEN accid);
111 static std::u32string
CreateSymbolStr(data_ACCIDENTAL_WRITTEN accid, data_ENCLOSURE enclosure = ENCLOSURE_NONE,
112 data_NOTATIONTYPE notationType = NOTATIONTYPE_NONE,
const Resources *resources = NULL, data_HEXNUM glyphNum = 0,
113 std::string glyphName =
"");
122 FunctorCode
Accept(Functor &functor)
override;
124 FunctorCode
Accept(ConstFunctor &functor)
const override;
125 FunctorCode AcceptEnd(Functor &functor)
override;
126 FunctorCode AcceptEnd(ConstFunctor &functor)
const override;
134 Accid *m_drawingUnison;
135 bool m_alignedWithSameLayer;
150 bool operator()(
const Accid *first,
const Accid *second)
const
152 if (first->GetDrawingY() == second->GetDrawingY()) {
154 return ((first->GetAccid() == ACCIDENTAL_WRITTEN_n) && (second->GetAccid() != ACCIDENTAL_WRITTEN_n));
157 return (first->GetDrawingY() > second->GetDrawingY());
175 std::string GetOctaveID(
const Accid *accid)
const;
177 bool operator()(
const Accid *first,
const Accid *second)
const
179 return this->GetOctaveID(first) < this->GetOctaveID(second);