142 lines
4 KiB
C++
142 lines
4 KiB
C++
//=============================================================================
|
|
// MuseScore
|
|
// Music Composition & Notation
|
|
// $Id:$
|
|
//
|
|
// Copyright (C) 2010-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 "tremolobar.h"
|
|
#include "score.h"
|
|
#include "undo.h"
|
|
#include "staff.h"
|
|
#include "chord.h"
|
|
#include "note.h"
|
|
|
|
//---------------------------------------------------------
|
|
// TremoloBar
|
|
//---------------------------------------------------------
|
|
|
|
TremoloBar::TremoloBar(Score* s)
|
|
: Element(s)
|
|
{
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// layout
|
|
//---------------------------------------------------------
|
|
|
|
void TremoloBar::layout()
|
|
{
|
|
qreal _spatium = spatium();
|
|
|
|
if (staff() && !staff()->isTabStaff()) {
|
|
setbbox(QRectF());
|
|
if (!parent()) {
|
|
noteWidth = -_spatium*2;
|
|
notePos = QPointF(0.0, _spatium*3);
|
|
}
|
|
return;
|
|
}
|
|
|
|
_lw = _spatium * 0.1;
|
|
Note* note = 0;
|
|
if (note == 0) {
|
|
noteWidth = 0.0;
|
|
notePos = QPointF();
|
|
}
|
|
else {
|
|
noteWidth = note->width();
|
|
notePos = note->pos();
|
|
}
|
|
// int n = _points.size();
|
|
// int pt = 0;
|
|
// qreal x = noteWidth * .5;
|
|
// qreal y = notePos.y() - _spatium;
|
|
// qreal x2, y2;
|
|
|
|
QRectF bb (0, 0, _spatium*3, -_spatium * 4);
|
|
#if 0
|
|
for (int pt = 0; pt < n; ++pt) {
|
|
if (pt == (n-1))
|
|
break;
|
|
x = x2;
|
|
y = y2;
|
|
}
|
|
#endif
|
|
bb.adjust(-_lw, -_lw, _lw, _lw);
|
|
setbbox(bb);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// draw
|
|
//---------------------------------------------------------
|
|
|
|
void TremoloBar::draw(QPainter* painter) const
|
|
{
|
|
if (staff() && !staff()->isTabStaff())
|
|
return;
|
|
QPen pen(curColor(), _lw, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
|
|
painter->setPen(pen);
|
|
painter->setBrush(QBrush(Qt::black));
|
|
|
|
qreal _spatium = spatium();
|
|
const TextStyle* st = &score()->textStyle(TEXT_STYLE_BENCH);
|
|
QFont f = st->fontPx(_spatium);
|
|
painter->setFont(f);
|
|
|
|
int n = _points.size();
|
|
// int pt = 0;
|
|
// qreal x = noteWidth;
|
|
// qreal y = -_spatium * .8;
|
|
// qreal x2, y2;
|
|
|
|
for (int pt = 0; pt < n; ++pt) {
|
|
if (pt == (n-1))
|
|
break;
|
|
// int pitch = _points[pt].pitch;
|
|
}
|
|
//debug:
|
|
painter->drawLine(QLineF(0.0, 0.0, _spatium*1.5, _spatium*3));
|
|
painter->drawLine(QLineF(_spatium*1.5, _spatium*3, _spatium*3, 0.0));
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// write
|
|
//---------------------------------------------------------
|
|
|
|
void TremoloBar::write(Xml& xml) const
|
|
{
|
|
xml.stag("TremoloBar");
|
|
foreach(const PitchValue& v, _points) {
|
|
xml.tagE(QString("point time=\"%1\" pitch=\"%2\" vibrato=\"%3\"")
|
|
.arg(v.time).arg(v.pitch).arg(v.vibrato));
|
|
}
|
|
xml.etag();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// read
|
|
//---------------------------------------------------------
|
|
|
|
void TremoloBar::read(XmlReader& e)
|
|
{
|
|
while (e.readNextStartElement()) {
|
|
if (e.name() == "point") {
|
|
PitchValue pv;
|
|
pv.time = e.intAttribute("time");
|
|
pv.pitch = e.intAttribute("pitch");
|
|
pv.vibrato = e.intAttribute("vibrato");
|
|
_points.append(pv);
|
|
e.readNext();
|
|
}
|
|
else
|
|
e.unknown();
|
|
}
|
|
}
|
|
|