MuseScore/libmscore/ledgerline.cpp

78 lines
2.1 KiB
C++
Raw Normal View History

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2013 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 "ledgerline.h"
#include "chord.h"
#include "measure.h"
#include "system.h"
#include "score.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
//---------------------------------------------------------
// LedgerLine
//---------------------------------------------------------
LedgerLine::LedgerLine(Score* s)
: Line(s, false)
{
setZ(NOTE * 100 - 50);
setSelectable(false);
_next = 0;
}
//---------------------------------------------------------
// pagePos
//---------------------------------------------------------
QPointF LedgerLine::pagePos() const
{
System* system = chord()->measure()->system();
qreal yp = y() + system->staff(staffIdx())->y() + system->y();
return QPointF(pageX(), yp);
}
//---------------------------------------------------------
// measureXPos
//---------------------------------------------------------
qreal LedgerLine::measureXPos() const
{
qreal xp = x(); // chord relative
xp += chord()->x(); // segment relative
xp += chord()->segment()->x(); // measure relative
return xp;
}
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void LedgerLine::layout()
{
2013-09-23 12:40:23 +02:00
setLineWidth(score()->styleS(ST_ledgerLineWidth) * chord()->mag());
Line::layout();
}
2012-10-19 01:17:15 +02:00
//---------------------------------------------------------
// draw
//---------------------------------------------------------
void LedgerLine::draw(QPainter* painter) const
{
if(chord()->crossMeasure() == CROSSMEASURE_SECOND)
return;
Line::draw(painter);
}
2013-05-13 18:49:17 +02:00
}