Lines Matching refs:masterScore

272       MasterScore* masterScore = cs->masterScore();  in editInstrList()  local
273 QList<Staff*> originalStaves = masterScore->staves(); in editInstrList()
274 instrList->genPartList(masterScore); in editInstrList()
275 ScoreOrder* order = masterScore->scoreOrder(); in editInstrList()
277 masterScore->startCmd(); in editInstrList()
278 masterScore->deselectAll(); in editInstrList()
282 masterScore->endCmd(); in editInstrList()
291 masterScore->inputState().setTrack(-1); in editInstrList()
292 masterScore->undo(new ChangeScoreOrder(masterScore, instrList->getScoreOrder())); in editInstrList()
297 for (Staff* s : masterScore->staves()) { in editInstrList()
307 …if (firstStaff && !masterScore->styleB(Sid::concertPitch) && firstStaff->part()->instrument()->tra… in editInstrList()
349 masterScore->cmdRemovePart(pli->part); in editInstrList()
352 part = new Part(masterScore); in editInstrList()
355 masterScore->undo(new InsertPart(part, staffIdx)); in editInstrList()
360 Staff* staff = new Staff(masterScore); in editInstrList()
367 … staff->setBarLineSpan(masterScore->staff(staffIdx - 1)->barLineSpan()); in editInstrList()
369 masterScore->undoInsertStaff(staff, cidx); in editInstrList()
378 int sidx = masterScore->staffIdx(part); in editInstrList()
381 masterScore->adjustKeySigs(sidx, eidx, tmpKeymap); in editInstrList()
393 masterScore->cmdRemoveStaff(sidx); in editInstrList()
396 Staff* staff = new Staff(masterScore); in editInstrList()
402 … staff->setBarLineSpan(masterScore->staff(staffIdx - 1)->barLineSpan()); in editInstrList()
435 masterScore->undoInsertStaff(staff, rstaff, linkedStaff == 0); in editInstrList()
440masterScore->adjustKeySigs(staffIdx, staffIdx+1, tmpKeymap); in editInstrList()
452 masterScore->undo(new ChangeStaffType(staff, *stfType)); in editInstrList()
485 int idx = masterScore->staves().indexOf(staff); in editInstrList()
496 masterScore->undo(new SortStaves(masterScore, dl)); in editInstrList()
497 masterScore->undo(new MapExcerptTracks(masterScore, trackMap)); in editInstrList()
503 for (Score* s : masterScore->scoreList()) { in editInstrList()
571 if (masterScore->measures()->size() == 0) in editInstrList()
572 masterScore->insertMeasure(ElementType::MEASURE, 0, false); in editInstrList()
574 …const QList<Excerpt*> excerpts(masterScore->excerpts()); // excerpts list may change in the loop b… in editInstrList()
578 masterScore->undo(new RemoveExcerpt(excerpt)); in editInstrList()
582 instrList->setBracketsAndBarlines(masterScore); in editInstrList()
586 masterScore->setLayoutAll(); in editInstrList()
587 masterScore->endCmd(); in editInstrList()
588 masterScore->rebuildAndUpdateExpressive(MuseScore::synthesizer("Fluid")); in editInstrList()