Home
last modified time | relevance | path

Searched refs:currentNoteIndex (Results 1 – 5 of 5) sorted by relevance

/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonz/
H A Dxshnoteviewer.cpp604 int currentNoteIndex = m_viewer->getCurrentNoteIndex(); in updateButtons() local
605 if (currentNoteIndex == -1 || count == 1) in updateButtons()
608 if (count > currentNoteIndex + 1) m_nextNoteButton->setEnabled(true); in updateButtons()
609 if (currentNoteIndex > 0) m_precNoteButton->setEnabled(true); in updateButtons()
643 int currentNoteIndex = m_viewer->getCurrentNoteIndex(); in nextNote() local
651 m_viewer->setCurrentNoteIndex(++currentNoteIndex); in nextNote()
657 int currentNoteIndex = m_viewer->getCurrentNoteIndex(); in precNote() local
658 m_viewer->setCurrentNoteIndex(--currentNoteIndex); in precNote()
H A Dxsheetviewer.cpp1592 void XsheetViewer::setCurrentNoteIndex(int currentNoteIndex) { in setCurrentNoteIndex() argument
1593 m_currentNoteIndex = currentNoteIndex; in setCurrentNoteIndex()
1596 if (currentNoteIndex < 0) return; in setCurrentNoteIndex()
1599 int row = notes->getNoteRow(currentNoteIndex); in setCurrentNoteIndex()
1600 int col = notes->getNoteCol(currentNoteIndex); in setCurrentNoteIndex()
1601 TPointD pos = notes->getNotePos(currentNoteIndex); in setCurrentNoteIndex()
H A Dxsheetviewer.h727 void setCurrentNoteIndex(int currentNoteIndex);
/dports/games/gcompris-qt/gcompris-qt-2.0/src/activities/note_names/
H A DNoteNames.qml70 if(Activity.newNotesSequence[Activity.currentNoteIndex][0] === key)
177 … text = getTranslatedNoteName(Activity.newNotesSequence[Activity.currentNoteIndex])
/dports/audio/musescore/MuseScore-3.6.1/mscore/
H A Dfile.cpp3059 int currentNoteIndex = (++lastNoteIndex); in saveSvg() local
3061 if (notesColors.contains(currentNoteIndex)) { in saveSvg()
3062 color = notesColors[currentNoteIndex]; in saveSvg()