MuseScore/libmscore/textframe.cpp

104 lines
2.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->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
}
2013-05-13 18:49:17 +02:00
}