MuseScore/libmscore/joinMeasure.cpp
Joachim Schmitz 75623c53dc move ElementType to Element::Type
needed to make it available to the Plugin framework
2014-06-26 11:57:35 +02:00

53 lines
1.4 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2002-2012 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#include "score.h"
#include "measure.h"
#include "undo.h"
#include "range.h"
namespace Ms {
//---------------------------------------------------------
// cmdJoinMeasure
// join measures from m1 upto (including) m2
//---------------------------------------------------------
void Score::cmdJoinMeasure(Measure* m1, Measure* m2)
{
startCmd();
deselectAll();
ScoreRange range;
range.read(m1->first(), m2->last());
undoRemoveMeasures(m1, m2);
Measure* m = static_cast<Measure*>(insertMeasure(Element::Type::MEASURE, m2->next(), true));
fixTicks();
m->setTick(m1->tick());
m->setTimesig(m1->timesig());
Fraction f;
for (Measure* mm = m1; mm; mm = mm->nextMeasure()) {
f += mm->len();
if (mm == m2)
break;
}
m->setLen(f);
range.write(this, m1->tick());
endCmd();
}
}