MuseScore/libmscore/timesig.h

154 lines
5.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 __TIMESIG_H__
#define __TIMESIG_H__
#include "element.h"
#include "sig.h"
#include "mscore.h"
#include "groups.h"
2012-05-26 14:26:10 +02:00
2013-05-13 18:49:17 +02:00
class QPainter;
namespace Ms {
2012-05-26 14:26:10 +02:00
class MuseScoreView;
class Segment;
enum class TimeSigType : char {
NORMAL, // use sz/sn text
FOUR_FOUR, // common time (4/4)
ALLA_BREVE, // cut time (2/2)
2012-05-26 14:26:10 +02:00
};
2012-07-27 18:01:15 +02:00
//---------------------------------------------------------------------------------------
2012-07-11 21:29:42 +02:00
// @@ TimeSig
2012-07-16 19:59:32 +02:00
/// This class represents a time signature.
//
// @P denominator int (read only)
// @P denominatorStretch int (read only)
// @P denominatorString string text of denominator
// @P groups Groups
// @P numerator int (read only)
// @P numeratorStretch int (read only)
// @P numeratorString string text of numerator
// @P showCourtesySig bool show courtesy time signature for this sig if appropriate
2012-07-27 18:01:15 +02:00
//---------------------------------------------------------------------------------------
2012-05-26 14:26:10 +02:00
class TimeSig : public Element {
Q_OBJECT
2012-07-27 18:01:15 +02:00
Q_PROPERTY(int denominator READ denominator)
Q_PROPERTY(int denominatorStretch READ denominatorStretch)
Q_PROPERTY(QString denominatorString READ denominatorString WRITE undoSetDenominatorString)
Q_PROPERTY(Ms::Groups groups READ groups WRITE undoSetGroups)
Q_PROPERTY(int numerator READ numerator)
Q_PROPERTY(int numeratorStretch READ numeratorStretch)
Q_PROPERTY(QString numeratorString READ numeratorString WRITE undoSetNumeratorString)
Q_PROPERTY(bool showCourtesySig READ showCourtesySig WRITE undoSetShowCourtesySig)
TimeSigType _timeSigType;
2012-07-27 18:01:15 +02:00
QString _numeratorString; // calculated from actualSig() if !customText
QString _denominatorString;
QPointF pz, pn, pointLargeLeftParen, pointLargeRightParen;
2012-06-28 15:12:17 +02:00
Fraction _sig;
Fraction _stretch; // localSig / globalSig
2014-05-30 13:35:44 +02:00
bool _showCourtesySig;
2014-10-09 11:14:15 +02:00
bool customText; // if false, sz and sn are calculated from _sig
bool _needLayout;
bool _largeParentheses;
Groups _groups;
2012-10-24 13:15:46 +02:00
void layout1();
2012-05-26 14:26:10 +02:00
public:
2012-07-06 14:21:05 +02:00
TimeSig(Score* = 0);
2012-05-26 14:26:10 +02:00
2012-07-18 14:54:44 +02:00
QString ssig() const;
void setSSig(const QString&);
virtual TimeSig* clone() const override;
virtual Element::Type type() const override { return Element::Type::TIMESIG; }
2012-05-26 14:26:10 +02:00
TimeSigType timeSigType() const { return _timeSigType; }
2012-05-26 14:26:10 +02:00
bool operator==(const TimeSig&) const;
virtual qreal mag() const override;
virtual void draw(QPainter*) const override;
virtual void write(Xml& xml) const override;
virtual void read(XmlReader&) override;
virtual void layout() override;
2012-05-26 14:26:10 +02:00
2012-06-28 15:12:17 +02:00
Fraction sig() const { return _sig; }
void setSig(const Fraction& f, TimeSigType st = TimeSigType::NORMAL);
//@ sets the time signature
Q_INVOKABLE void setSig(int z, int n, int st = static_cast<int>(TimeSigType::NORMAL)) { setSig(Fraction(z, n), static_cast<TimeSigType>(st)); }
2012-07-27 18:01:15 +02:00
int numerator() const { return _sig.numerator(); }
int denominator() const { return _sig.denominator(); }
2012-05-26 14:26:10 +02:00
2012-06-28 15:12:17 +02:00
Fraction stretch() const { return _stretch; }
void setStretch(const Fraction& s) { _stretch = s; }
2012-07-27 18:01:15 +02:00
int numeratorStretch() const { return _stretch.numerator(); }
int denominatorStretch() const { return _stretch.denominator(); }
2012-05-26 14:26:10 +02:00
2014-08-13 21:01:21 +02:00
bool acceptDrop(const DropData&) const override;
virtual Element* drop(const DropData&) override;
2012-05-26 14:26:10 +02:00
Segment* segment() const { return (Segment*)parent(); }
Measure* measure() const { return (Measure*)parent()->parent(); }
bool showCourtesySig() const { return _showCourtesySig; }
void setShowCourtesySig(bool v) { _showCourtesySig = v; }
2012-07-27 18:01:15 +02:00
void undoSetShowCourtesySig(bool v);
QString numeratorString() const { return _numeratorString; }
void setNumeratorString(const QString&);
void undoSetNumeratorString(const QString&);
QString denominatorString() const { return _denominatorString; }
void setDenominatorString(const QString&);
void undoSetDenominatorString(const QString&);
2012-05-26 14:26:10 +02:00
void setLargeParentheses(bool v) { _largeParentheses = v; }
2014-07-28 12:28:22 +02:00
2012-05-26 14:26:10 +02:00
void setFrom(const TimeSig*);
2012-07-27 18:01:15 +02:00
virtual QVariant getProperty(P_ID propertyId) const override;
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
virtual QVariant propertyDefault(P_ID id) const override;
bool hasCustomText() const { return customText; }
virtual void spatiumChanged(qreal /*oldValue*/, qreal /*newValue*/) override;
virtual void localSpatiumChanged(qreal /*oldValue*/, qreal /*newValue*/) override;
void setNeedLayout(bool nl) { _needLayout = nl; }
const Groups& groups() const { return _groups; }
void setGroups(const Groups& e) { _groups = e; }
void undoSetGroups(const Groups& e);
Fraction globalSig() const { return (_sig * _stretch).reduced(); }
void setGlobalSig(const Fraction& f) { _stretch = (_sig / f).reduced(); }
bool isLocal() const { return _stretch != Fraction(1,1); }
virtual Element* nextElement();
virtual Element* prevElement();
2016-02-04 17:06:32 +01:00
virtual QString accessibleInfo() const override;
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
#endif