111 lines
3.4 KiB
C++
111 lines
3.4 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 __VOLTA_H__
|
|
#define __VOLTA_H__
|
|
|
|
#include "textline.h"
|
|
|
|
namespace Ms {
|
|
|
|
class Score;
|
|
class Xml;
|
|
class Volta;
|
|
class Measure;
|
|
|
|
//---------------------------------------------------------
|
|
// VoltaType
|
|
//---------------------------------------------------------
|
|
|
|
enum class VoltaType : char {
|
|
OPEN, CLOSED
|
|
};
|
|
|
|
extern void vdebug(int n);
|
|
extern LineSegment* voltaDebug;
|
|
|
|
//---------------------------------------------------------
|
|
// @@ VoltaSegment
|
|
//---------------------------------------------------------
|
|
|
|
class VoltaSegment : public TextLineSegment {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
VoltaSegment(Score* s) : TextLineSegment(s) {}
|
|
virtual ElementType type() const { return ElementType::VOLTA_SEGMENT; }
|
|
virtual VoltaSegment* clone() const { return new VoltaSegment(*this); }
|
|
Volta* volta() const { return (Volta*)spanner(); }
|
|
virtual void layout();
|
|
virtual QVariant getProperty(P_ID propertyId) const;
|
|
virtual bool setProperty(P_ID propertyId, const QVariant&);
|
|
virtual QVariant propertyDefault(P_ID) const;
|
|
virtual PropertyStyle propertyStyle(P_ID) const override;
|
|
virtual void resetProperty(P_ID id) override;
|
|
virtual void styleChanged() override;
|
|
virtual void reset() override { spanner()->reset(); }
|
|
};
|
|
|
|
//---------------------------------------------------------
|
|
// @@ Volta
|
|
// @P voltaType Ms::VoltaType (OPEN, CLOSED)
|
|
//---------------------------------------------------------
|
|
|
|
class Volta : public TextLine {
|
|
Q_OBJECT
|
|
|
|
private:
|
|
Q_PROPERTY(VoltaType voltaType READ voltaType WRITE undoSetVoltaType)
|
|
|
|
VoltaType _voltaType; // open/closed
|
|
QList<int> _endings;
|
|
PropertyStyle lineWidthStyle;
|
|
|
|
public:
|
|
Volta(Score* s);
|
|
virtual Volta* clone() const { return new Volta(*this); }
|
|
virtual ElementType type() const { return ElementType::VOLTA; }
|
|
virtual LineSegment* createLineSegment();
|
|
virtual void layout();
|
|
|
|
virtual void write(Xml&) const;
|
|
virtual void read(XmlReader& e);
|
|
|
|
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(VoltaType val);
|
|
void undoSetVoltaType(VoltaType val);
|
|
VoltaType voltaType() const { return _voltaType; }
|
|
|
|
bool hasEnding(int repeat) const;
|
|
|
|
virtual QVariant getProperty(P_ID propertyId) const;
|
|
virtual bool setProperty(P_ID propertyId, const QVariant&);
|
|
virtual QVariant propertyDefault(P_ID) const;
|
|
virtual PropertyStyle propertyStyle(P_ID) const override;
|
|
virtual void resetProperty(P_ID id) override;
|
|
virtual void styleChanged() override;
|
|
|
|
virtual void setYoff(qreal);
|
|
virtual void reset() override;
|
|
};
|
|
|
|
} // namespace Ms
|
|
|
|
Q_DECLARE_METATYPE(Ms::VoltaType);
|
|
|
|
#endif
|
|
|