61 lines
1.7 KiB
C++
61 lines
1.7 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
|
|
//=============================================================================
|
|
|
|
#ifndef __TEXTLINE_H__
|
|
#define __TEXTLINE_H__
|
|
|
|
#include "textlinebase.h"
|
|
|
|
namespace Ms {
|
|
class Note;
|
|
|
|
//---------------------------------------------------------
|
|
// @@ TextLineSegment
|
|
//---------------------------------------------------------
|
|
|
|
class TextLineSegment final : public TextLineBaseSegment
|
|
{
|
|
Sid getPropertyStyle(Pid) const override;
|
|
|
|
public:
|
|
TextLineSegment(Spanner* sp, Score* s);
|
|
|
|
ElementType type() const override { return ElementType::TEXTLINE_SEGMENT; }
|
|
TextLineSegment* clone() const override { return new TextLineSegment(*this); }
|
|
|
|
TextLine* textLine() const { return toTextLine(spanner()); }
|
|
void layout() override;
|
|
};
|
|
|
|
//---------------------------------------------------------
|
|
// @@ TextLine
|
|
//---------------------------------------------------------
|
|
|
|
class TextLine final : public TextLineBase
|
|
{
|
|
Sid getPropertyStyle(Pid) const override;
|
|
|
|
public:
|
|
TextLine(Score* s);
|
|
TextLine(const TextLine&);
|
|
~TextLine() {}
|
|
|
|
TextLine* clone() const override { return new TextLine(*this); }
|
|
ElementType type() const override { return ElementType::TEXTLINE; }
|
|
|
|
void write(XmlWriter&) const override;
|
|
|
|
LineSegment* createLineSegment() override;
|
|
QVariant propertyDefault(Pid) const override;
|
|
};
|
|
} // namespace Ms
|
|
#endif
|