MuseScore/src/engraving/libmscore/sticking.cpp

97 lines
2.5 KiB
C++

/*
* SPDX-License-Identifier: GPL-3.0-only
* MuseScore-CLA-applies
*
* MuseScore
* Music Composition & Notation
*
* Copyright (C) 2021 MuseScore BVBA and others
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "sticking.h"
#include "io/xml.h"
#include "segment.h"
using namespace mu;
namespace Ms {
//---------------------------------------------------------
// stickingStyle
//---------------------------------------------------------
static const ElementStyle stickingStyle {
{ Sid::stickingPlacement, Pid::PLACEMENT },
{ Sid::stickingMinDistance, Pid::MIN_DISTANCE },
};
//---------------------------------------------------------
// Sticking
//---------------------------------------------------------
Sticking::Sticking(Segment* parent)
: TextBase(ElementType::STICKING, parent, Tid::STICKING, ElementFlag::MOVABLE | ElementFlag::ON_STAFF)
{
initElementStyle(&stickingStyle);
}
//---------------------------------------------------------
// write
//---------------------------------------------------------
void Sticking::write(XmlWriter& xml) const
{
if (!xml.canWrite(this)) {
return;
}
xml.startObject(this);
TextBase::writeProperties(xml);
xml.endObject();
}
//---------------------------------------------------------
// read
//---------------------------------------------------------
void Sticking::read(XmlReader& e)
{
TextBase::read(e);
}
//---------------------------------------------------------
// layout
//---------------------------------------------------------
void Sticking::layout()
{
TextBase::layout();
autoplaceSegmentElement();
}
//---------------------------------------------------------
// propertyDefault
//---------------------------------------------------------
QVariant Sticking::propertyDefault(Pid id) const
{
switch (id) {
case Pid::SUB_STYLE:
return int(Tid::STICKING);
default:
return TextBase::propertyDefault(id);
}
}
}