685 lines
25 KiB
C++
685 lines
25 KiB
C++
//=============================================================================
|
|
// 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 "textlinebase.h"
|
|
#include "style.h"
|
|
#include "system.h"
|
|
#include "measure.h"
|
|
#include "xml.h"
|
|
#include "utils.h"
|
|
#include "score.h"
|
|
#include "sym.h"
|
|
#include "text.h"
|
|
#include "mscore.h"
|
|
#include "staff.h"
|
|
|
|
namespace Ms {
|
|
|
|
//---------------------------------------------------------
|
|
// TextLineBaseSegment
|
|
//---------------------------------------------------------
|
|
|
|
TextLineBaseSegment::TextLineBaseSegment(Spanner* sp, Score* score, ElementFlags f)
|
|
: LineSegment(sp, score, f)
|
|
{
|
|
_text = new Text(score);
|
|
_endText = new Text(score);
|
|
_text->setParent(this);
|
|
_endText->setParent(this);
|
|
_text->setFlag(ElementFlag::MOVABLE, false);
|
|
_endText->setFlag(ElementFlag::MOVABLE, false);
|
|
}
|
|
|
|
TextLineBaseSegment::TextLineBaseSegment(const TextLineBaseSegment& seg)
|
|
: LineSegment(seg)
|
|
{
|
|
_text = new Text(*seg._text);
|
|
_endText = new Text(*seg._endText);
|
|
_text->setParent(this);
|
|
_endText->setParent(this);
|
|
layout(); // set the right _text
|
|
}
|
|
|
|
TextLineBaseSegment::~TextLineBaseSegment()
|
|
{
|
|
delete _text;
|
|
delete _endText;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setSelected
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBaseSegment::setSelected(bool f)
|
|
{
|
|
SpannerSegment::setSelected(f);
|
|
_text->setSelected(f);
|
|
_endText->setSelected(f);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// draw
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBaseSegment::draw(QPainter* painter) const
|
|
{
|
|
TextLineBase* tl = textLineBase();
|
|
|
|
if (!_text->empty()) {
|
|
painter->translate(_text->pos());
|
|
_text->setVisible(tl->visible());
|
|
_text->draw(painter);
|
|
painter->translate(-_text->pos());
|
|
}
|
|
|
|
if (!_endText->empty()) {
|
|
painter->translate(_endText->pos());
|
|
_endText->setVisible(tl->visible());
|
|
_endText->draw(painter);
|
|
painter->translate(-_endText->pos());
|
|
}
|
|
|
|
if ((npoints == 0) || (score() && (score()->printing() || !score()->showInvisible()) && !tl->lineVisible()))
|
|
return;
|
|
|
|
// color for line (text color comes from the text properties)
|
|
#if 0
|
|
QColor color;
|
|
if ((selected() && !(score() && score()->printing())) || !tl->visible() || !tl->lineVisible())
|
|
color = curColor(tl->visible() && tl->lineVisible());
|
|
else
|
|
color = tl->lineColor();
|
|
#endif
|
|
QColor color = curColor(tl->visible() && tl->lineVisible(), tl->lineColor());
|
|
|
|
qreal textlineLineWidth = tl->lineWidth();
|
|
if (staff())
|
|
textlineLineWidth *= mag();
|
|
QPen pen(color, textlineLineWidth, tl->lineStyle());
|
|
QPen solidPen(color, textlineLineWidth, Qt::SolidLine);
|
|
if (tl->lineStyle() == Qt::CustomDashLine) {
|
|
QVector<qreal> dashes { tl->dashLineLen(), tl->dashGapLen() };
|
|
pen.setDashPattern(dashes);
|
|
}
|
|
|
|
if (twoLines) { // hairpins
|
|
painter->setPen(pen);
|
|
painter->drawLines(&points[0], 1);
|
|
painter->drawLines(&points[2], 1);
|
|
}
|
|
else {
|
|
int start = 0;
|
|
int end = npoints;
|
|
//draw hooks as solid
|
|
painter->setPen(solidPen);
|
|
if (tl->beginHookType() == HookType::HOOK_90T) {
|
|
painter->drawLines(&points[0], 1);
|
|
start++;
|
|
}
|
|
if (tl->endHookType() == HookType::HOOK_90T) {
|
|
painter->drawLines(&points[npoints-1], 1);
|
|
end--;
|
|
}
|
|
//draw rest of line as regular
|
|
//calculate new gap
|
|
if (tl->lineStyle() == Qt::CustomDashLine) {
|
|
qreal adjustedLineLength = lineLength / textlineLineWidth;
|
|
qreal dash = tl->dashLineLen();
|
|
qreal gap = tl->dashGapLen();
|
|
int numPairs;
|
|
qreal newGap = 0;
|
|
QVector<qreal> nDashes { dash, newGap };
|
|
if (tl->beginHookType() == HookType::HOOK_45 || tl->beginHookType() == HookType::HOOK_90) {
|
|
qreal absD = sqrt(QPointF::dotProduct(points[start+1]-points[start], points[start+1]-points[start])) / textlineLineWidth;
|
|
numPairs = max(qreal(1), absD / (dash + gap));
|
|
nDashes[1] = (absD - dash * (numPairs + 1)) / numPairs;
|
|
pen.setDashPattern(nDashes);
|
|
painter->setPen(pen);
|
|
painter->drawLine(points[start+1], points[start]);
|
|
start++;
|
|
}
|
|
if (tl->endHookType() == HookType::HOOK_45 || tl->endHookType() == HookType::HOOK_90) {
|
|
qreal absD = sqrt(QPointF::dotProduct(points[end]-points[end-1], points[end]-points[end-1])) / textlineLineWidth;
|
|
numPairs = max(qreal(1), absD / (dash + gap));
|
|
nDashes[1] = (absD - dash * (numPairs + 1)) / numPairs;
|
|
pen.setDashPattern(nDashes);
|
|
painter->setPen(pen);
|
|
painter->drawLines(&points[end-1], 1);
|
|
end--;
|
|
}
|
|
numPairs = max(qreal(1), adjustedLineLength / (dash + gap));
|
|
nDashes[1] = (adjustedLineLength - dash * (numPairs + 1)) / numPairs;
|
|
pen.setDashPattern(nDashes);
|
|
}
|
|
painter->setPen(pen);
|
|
for (int i = start; i < end; ++i)
|
|
painter->drawLines(&points[i], 1);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// shape
|
|
//---------------------------------------------------------
|
|
|
|
Shape TextLineBaseSegment::shape() const
|
|
{
|
|
Shape shape;
|
|
if (!_text->empty())
|
|
shape.add(_text->bbox().translated(_text->pos()));
|
|
if (!_endText->empty())
|
|
shape.add(_endText->bbox().translated(_endText->pos()));
|
|
qreal lw = textLineBase()->lineWidth();
|
|
qreal lw2 = lw * .5;
|
|
if (twoLines) { // hairpins
|
|
shape.add(QRectF(points[0].x(), points[0].y() - lw2,
|
|
points[1].x() - points[0].x(), points[1].y() - points[0].y() + lw));
|
|
shape.add(QRectF(points[2].x(), points[2].y() - lw2,
|
|
points[3].x() - points[2].x(), points[3].y() - points[2].y() + lw));
|
|
}
|
|
else if (textLineBase()->lineVisible()) {
|
|
for (int i = 0; i < npoints; ++i) {
|
|
shape.add(QRectF(points[i].x() - lw2, points[i].y() - lw2,
|
|
points[i+1].x() - points[i].x() + lw, points[i+1].y() - points[i].y() + lw));
|
|
}
|
|
}
|
|
return shape;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// layout
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBaseSegment::layout()
|
|
{
|
|
npoints = 0;
|
|
TextLineBase* tl = textLineBase();
|
|
qreal _spatium = tl->spatium();
|
|
|
|
if (spanner()->placeBelow())
|
|
rypos() = staff() ? staff()->height() : 0.0;
|
|
|
|
if (!tl->diagonal())
|
|
_offset2.setY(0);
|
|
|
|
switch (spannerSegmentType()) {
|
|
case SpannerSegmentType::SINGLE:
|
|
case SpannerSegmentType::BEGIN:
|
|
_text->setXmlText(tl->beginText());
|
|
_text->setFamily(tl->beginFontFamily());
|
|
_text->setSize(tl->beginFontSize());
|
|
_text->setOffset(tl->beginTextOffset() * mag());
|
|
_text->setAlign(tl->beginTextAlign());
|
|
_text->setBold(tl->beginFontStyle() & FontStyle::Bold);
|
|
_text->setItalic(tl->beginFontStyle() & FontStyle::Italic);
|
|
_text->setUnderline(tl->beginFontStyle() & FontStyle::Underline);
|
|
break;
|
|
case SpannerSegmentType::MIDDLE:
|
|
case SpannerSegmentType::END:
|
|
_text->setXmlText(tl->continueText());
|
|
_text->setFamily(tl->continueFontFamily());
|
|
_text->setSize(tl->continueFontSize());
|
|
_text->setOffset(tl->continueTextOffset() * mag());
|
|
_text->setAlign(tl->continueTextAlign());
|
|
_text->setBold(tl->continueFontStyle() & FontStyle::Bold);
|
|
_text->setItalic(tl->continueFontStyle() & FontStyle::Italic);
|
|
_text->setUnderline(tl->continueFontStyle() & FontStyle::Underline);
|
|
|
|
break;
|
|
}
|
|
_text->setPlacement(Placement::ABOVE);
|
|
_text->setTrack(track());
|
|
_text->layout();
|
|
|
|
if ((isSingleType() || isEndType())) {
|
|
_endText->setXmlText(tl->endText());
|
|
_endText->setFamily(tl->endFontFamily());
|
|
_endText->setSize(tl->endFontSize());
|
|
_endText->setOffset(tl->endTextOffset());
|
|
_endText->setAlign(tl->endTextAlign());
|
|
_endText->setBold(tl->endFontStyle() & FontStyle::Bold);
|
|
_endText->setItalic(tl->endFontStyle() & FontStyle::Italic);
|
|
_endText->setUnderline(tl->endFontStyle() & FontStyle::Underline);
|
|
_endText->setPlacement(Placement::ABOVE);
|
|
_endText->setTrack(track());
|
|
_endText->layout();
|
|
}
|
|
else {
|
|
_endText->setXmlText("");
|
|
}
|
|
|
|
QPointF pp1;
|
|
QPointF pp2(pos2());
|
|
|
|
// diagonal line with no text or hooks - just use the basic rectangle for line
|
|
if (_text->empty() && _endText->empty() && pp2.y() != 0
|
|
&& textLineBase()->beginHookType() == HookType::NONE) {
|
|
npoints = 2;
|
|
points[0] = pp1;
|
|
points[1] = pp2;
|
|
lineLength = sqrt(QPointF::dotProduct(pp2-pp1, pp2-pp1));
|
|
|
|
setbbox(QRectF(pp1, pp2).normalized());
|
|
return;
|
|
}
|
|
|
|
// line has text or hooks or is not diagonal - calculate reasonable bbox
|
|
|
|
qreal x1 = qMin(0.0, pp2.x());
|
|
qreal x2 = qMax(0.0, pp2.x());
|
|
qreal y0 = -textLineBase()->lineWidth();
|
|
qreal y1 = qMin(0.0, pp2.y()) + y0;
|
|
qreal y2 = qMax(0.0, pp2.y()) - y0;
|
|
|
|
qreal l = 0.0;
|
|
if (!_text->empty()) {
|
|
qreal textlineTextDistance = _spatium * .5;
|
|
if (((isSingleType() || isBeginType())
|
|
&& (tl->beginTextPlace() == PlaceText::LEFT || tl->beginTextPlace() == PlaceText::AUTO))
|
|
|| ((isMiddleType() || isEndType()) && (tl->continueTextPlace() == PlaceText::LEFT))) {
|
|
l = _text->pos().x() + _text->bbox().width() + textlineTextDistance;
|
|
}
|
|
qreal h = _text->height();
|
|
if (textLineBase()->beginTextPlace() == PlaceText::ABOVE)
|
|
y1 = qMin(y1, -h);
|
|
else if (textLineBase()->beginTextPlace() == PlaceText::BELOW)
|
|
y2 = qMax(y2, h);
|
|
else {
|
|
y1 = qMin(y1, -h * .5);
|
|
y2 = qMax(y2, h * .5);
|
|
}
|
|
x2 = qMax(x2, _text->width());
|
|
}
|
|
|
|
if (textLineBase()->endHookType() != HookType::NONE) {
|
|
qreal h = pp2.y() + textLineBase()->endHookHeight().val() * _spatium;
|
|
if (h > y2)
|
|
y2 = h;
|
|
else if (h < y1)
|
|
y1 = h;
|
|
}
|
|
|
|
if (textLineBase()->beginHookType() != HookType::NONE) {
|
|
qreal h = textLineBase()->beginHookHeight().val() * _spatium;
|
|
if (h > y2)
|
|
y2 = h;
|
|
else if (h < y1)
|
|
y1 = h;
|
|
}
|
|
bbox().setRect(x1, y1, x2 - x1, y2 - y1);
|
|
if (!_text->empty())
|
|
bbox() |= _text->bbox().translated(_text->pos()); // DEBUG
|
|
// set end text position and extend bbox
|
|
if (!_endText->empty()) {
|
|
_endText->setPos(bbox().right(), 0);
|
|
bbox() |= _endText->bbox().translated(_endText->pos());
|
|
}
|
|
|
|
if (!(tl->lineVisible() || score()->showInvisible()))
|
|
return;
|
|
|
|
if (tl->lineVisible() || !score()->printing()) {
|
|
pp1 = QPointF(l, 0.0);
|
|
|
|
qreal beginHookWidth;
|
|
qreal endHookWidth;
|
|
|
|
if (tl->beginHookType() == HookType::HOOK_45) {
|
|
beginHookWidth = fabs(tl->beginHookHeight().val() * _spatium * .4);
|
|
pp1.rx() += beginHookWidth;
|
|
}
|
|
else
|
|
beginHookWidth = 0;
|
|
|
|
if (tl->endHookType() == HookType::HOOK_45) {
|
|
endHookWidth = fabs(tl->endHookHeight().val() * _spatium * .4);
|
|
pp2.rx() -= endHookWidth;
|
|
}
|
|
else
|
|
endHookWidth = 0;
|
|
|
|
// don't draw backwards lines (or hooks) if text is longer than nominal line length
|
|
bool backwards = !_text->empty() && pp1.x() > pp2.x() && !tl->diagonal();
|
|
|
|
if ((tl->beginHookType() != HookType::NONE) && (isSingleType() || isBeginType())) {
|
|
qreal hh = tl->beginHookHeight().val() * _spatium;
|
|
if (tl->beginHookType() == HookType::HOOK_90T)
|
|
points[npoints++] = QPointF(pp1.x() - beginHookWidth, pp1.y() - hh);
|
|
points[npoints] = QPointF(pp1.x() - beginHookWidth, pp1.y() + hh);
|
|
++npoints;
|
|
points[npoints] = pp1;
|
|
}
|
|
if (!backwards) {
|
|
points[npoints] = pp1;
|
|
++npoints;
|
|
points[npoints] = pp2;
|
|
lineLength = sqrt(QPointF::dotProduct(pp2-pp1, pp2-pp1));
|
|
// painter->drawLine(QLineF(pp1.x(), pp1.y(), pp2.x(), pp2.y()));
|
|
|
|
if ((tl->endHookType() != HookType::NONE) && (isSingleType() || isEndType())) {
|
|
++npoints;
|
|
qreal hh = tl->endHookHeight().val() * _spatium;
|
|
// painter->drawLine(QLineF(pp2.x(), pp2.y(), pp2.x() + endHookWidth, pp2.y() + hh));
|
|
points[npoints] = QPointF(pp2.x() + endHookWidth, pp2.y() + hh);
|
|
if (tl->endHookType() == HookType::HOOK_90T)
|
|
points[++npoints] = QPointF(pp2.x() + endHookWidth, pp2.y() - hh);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// spatiumChanged
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBaseSegment::spatiumChanged(qreal ov, qreal nv)
|
|
{
|
|
LineSegment::spatiumChanged(ov, nv);
|
|
|
|
textLineBase()->spatiumChanged(ov, nv);
|
|
_text->spatiumChanged(ov, nv);
|
|
_endText->spatiumChanged(ov, nv);
|
|
}
|
|
|
|
static constexpr std::array<Pid, 26> pids = { {
|
|
Pid::LINE_VISIBLE,
|
|
Pid::BEGIN_HOOK_TYPE,
|
|
Pid::BEGIN_HOOK_HEIGHT,
|
|
Pid::END_HOOK_TYPE,
|
|
Pid::END_HOOK_HEIGHT,
|
|
Pid::BEGIN_TEXT,
|
|
Pid::BEGIN_TEXT_ALIGN,
|
|
Pid::BEGIN_TEXT_PLACE,
|
|
Pid::BEGIN_FONT_FACE,
|
|
Pid::BEGIN_FONT_SIZE,
|
|
Pid::BEGIN_FONT_STYLE,
|
|
Pid::BEGIN_TEXT_OFFSET,
|
|
Pid::CONTINUE_TEXT,
|
|
Pid::CONTINUE_TEXT_ALIGN,
|
|
Pid::CONTINUE_TEXT_PLACE,
|
|
Pid::CONTINUE_FONT_FACE,
|
|
Pid::CONTINUE_FONT_SIZE,
|
|
Pid::CONTINUE_FONT_STYLE,
|
|
Pid::CONTINUE_TEXT_OFFSET,
|
|
Pid::END_TEXT,
|
|
Pid::END_TEXT_ALIGN,
|
|
Pid::END_TEXT_PLACE,
|
|
Pid::END_FONT_FACE,
|
|
Pid::END_FONT_SIZE,
|
|
Pid::END_FONT_STYLE,
|
|
Pid::END_TEXT_OFFSET,
|
|
} };
|
|
|
|
//---------------------------------------------------------
|
|
// propertyDelegate
|
|
//---------------------------------------------------------
|
|
|
|
Element* TextLineBaseSegment::propertyDelegate(Pid pid)
|
|
{
|
|
for (Pid id : pids) {
|
|
if (pid == id)
|
|
return spanner();
|
|
}
|
|
return LineSegment::propertyDelegate(pid);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// TextLineBase
|
|
//---------------------------------------------------------
|
|
|
|
TextLineBase::TextLineBase(Score* s, ElementFlags f)
|
|
: SLine(s, f)
|
|
{
|
|
setBeginHookHeight(Spatium(1.9));
|
|
setEndHookHeight(Spatium(1.9));
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// write
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBase::write(XmlWriter& xml) const
|
|
{
|
|
if (!xml.canWrite(this))
|
|
return;
|
|
xml.stag(this);
|
|
writeProperties(xml);
|
|
xml.etag();
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// read
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBase::read(XmlReader& e)
|
|
{
|
|
eraseSpannerSegments();
|
|
|
|
if (score()->mscVersion() < 301)
|
|
e.addSpanner(e.intAttribute("id", -1), this);
|
|
|
|
while (e.readNextStartElement()) {
|
|
if (!readProperties(e))
|
|
e.unknown();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// spatiumChanged
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBase::spatiumChanged(qreal /*ov*/, qreal /*nv*/)
|
|
{
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// writeProperties
|
|
// write properties different from prototype
|
|
//---------------------------------------------------------
|
|
|
|
void TextLineBase::writeProperties(XmlWriter& xml) const
|
|
{
|
|
for (Pid pid : pids) {
|
|
if (!isStyled(pid))
|
|
writeProperty(xml, pid);
|
|
}
|
|
SLine::writeProperties(xml);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// readProperties
|
|
//---------------------------------------------------------
|
|
|
|
bool TextLineBase::readProperties(XmlReader& e)
|
|
{
|
|
const QStringRef& tag(e.name());
|
|
for (Pid i : pids) {
|
|
if (readProperty(tag, e, i)) {
|
|
setPropertyFlags(i, PropertyFlags::UNSTYLED);
|
|
return true;
|
|
}
|
|
}
|
|
return SLine::readProperties(e);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// TextLineBase::propertyId
|
|
//---------------------------------------------------------
|
|
|
|
Pid TextLineBase::propertyId(const QStringRef& name) const
|
|
{
|
|
for (Pid pid : pids) {
|
|
if (propertyName(pid) == name)
|
|
return pid;
|
|
}
|
|
return SLine::propertyId(name);
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// getProperty
|
|
//---------------------------------------------------------
|
|
|
|
QVariant TextLineBase::getProperty(Pid id) const
|
|
{
|
|
switch (id) {
|
|
case Pid::BEGIN_TEXT:
|
|
return beginText();
|
|
case Pid::BEGIN_TEXT_ALIGN:
|
|
return QVariant::fromValue(beginTextAlign());
|
|
case Pid::CONTINUE_TEXT_ALIGN:
|
|
return QVariant::fromValue(continueTextAlign());
|
|
case Pid::END_TEXT_ALIGN:
|
|
return QVariant::fromValue(endTextAlign());
|
|
case Pid::BEGIN_TEXT_PLACE:
|
|
return int(_beginTextPlace);
|
|
case Pid::BEGIN_HOOK_TYPE:
|
|
return int(_beginHookType);
|
|
case Pid::BEGIN_HOOK_HEIGHT:
|
|
return _beginHookHeight;
|
|
case Pid::BEGIN_FONT_FACE:
|
|
return _beginFontFamily;
|
|
case Pid::BEGIN_FONT_SIZE:
|
|
return _beginFontSize;
|
|
case Pid::BEGIN_FONT_STYLE:
|
|
return int(_beginFontStyle);
|
|
case Pid::BEGIN_TEXT_OFFSET:
|
|
return _beginTextOffset;
|
|
case Pid::CONTINUE_TEXT:
|
|
return continueText();
|
|
case Pid::CONTINUE_TEXT_PLACE:
|
|
return int(_continueTextPlace);
|
|
case Pid::CONTINUE_FONT_FACE:
|
|
return _continueFontFamily;
|
|
case Pid::CONTINUE_FONT_SIZE:
|
|
return _continueFontSize;
|
|
case Pid::CONTINUE_FONT_STYLE:
|
|
return int(_continueFontStyle);
|
|
case Pid::CONTINUE_TEXT_OFFSET:
|
|
return _continueTextOffset;
|
|
case Pid::END_TEXT:
|
|
return endText();
|
|
case Pid::END_TEXT_PLACE:
|
|
return int(_endTextPlace);
|
|
case Pid::END_HOOK_TYPE:
|
|
return int(_endHookType);
|
|
case Pid::END_HOOK_HEIGHT:
|
|
return _endHookHeight;
|
|
case Pid::END_FONT_FACE:
|
|
return _endFontFamily;
|
|
case Pid::END_FONT_SIZE:
|
|
return _endFontSize;
|
|
case Pid::END_FONT_STYLE:
|
|
return int(_endFontStyle);
|
|
case Pid::END_TEXT_OFFSET:
|
|
return _endTextOffset;
|
|
case Pid::LINE_VISIBLE:
|
|
return lineVisible();
|
|
default:
|
|
return SLine::getProperty(id);
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// setProperty
|
|
//---------------------------------------------------------
|
|
|
|
bool TextLineBase::setProperty(Pid id, const QVariant& v)
|
|
{
|
|
switch (id) {
|
|
case Pid::BEGIN_TEXT_PLACE:
|
|
_beginTextPlace = PlaceText(v.toInt());
|
|
break;
|
|
case Pid::BEGIN_TEXT_ALIGN:
|
|
_beginTextAlign = v.value<Align>();
|
|
break;
|
|
case Pid::CONTINUE_TEXT_ALIGN:
|
|
_continueTextAlign = v.value<Align>();
|
|
break;
|
|
case Pid::END_TEXT_ALIGN:
|
|
_endTextAlign = v.value<Align>();
|
|
break;
|
|
case Pid::CONTINUE_TEXT_PLACE:
|
|
_continueTextPlace = PlaceText(v.toInt());
|
|
break;
|
|
case Pid::END_TEXT_PLACE:
|
|
_endTextPlace = PlaceText(v.toInt());
|
|
break;
|
|
case Pid::BEGIN_HOOK_HEIGHT:
|
|
_beginHookHeight = v.value<Spatium>();
|
|
break;
|
|
case Pid::END_HOOK_HEIGHT:
|
|
_endHookHeight = v.value<Spatium>();
|
|
break;
|
|
case Pid::BEGIN_HOOK_TYPE:
|
|
_beginHookType = HookType(v.toInt());
|
|
break;
|
|
case Pid::END_HOOK_TYPE:
|
|
_endHookType = HookType(v.toInt());
|
|
break;
|
|
case Pid::BEGIN_TEXT:
|
|
setBeginText(v.toString());
|
|
break;
|
|
case Pid::BEGIN_TEXT_OFFSET:
|
|
setBeginTextOffset(v.toPointF());
|
|
break;
|
|
case Pid::CONTINUE_TEXT_OFFSET:
|
|
setContinueTextOffset(v.toPointF());
|
|
break;
|
|
case Pid::END_TEXT_OFFSET:
|
|
setEndTextOffset(v.toPointF());
|
|
break;
|
|
case Pid::CONTINUE_TEXT:
|
|
setContinueText(v.toString());
|
|
break;
|
|
case Pid::END_TEXT:
|
|
setEndText(v.toString());
|
|
break;
|
|
case Pid::LINE_VISIBLE:
|
|
setLineVisible(v.toBool());
|
|
break;
|
|
case Pid::BEGIN_FONT_FACE:
|
|
setBeginFontFamily(v.toString());
|
|
break;
|
|
case Pid::BEGIN_FONT_SIZE:
|
|
if (v.toReal() <= 0)
|
|
qFatal("font size is %f", v.toReal());
|
|
setBeginFontSize(v.toReal());
|
|
break;
|
|
case Pid::BEGIN_FONT_STYLE:
|
|
setBeginFontStyle(FontStyle(v.toInt()));
|
|
break;
|
|
case Pid::CONTINUE_FONT_FACE:
|
|
setContinueFontFamily(v.toString());
|
|
break;
|
|
case Pid::CONTINUE_FONT_SIZE:
|
|
setContinueFontSize(v.toReal());
|
|
break;
|
|
case Pid::CONTINUE_FONT_STYLE:
|
|
setContinueFontStyle(FontStyle(v.toInt()));
|
|
break;
|
|
case Pid::END_FONT_FACE:
|
|
setEndFontFamily(v.toString());
|
|
break;
|
|
case Pid::END_FONT_SIZE:
|
|
setEndFontSize(v.toReal());
|
|
break;
|
|
case Pid::END_FONT_STYLE:
|
|
setEndFontStyle(FontStyle(v.toInt()));
|
|
break;
|
|
default:
|
|
return SLine::setProperty(id, v);
|
|
}
|
|
triggerLayout();
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|