MuseScore/libmscore/palmmute.cpp
ws ffdab67a9d fix handling of custom formatted text and values in inspector:
- replace properties "BOLD ITALIC UNDERLINE" by one property FONT_STYLE
- if text is custom fomatted (has size/fontface changes, contains parts in bold/italic etc.
  then the appropriate property values are set to "unstyled". This enables the reset button
  in the inspector.
- pressing reset for some text properties strips changes of this property in the text
  Example: text contains a part in italic: pressing reset removes the italic formatting
- the "remove custom formatting" button is only enabled if there is some custom formatting
2018-11-26 21:17:19 +01:00

249 lines
9 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2017 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 "palmmute.h"
#include "sym.h"
#include "xml.h"
#include "system.h"
#include "measure.h"
#include "chordrest.h"
#include "score.h"
namespace Ms {
static const ElementStyle palmMuteStyle {
{ Sid::palmMuteFontFace, Pid::BEGIN_FONT_FACE },
{ Sid::palmMuteFontFace, Pid::CONTINUE_FONT_FACE },
{ Sid::palmMuteFontFace, Pid::END_FONT_FACE },
{ Sid::palmMuteFontSize, Pid::BEGIN_FONT_SIZE },
{ Sid::palmMuteFontSize, Pid::CONTINUE_FONT_SIZE },
{ Sid::palmMuteFontSize, Pid::END_FONT_SIZE },
{ Sid::palmMuteFontStyle, Pid::BEGIN_FONT_STYLE },
{ Sid::palmMuteFontStyle, Pid::CONTINUE_FONT_STYLE },
{ Sid::palmMuteFontStyle, Pid::END_FONT_STYLE },
{ Sid::palmMuteTextAlign, Pid::BEGIN_TEXT_ALIGN },
{ Sid::palmMuteTextAlign, Pid::CONTINUE_TEXT_ALIGN },
{ Sid::palmMuteTextAlign, Pid::END_TEXT_ALIGN },
{ Sid::palmMuteHookHeight, Pid::BEGIN_HOOK_HEIGHT },
{ Sid::palmMuteHookHeight, Pid::END_HOOK_HEIGHT },
{ Sid::palmMutePosBelow, Pid::OFFSET },
};
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void PalmMuteSegment::layout()
{
TextLineBaseSegment::layout();
autoplaceSpannerSegment(spatium() * .7);
}
//---------------------------------------------------------
// getPropertyStyle
//---------------------------------------------------------
Sid PalmMuteSegment::getPropertyStyle(Pid pid) const
{
if (pid == Pid::OFFSET)
return spanner()->placeAbove() ? Sid::palmMutePosAbove : Sid::palmMutePosBelow;
return TextLineBaseSegment::getPropertyStyle(pid);
}
Sid PalmMute::getPropertyStyle(Pid pid) const
{
if (pid == Pid::OFFSET)
return placeAbove() ? Sid::palmMutePosAbove : Sid::palmMutePosBelow;
return TextLineBase::getPropertyStyle(pid);
}
//---------------------------------------------------------
// PalmMute
//---------------------------------------------------------
PalmMute::PalmMute(Score* s)
: TextLineBase(s)
{
initElementStyle(&palmMuteStyle);
resetProperty(Pid::LINE_VISIBLE);
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
void PalmMute::read(XmlReader& e)
{
if (score()->mscVersion() < 301)
e.addSpanner(e.intAttribute("id", -1), this);
while (e.readNextStartElement()) {
if (!TextLineBase::readProperties(e))
e.unknown();
}
}
//---------------------------------------------------------
// write
//---------------------------------------------------------
void PalmMute::write(XmlWriter& xml) const
{
if (!xml.canWrite(this))
return;
xml.stag(this);
for (const StyledProperty& spp : *styledProperties())
writeProperty(xml, spp.pid);
Element::writeProperties(xml);
xml.etag();
}
//---------------------------------------------------------
// createLineSegment
//---------------------------------------------------------
static const ElementStyle palmMuteSegmentStyle {
{ Sid::palmMutePosBelow, Pid::OFFSET },
};
LineSegment* PalmMute::createLineSegment()
{
PalmMuteSegment* pms = new PalmMuteSegment(score());
pms->initElementStyle(&palmMuteSegmentStyle);
return pms;
}
//---------------------------------------------------------
// propertyDefault
//---------------------------------------------------------
QVariant PalmMute::propertyDefault(Pid propertyId) const
{
switch (propertyId) {
case Pid::LINE_WIDTH:
return score()->styleV(Sid::palmMuteLineWidth);
case Pid::ALIGN:
return QVariant::fromValue(Align::LEFT | Align::BASELINE);
case Pid::LINE_STYLE:
return score()->styleV(Sid::palmMuteLineStyle);
case Pid::LINE_VISIBLE:
return true;
case Pid::BEGIN_TEXT_OFFSET:
return score()->styleV(Sid::palmMuteBeginTextOffset).toPointF();
case Pid::BEGIN_TEXT_ALIGN:
case Pid::CONTINUE_TEXT_ALIGN:
case Pid::END_TEXT_ALIGN:
return score()->styleV(Sid::palmMuteTextAlign);
case Pid::BEGIN_HOOK_HEIGHT:
case Pid::END_HOOK_HEIGHT:
return score()->styleV(Sid::palmMuteHookHeight);
//TODOws case Pid::BEGIN_FONT_ITALIC:
// return score()->styleV(Sid::palmMuteFontItalic);
case Pid::BEGIN_TEXT:
return score()->styleV(Sid::palmMuteText);
case Pid::END_HOOK_TYPE:
return int(HookType::HOOK_90T);
default:
return TextLineBase::propertyDefault(propertyId);
}
}
//---------------------------------------------------------
// linePos
// return System() coordinates
//---------------------------------------------------------
QPointF PalmMute::linePos(Grip grip, System** sys) const
{
qreal x = 0.0;
qreal nhw = score()->noteHeadWidth();
System* s = nullptr;
if (grip == Grip::START) {
ChordRest* c = toChordRest(startElement());
s = c->segment()->system();
x = c->pos().x() + c->segment()->pos().x() + c->segment()->measure()->pos().x();
if (c->isRest() && c->durationType() == TDuration::DurationType::V_MEASURE)
x -= c->x();
}
else {
Element* e = endElement();
ChordRest* c = toChordRest(endElement());
if (!e || e == startElement() || (endHookType() == HookType::HOOK_90)) {
// palmMute marking on single note or ends with non-angled hook:
// extend to next note or end of measure
Segment* seg = nullptr;
if (!e)
seg = startSegment();
else
seg = c->segment();
if (seg) {
seg = seg->next();
for ( ; seg; seg = seg->next()) {
if (seg->isChordRestType()) {
// look for a chord/rest in any voice on this staff
bool crFound = false;
int track = staffIdx() * VOICES;
for (int i = 0; i < VOICES; ++i) {
if (seg->element(track + i)) {
crFound = true;
break;
}
}
if (crFound)
break;
}
else if (seg->segmentType() == SegmentType::EndBarLine) {
break;
}
}
}
if (seg) {
s = seg->system();
x = seg->pos().x() + seg->measure()->pos().x() - nhw * 2;
}
}
else if (c) {
s = c->segment()->system();
x = c->pos().x() + c->segment()->pos().x() + c->segment()->measure()->pos().x();
if (c->type() == ElementType::REST && c->durationType() == TDuration::DurationType::V_MEASURE)
x -= c->x();
}
if (!s) {
int t = tick2();
Measure* m = score()->tick2measure(t);
s = m->system();
x = m->tick2pos(t);
}
if (endHookType() == HookType::HOOK_45)
x += nhw * .5;
else
x += nhw;
}
*sys = s;
return QPointF(x, 0);
}
}