Home
last modified time | relevance | path

Searched refs:ThirtySecondNote (Results 1 – 11 of 11) sorted by relevance

/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/core/
H A DGlobal.cpp28 case ThirtySecondNote: return Note32Length; in durationToTicks()
44 case ThirtySecondNote: return "32nd"; in durationToString()
H A DGlobal.h48 ThirtySecondNote, enumerator
H A DMusicXmlReader.cpp50 else if (type == "32nd") return ThirtySecondNote; in parseDuration()
64 else if (ticks <= Note32Length) return ThirtySecondNote; in parseDuration()
H A DChord.cpp64 case ThirtySecondNote: in calcStemLength()
499 case ThirtySecondNote: return 3; in beamCount()
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/
H A DMusicStyle.cpp106 case ThirtySecondNote: in renderNoteHead()
136 case ThirtySecondNote: in renderRest()
226 case ThirtySecondNote: in renderNoteFlags()
H A DSimpleEntryTool.cpp133 AbstractMusicAction* actionNote32 = new NoteEntryAction(ThirtySecondNote, false, this); in SimpleEntryTool()
172 AbstractMusicAction* actionRest32 = new NoteEntryAction(ThirtySecondNote, true, this); in SimpleEntryTool()
/dports/editors/calligra/calligra-3.2.1/plugins/musicshape/actions/
H A DNoteEntryAction.cpp58 …(duration == ThirtySecondNote) ? (isRest?koIconNameCStr("music-rest-32nd"):koIconNameCStr("music-n… in getIcon()
76 case ThirtySecondNote: return i18n("32nd ") + base; in getText()
95 if (m_duration < ThirtySecondNote) sl += 1; in renderPreview()
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/dialogs/
H A DEventFilterDialog.cpp409 return long(Note(Note::ThirtySecondNote).getDuration() / 3); in getDurationFromIndex()
412 return long(Note(Note::ThirtySecondNote).getDuration()); in getDurationFromIndex()
/dports/audio/rosegarden/rosegarden-21.06.1/src/base/
H A DNotationTypes.h1062 ThirtySecondNote = 1, variable
/dports/audio/rosegarden/rosegarden-21.06.1/src/gui/editors/notation/
H A DNotationView.cpp5136 else if (name == "set_note_type_thirtysecond") note=Note::ThirtySecondNote; in slotSetNoteType()
5160 else if (name == "set_note_type_notation_thirtysecond") note=Note::ThirtySecondNote; in slotSetNoteTypeNotationOnly()
/dports/audio/rosegarden/rosegarden-21.06.1/src/document/io/
H A DLilyPondExporter.cpp3199 case Note::ThirtySecondNote: in writeDuration()