MuseScore/libmscore/ottava.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

135 lines
3.9 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// 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 "textlinebase.h"
2017-01-18 22:41:58 +01:00
#include "property.h"
2012-05-26 14:26:10 +02:00
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
// OttavaE
//---------------------------------------------------------
struct OttavaE {
int offset;
unsigned start;
unsigned end;
};
2017-03-08 14:18:34 +01:00
//---------------------------------------------------------
// OttavaType
//---------------------------------------------------------
enum class OttavaType : char {
OTTAVA_8VA,
OTTAVA_8VB,
OTTAVA_15MA,
OTTAVA_15MB,
OTTAVA_22MA,
OTTAVA_22MB
};
//---------------------------------------------------------
// OttavaDefault
//---------------------------------------------------------
struct OttavaDefault {
OttavaType type;
int shift;
const char* name;
};
// order is important, should be the same as OttavaType
static const OttavaDefault ottavaDefault[] = {
{ OttavaType::OTTAVA_8VA, 12, "8va" },
{ OttavaType::OTTAVA_8VB, -12, "8vb" },
{ OttavaType::OTTAVA_15MA, 24, "15ma" },
{ OttavaType::OTTAVA_15MB, -24, "15mb" },
{ OttavaType::OTTAVA_22MA, 36, "22ma" },
{ OttavaType::OTTAVA_22MB, -36, "22mb" }
};
2012-05-26 14:26:10 +02:00
class Ottava;
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ OttavaSegment
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class OttavaSegment final : public TextLineBaseSegment
{
2020-03-27 12:07:27 +01:00
void undoChangeProperty(Pid id, const QVariant&, PropertyFlags ps) override;
Sid getPropertyStyle(Pid) const override;
2018-07-11 12:23:32 +02:00
2012-05-26 14:26:10 +02:00
public:
2020-05-29 18:47:27 +02:00
OttavaSegment(Spanner* sp, Score* s)
: TextLineBaseSegment(sp, s, ElementFlag::MOVABLE | ElementFlag::ON_STAFF) { }
2020-03-27 12:07:27 +01:00
ElementType type() const override { return ElementType::OTTAVA_SEGMENT; }
OttavaSegment* clone() const override { return new OttavaSegment(*this); }
Ottava* ottava() const { return (Ottava*)spanner(); }
void layout() override;
Element* propertyDelegate(Pid) override;
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ Ottava
// @P ottavaType enum (Ottava.OTTAVA_8VA, .OTTAVA_8VB, .OTTAVA_15MA, .OTTAVA_15MB, .OTTAVA_22MA, .OTTAVA_22MB)
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class Ottava final : public TextLineBase
{
2017-03-08 14:18:34 +01:00
OttavaType _ottavaType;
bool _numbersOnly;
2012-05-26 14:26:10 +02:00
2018-07-11 12:23:32 +02:00
void updateStyledProperties();
2020-03-27 12:07:27 +01:00
Sid getPropertyStyle(Pid) const override;
void undoChangeProperty(Pid id, const QVariant&, PropertyFlags ps) override;
2012-05-26 14:26:10 +02:00
protected:
2012-05-26 14:26:10 +02:00
friend class OttavaSegment;
public:
Ottava(Score* s);
Ottava(const Ottava&);
2020-03-27 12:07:27 +01:00
Ottava* clone() const override { return new Ottava(*this); }
ElementType type() const override { return ElementType::OTTAVA; }
2012-09-17 17:35:49 +02:00
2017-03-08 14:18:34 +01:00
void setOttavaType(OttavaType val);
OttavaType ottavaType() const { return _ottavaType; }
2012-09-17 17:35:49 +02:00
2017-03-08 14:18:34 +01:00
bool numbersOnly() const { return _numbersOnly; }
2018-07-11 12:23:32 +02:00
void setNumbersOnly(bool val);
void setPlacement(Placement);
2020-03-27 12:07:27 +01:00
LineSegment* createLineSegment() override;
2018-07-11 12:23:32 +02:00
int pitchShift() const;
2012-09-17 17:35:49 +02:00
2020-03-27 12:07:27 +01:00
void write(XmlWriter& xml) const override;
void read(XmlReader& de) override;
bool readProperties(XmlReader& e) override;
2020-03-27 12:07:27 +01:00
QVariant getProperty(Pid propertyId) const override;
bool setProperty(Pid propertyId, const QVariant&) override;
QVariant propertyDefault(Pid) const override;
Pid propertyId(const QStringRef& xmlName) const override;
2012-05-26 14:26:10 +02:00
2020-03-27 12:07:27 +01:00
QString accessibleInfo() const override;
static const char* ottavaTypeName(OttavaType type);
2020-05-26 15:54:26 +02:00
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-05-26 14:26:10 +02:00
#endif