MuseScore/libmscore/instrchange.cpp

161 lines
4.6 KiB
C++
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2008-2011 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 "instrchange.h"
#include "score.h"
#include "segment.h"
#include "staff.h"
#include "part.h"
#include "undo.h"
#include "mscore.h"
2014-04-09 16:09:21 +02:00
#include "xml.h"
#include "measure.h"
#include "system.h"
2012-05-26 14:26:10 +02:00
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// InstrumentChange
//---------------------------------------------------------
InstrumentChange::InstrumentChange(Score* s)
: Text(s)
{
setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE | ElementFlag::ON_STAFF);
setTextStyleType(TextStyleType::INSTRUMENT_CHANGE);
_instrument = new Instrument();
}
InstrumentChange::InstrumentChange(const Instrument& i, Score* s)
: Text(s)
{
setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE | ElementFlag::ON_STAFF);
setTextStyleType(TextStyleType::INSTRUMENT_CHANGE);
_instrument = new Instrument(i);
}
InstrumentChange::InstrumentChange(const InstrumentChange& is)
: Text(is)
{
setFlags(ElementFlag::MOVABLE | ElementFlag::SELECTABLE | ElementFlag::ON_STAFF);
setTextStyleType(TextStyleType::INSTRUMENT_CHANGE);
_instrument = new Instrument(*is._instrument);
}
InstrumentChange::~InstrumentChange()
{
delete _instrument;
}
void InstrumentChange::setInstrument(const Instrument& i)
{
delete _instrument;
_instrument = new Instrument(i);
2012-05-26 14:26:10 +02:00
}
//---------------------------------------------------------
// write
//---------------------------------------------------------
void InstrumentChange::write(Xml& xml) const
{
xml.stag("InstrumentChange");
_instrument->write(xml);
2012-05-26 14:26:10 +02:00
Text::writeProperties(xml);
xml.etag();
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
2013-01-11 18:10:18 +01:00
void InstrumentChange::read(XmlReader& e)
2012-05-26 14:26:10 +02:00
{
2013-01-11 18:10:18 +01:00
while (e.readNextStartElement()) {
const QStringRef& tag(e.name());
2012-05-26 14:26:10 +02:00
if (tag == "Instrument")
_instrument->read(e);
2012-05-26 14:26:10 +02:00
else if (!Text::readProperties(e))
2013-01-11 18:10:18 +01:00
e.unknown();
2012-05-26 14:26:10 +02:00
}
}
//---------------------------------------------------------
// getProperty
//---------------------------------------------------------
QVariant InstrumentChange::getProperty(P_ID propertyId) const
{
switch (propertyId) {
default:
return Text::getProperty(propertyId);
}
}
//---------------------------------------------------------
// propertyDefault
//---------------------------------------------------------
QVariant InstrumentChange::propertyDefault(P_ID propertyId) const
{
switch (propertyId) {
default:
return Text::propertyDefault(propertyId);
}
}
//---------------------------------------------------------
// setProperty
//---------------------------------------------------------
bool InstrumentChange::setProperty(P_ID propertyId, const QVariant& v)
{
switch (propertyId) {
default:
return Text::setProperty(propertyId, v);
}
return true;
}
//---------------------------------------------------------
// drag
//---------------------------------------------------------
QRectF InstrumentChange::drag(EditData* ed)
{
QRectF f = Element::drag(ed);
//
// move anchor
//
Qt::KeyboardModifiers km = qApp->keyboardModifiers();
if (km != (Qt::ShiftModifier | Qt::ControlModifier)) {
int si;
Segment* seg = 0;
if (_score->pos2measure(ed->pos, &si, 0, &seg, 0) == nullptr)
return f;
if (seg && (seg != segment() || staffIdx() != si)) {
QPointF pos1(canvasPos());
score()->undo(new ChangeParent(this, seg, si));
setUserOff(QPointF());
layout();
QPointF pos2(canvasPos());
setUserOff(pos1 - pos2);
ed->startMove = pos2;
}
}
return f;
}
2013-05-13 18:49:17 +02:00
}