MuseScore/libmscore/textframe.cpp

167 lines
4.8 KiB
C++
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// 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 "box.h"
#include "text.h"
#include "score.h"
#include "barline.h"
#include "repeat.h"
#include "symbol.h"
#include "system.h"
#include "image.h"
#include "layoutbreak.h"
#include "fret.h"
#include "mscore.h"
#include "textframe.h"
2014-10-16 11:56:06 +02:00
#include "xml.h"
2012-05-26 14:26:10 +02:00
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// TBox
//---------------------------------------------------------
TBox::TBox(Score* score)
: VBox(score)
{
2014-10-16 11:56:06 +02:00
setBoxHeight(Spatium(1));
_text = new Text(score);
_text->setLayoutToParentWidth(true);
2014-10-16 11:56:06 +02:00
_text->setParent(this);
_text->setTextStyleType(TextStyleType::FRAME);
}
TBox::~TBox()
{
delete _text;
2012-05-26 14:26:10 +02:00
}
//---------------------------------------------------------
// layout
/// The text box layout() adjusts the frame height to text
/// height.
//---------------------------------------------------------
void TBox::layout()
{
setPos(QPointF()); // !?
2013-01-02 09:29:17 +01:00
bbox().setRect(0.0, 0.0, system()->width(), point(boxHeight()));
2014-10-16 11:56:06 +02:00
_text->layout();
_text->setPos(leftMargin() * MScore::DPMM, topMargin() * MScore::DPMM);
qreal h = _text->isEmpty() ? _text->lineSpacing() : _text->height();
bbox().setRect(0.0, 0.0, system()->width(), h);
2012-05-26 14:26:10 +02:00
MeasureBase::layout(); // layout LayoutBreak's
}
//---------------------------------------------------------
2014-10-16 11:56:06 +02:00
// write
//---------------------------------------------------------
void TBox::write(Xml& xml) const
{
xml.stag(name());
Box::writeProperties(xml);
_text->write(xml);
xml.etag();
}
//---------------------------------------------------------
// read
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2014-10-16 11:56:06 +02:00
void TBox::read(XmlReader& e)
2012-05-26 14:26:10 +02:00
{
2014-10-16 11:56:06 +02:00
while (e.readNextStartElement()) {
const QStringRef& tag(e.name());
if (tag == "Text")
_text->read(e);
else if (Box::readProperties(e))
;
else
e.unknown();
2012-05-26 14:26:10 +02:00
}
}
//---------------------------------------------------------
2014-10-16 11:56:06 +02:00
// scanElements
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2014-10-16 11:56:06 +02:00
void TBox::scanElements(void* data, void (*func)(void*, Element*), bool all)
2012-05-26 14:26:10 +02:00
{
2014-10-16 11:56:06 +02:00
_text->scanElements(data, func, all);
Box::scanElements(data, func, all);
2012-05-26 14:26:10 +02:00
}
//---------------------------------------------------------
// drop
//---------------------------------------------------------
Element* TBox::drop(const DropData& data)
{
Element* e = data.element;
switch (e->type()) {
case Element::Type::TEXT:
{
Text* t = static_cast<Text*>(e);
_text->undoSetText(t->xmlText());
_text->undoChangeProperty(P_ID::TEXT_STYLE, QVariant::fromValue(t->textStyle()));
delete e;
return _text;
}
default:
return VBox::drop(data);
}
}
//---------------------------------------------------------
// add
/// Add new Element \a el to TBox
//---------------------------------------------------------
void TBox::add(Element* e)
{
if (e->type() == Element::Type::TEXT) {
// does not normally happen, since drop() handles this directly
Text* t = static_cast<Text*>(e);
_text->undoSetText(t->xmlText());
_text->undoChangeProperty(P_ID::TEXT_STYLE, QVariant::fromValue(t->textStyle()));
}
else {
VBox::add(e);
}
}
//---------------------------------------------------------
// remove
//---------------------------------------------------------
void TBox::remove(Element* el)
{
if (el == _text) {
// does not normally happen, since Score::deleteItem() handles this directly
// but if it does:
// replace with new empty text element
// this keeps undo/redo happier than just clearing the text
qDebug("TBox::remove() - replacing _text");
_text = new Text(score());
_text->setLayoutToParentWidth(true);
_text->setParent(this);
_text->setTextStyleType(TextStyleType::FRAME);
}
else {
VBox::remove(el);
}
}
2013-05-13 18:49:17 +02:00
}