MuseScore/libmscore/breath.cpp

111 lines
2.9 KiB
C++
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2002-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 "breath.h"
#include "sym.h"
#include "system.h"
#include "segment.h"
#include "measure.h"
#include "score.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2013-11-06 15:58:05 +01:00
SymId Breath::symList[Breath::breathSymbols] = {
2013-11-07 16:05:00 +01:00
SymId::breathMark,
SymId::breathMark, // TODO-smufl SymId(lcommaSym),
SymId::caesura, // SymId(caesuraCurvedSym),
SymId::caesura
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
// Breath
//---------------------------------------------------------
Breath::Breath(Score* s)
: Element(s)
{
_breathType = 0;
2012-05-26 14:26:10 +02:00
setFlags(ELEMENT_MOVABLE | ELEMENT_SELECTABLE);
}
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void Breath::layout()
{
2013-11-06 15:58:05 +01:00
setbbox(score()->sym(symList[breathType()]).bbox(magS()));
2012-05-26 14:26:10 +02:00
}
//---------------------------------------------------------
// write
//---------------------------------------------------------
void Breath::write(Xml& xml) const
{
xml.stag("Breath");
xml.tag("subtype", _breathType);
2012-05-26 14:26:10 +02:00
Element::writeProperties(xml);
xml.etag();
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
2013-01-11 18:10:18 +01:00
void Breath::read(XmlReader& e)
2012-05-26 14:26:10 +02:00
{
2013-01-11 18:10:18 +01:00
while (e.readNextStartElement()) {
if (e.name() == "subtype")
_breathType = e.readInt();
2012-05-26 14:26:10 +02:00
else if (!Element::readProperties(e))
2013-01-11 18:10:18 +01:00
e.unknown();
2012-05-26 14:26:10 +02:00
}
}
//---------------------------------------------------------
// draw
//---------------------------------------------------------
void Breath::draw(QPainter* p) const
{
p->setPen(curColor());
2013-11-06 15:58:05 +01:00
drawSymbol(symList[_breathType], p);
2012-05-26 14:26:10 +02:00
}
//---------------------------------------------------------
// space
//---------------------------------------------------------
Space Breath::space() const
{
return Space(0.0, spatium() * 1.5);
}
//---------------------------------------------------------
// pagePos
//---------------------------------------------------------
QPointF Breath::pagePos() const
{
if (parent() == 0)
return pos();
System* system = segment()->measure()->system();
qreal yp = y();
if (system)
yp += system->staff(staffIdx())->y() + system->y();
return QPointF(pageX(), yp);
}
2013-05-13 18:49:17 +02:00
}