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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
//=============================================================================
// 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 __OTTAVA_H__
#define __OTTAVA_H__
#include "textline.h"
namespace Ms {
//---------------------------------------------------------
// OttavaE
//---------------------------------------------------------
struct OttavaE {
int offset;
unsigned start;
unsigned end;
};
class Ottava;
//---------------------------------------------------------
// @@ OttavaSegment
//---------------------------------------------------------
class OttavaSegment : public TextLineSegment {
Q_OBJECT
protected:
public:
OttavaSegment(Score* s) : TextLineSegment(s) { }
virtual Element::Type type() const override { return Element::Type::OTTAVA_SEGMENT; }
virtual OttavaSegment* clone() const override { return new OttavaSegment(*this); }
Ottava* ottava() const { return (Ottava*)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;
};
//---------------------------------------------------------
// @@ Ottava
// @P ottavaType enum (Ottava.OTTAVA_8VA, .OTTAVA_8VB, .OTTAVA_15MA, .OTTAVA_15MB, .OTTAVA_22MA, .OTTAVA_22MB)
//---------------------------------------------------------
class Ottava : public TextLine {
Q_OBJECT
Q_PROPERTY(Ms::Ottava::Type ottavaType READ ottavaType WRITE undoSetOttavaType)
Q_ENUMS(Type)
public:
enum Type : char {
OTTAVA_8VA,
OTTAVA_8VB,
OTTAVA_15MA,
OTTAVA_15MB,
OTTAVA_22MA,
OTTAVA_22MB
};
private:
Type _ottavaType;
bool _numbersOnly;
PropertyStyle numbersOnlyStyle { PropertyStyle::STYLED };
PropertyStyle lineWidthStyle { PropertyStyle::STYLED };
PropertyStyle lineStyleStyle { PropertyStyle::STYLED };
PropertyStyle beginTextStyle { PropertyStyle::STYLED };
PropertyStyle continueTextStyle { PropertyStyle::STYLED };
int _pitchShift;
protected:
friend class OttavaSegment;
public:
Ottava(Score* s);
Ottava(const Ottava&);
virtual Ottava* clone() const override { return new Ottava(*this); }
virtual Element::Type type() const override { return Element::Type::OTTAVA; }
void setOttavaType(Type val);
Type ottavaType() const { return _ottavaType; }
void undoSetOttavaType(Type val);
bool numbersOnly() const { return _numbersOnly; }
void setNumbersOnly(bool val) { _numbersOnly = val; }
virtual LineSegment* createLineSegment() override;
int pitchShift() const { return _pitchShift; }
virtual void endEdit() override;
virtual void write(Xml& xml) const override;
virtual void read(XmlReader& de) 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 setYoff(qreal) override;
virtual void styleChanged() override;
virtual void reset() override;
virtual QString accessibleInfo() override;
};
} // namespace Ms
Q_DECLARE_METATYPE(Ms::Ottava::Type);
#endif
|