Home
last modified time | relevance | path

Searched refs:voiceBar (Results 1 – 17 of 17) sorted by relevance

/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/core/tests/
H A DVoiceBarTest.cpp35 MusicCore::VoiceBar* voiceBar; member in VoiceBarTest
46 delete voiceBar; in cleanup()
59 voiceBar->addElement(elem1); in testAddElement()
63 voiceBar->addElement(elem2); in testAddElement()
91 voiceBar->addElement(elem1); in testInsertElement_element()
108 voiceBar->addElement(elem1); in testRemoveElement_index()
109 voiceBar->addElement(elem2); in testRemoveElement_index()
110 voiceBar->addElement(elem3); in testRemoveElement_index()
112 voiceBar->removeElement(1); in testRemoveElement_index()
121 voiceBar->addElement(elem1); in testRemoveElement_element()
[all …]
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/core/
H A DVoiceElement.cpp32 VoiceBar* voiceBar; member in MusicCore::VoiceElement::Private
44 d->voiceBar = 0; in VoiceElement()
63 VoiceBar* VoiceElement::voiceBar() const in voiceBar() function in MusicCore::VoiceElement
65 return d->voiceBar; in voiceBar()
68 void VoiceElement::setVoiceBar(VoiceBar* voiceBar) in setVoiceBar() argument
70 d->voiceBar = voiceBar; in setVoiceBar()
H A DVoiceElement.h59 VoiceBar* voiceBar() const;
60 void setVoiceBar(VoiceBar* voiceBar);
H A DChord.cpp264 Clef* clef = staff()->lastClefChange(voiceBar()->bar(), 0); in y()
287 Clef* clef = staff()->lastClefChange(voiceBar()->bar(), 0); in height()
345 Clef* clef = staff()->lastClefChange(voiceBar()->bar(), 0); in topNoteY()
365 Clef* clef = staff()->lastClefChange(voiceBar()->bar(), 0); in bottomNoteY()
394 Clef* clef = staff()->lastClefChange(voiceBar()->bar(), 0); in stemEndY()
454 VoiceBar* vb = voiceBar(); in desiredStemDirection()
H A DMusicXmlWriter.cpp179 VoiceBar* vb = chord->voiceBar(); in writeChord()
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/commands/
H A DCreateChordCommand.cpp30 CreateChordCommand::CreateChordCommand(MusicShape* shape, VoiceBar* voiceBar, Staff* staff, Duratio… in CreateChordCommand() argument
31 : m_shape(shape), m_voiceBar(voiceBar), m_before(before) in CreateChordCommand()
38 CreateChordCommand::CreateChordCommand(MusicShape* shape, VoiceBar* voiceBar, Staff* staff, Duratio… in CreateChordCommand() argument
39 : m_shape(shape), m_voiceBar(voiceBar), m_before(before) in CreateChordCommand()
H A DRemoveChordCommand.cpp29 : m_chord(chord), m_shape(shape), m_index(m_chord->voiceBar()->indexOfElement(m_chord)) in RemoveChordCommand()
40 m_chord->voiceBar()->removeElement(m_chord, false); in redo()
47 m_chord->voiceBar()->insertElement(m_chord, m_index); in undo()
H A DToggleTiedNoteCommand.cpp38 m_note->chord()->voiceBar()->updateAccidentals(); in redo()
45 m_note->chord()->voiceBar()->updateAccidentals(); in undo()
H A DRemoveNoteCommand.cpp38 m_chord->voiceBar()->updateAccidentals(); in redo()
46 m_chord->voiceBar()->updateAccidentals(); in undo()
H A DSetAccidentalsCommand.cpp38 m_note->chord()->voiceBar()->updateAccidentals(); in redo()
46 m_note->chord()->voiceBar()->updateAccidentals(); in undo()
H A DMakeRestCommand.cpp43 m_chord->voiceBar()->updateAccidentals(); in redo()
53 m_chord->voiceBar()->updateAccidentals(); in undo()
H A DCreateChordCommand.h35 …CreateChordCommand(MusicShape* shape, MusicCore::VoiceBar* voiceBar, MusicCore::Staff* staff, Musi…
36 …CreateChordCommand(MusicShape* shape, MusicCore::VoiceBar* voiceBar, MusicCore::Staff* staff, Musi…
H A DAddNoteCommand.cpp56 m_chord->voiceBar()->updateAccidentals(); in redo()
69 m_chord->voiceBar()->updateAccidentals(); in undo()
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/
H A DMusicCursor.h50 MusicCore::VoiceBar* voiceBar() const;
H A DMusicCursor.cpp79 VoiceBar* MusicCursor::voiceBar() const in voiceBar() function in MusicCursor
H A DRenderer.cpp332 VoiceBar* vb = chord->voiceBar(); in renderChord()
438 … QPointF endPos = nextChord->voiceBar()->bar()->position() + QPointF(nextChord->x() - 1, ypos); in renderChord()
439 if (bar->position().y() < nextChord->voiceBar()->bar()->position().y() - 1e-6) { in renderChord()
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/actions/
H A DNoteEntryAction.cpp193 VoiceBar* vb = cursor.voiceBar(); in keyPress()