MuseScore/libmscore/systemtext.h

40 lines
1.2 KiB
C
Raw Normal View History

2017-01-20 11:05:52 +01:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 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 __SYSTEMTEXT_H__
#define __SYSTEMTEXT_H__
#include "stafftext.h"
namespace Ms {
//---------------------------------------------------------
// SystemText
//---------------------------------------------------------
class SystemText final : public StaffTextBase {
2020-03-27 12:07:27 +01:00
void layout() override;
QVariant propertyDefault(Pid id) const override;
2018-08-01 11:46:07 +02:00
2017-01-20 11:05:52 +01:00
public:
SystemText(Score* = 0, Tid = Tid::SYSTEM);
2018-08-01 11:46:07 +02:00
2020-03-27 12:07:27 +01:00
SystemText* clone() const override { return new SystemText(*this); }
ElementType type() const override { return ElementType::SYSTEM_TEXT; }
Segment* segment() const { return (Segment*)parent(); }
2017-01-20 11:05:52 +01:00
};
} // namespace Ms
#endif