1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
//=============================================================================
// 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 __VOLTA_H__
#define __VOLTA_H__
#include "textline.h"
namespace Ms {
class Score;
class Xml;
class Volta;
class Measure;
extern void vdebug(int n);
extern LineSegment* voltaDebug;
//---------------------------------------------------------
// @@ VoltaSegment
//---------------------------------------------------------
class VoltaSegment : public TextLineSegment {
Q_OBJECT
public:
VoltaSegment(Score* s) : TextLineSegment(s) {}
virtual Element::Type type() const override { return Element::Type::VOLTA_SEGMENT; }
virtual VoltaSegment* clone() const override { return new VoltaSegment(*this); }
Volta* volta() const { return (Volta*)spanner(); }
virtual void layout() override;
virtual QVariant getProperty(P_ID propertyId) const override;
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
virtual QVariant propertyDefault(P_ID) const override;
virtual PropertyStyle propertyStyle(P_ID) const override;
virtual void resetProperty(P_ID id) override;
virtual void styleChanged() override;
};
//---------------------------------------------------------
// @@ Volta
// @P voltaType enum (Volta.CLOSE, Volta.OPEN)
//---------------------------------------------------------
class Volta : public TextLine {
Q_OBJECT
Q_PROPERTY(Ms::Volta::Type voltaType READ voltaType WRITE undoSetVoltaType)
Q_ENUMS(Type)
QList<int> _endings;
PropertyStyle lineWidthStyle;
PropertyStyle lineStyleStyle;
public:
enum class Type : char {
OPEN, CLOSED
};
Volta(Score* s);
virtual Volta* clone() const override { return new Volta(*this); }
virtual Element::Type type() const override { return Element::Type::VOLTA; }
virtual LineSegment* createLineSegment() override;
virtual void write(Xml&) const override;
virtual void read(XmlReader& e) override;
QList<int> endings() const { return _endings; }
QList<int>& endings() { return _endings; }
void setEndings(const QList<int>& l) { _endings = l; }
void setText(const QString& s);
QString text() const;
void setVoltaType(Type val);
void undoSetVoltaType(Type val);
Type voltaType() const;
bool hasEnding(int repeat) const;
virtual QVariant getProperty(P_ID propertyId) const override;
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
virtual QVariant propertyDefault(P_ID) const override;
virtual PropertyStyle propertyStyle(P_ID) const override;
virtual void resetProperty(P_ID id) override;
virtual void styleChanged() override;
virtual void setYoff(qreal) override;
virtual void reset() override;
virtual bool systemFlag() const override { return true; }
virtual QString accessibleInfo() override;
};
} // namespace Ms
Q_DECLARE_METATYPE(Ms::Volta::Type);
#endif
|