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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2008-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
//=============================================================================
#include "duration.h"
#include "tuplet.h"
#include "score.h"
#include "undo.h"
#include "staff.h"
#include "xml.h"
#include "property.h"
namespace Ms {
//---------------------------------------------------------
// DurationElement
//---------------------------------------------------------
DurationElement::DurationElement(Score* s)
: Element(s)
{
_tuplet = 0;
}
//---------------------------------------------------------
// DurationElement
//---------------------------------------------------------
DurationElement::DurationElement(const DurationElement& e)
: Element(e)
{
_tuplet = 0; // e._tuplet;
_duration = e._duration;
}
//---------------------------------------------------------
// DurationElement
//---------------------------------------------------------
DurationElement::~DurationElement()
{
}
//---------------------------------------------------------
// globalDuration
//---------------------------------------------------------
Fraction DurationElement::globalDuration() const
{
Fraction f(_duration);
for (Tuplet* t = tuplet(); t; t = t->tuplet())
f /= t->ratio();
return f;
}
//---------------------------------------------------------
// actualTicks
//---------------------------------------------------------
int DurationElement::actualTicks() const
{
return actualFraction().ticks();
}
//---------------------------------------------------------
// actualFraction
//---------------------------------------------------------
Fraction DurationElement::actualFraction() const
{
return globalDuration() / staff()->timeStretch(tick());
}
//---------------------------------------------------------
// readProperties
//---------------------------------------------------------
bool DurationElement::readProperties(XmlReader& e)
{
if (e.name() == "Tuplet") {
int i = e.readInt();
Tuplet* t = e.findTuplet(i);
if (!t) {
qDebug("DurationElement:read(): Tuplet id %d not found", i);
t = score()->searchTuplet(e, i);
if (t) {
qDebug(" ...found outside measure, input file corrupted?");
e.addTuplet(t);
}
}
if (t) {
setTuplet(t);
if (!score()->undo()->active()) // HACK, also added in Undo::AddElement()
t->add(this);
}
return true;
}
if (Element::readProperties(e))
return true;
return false;
}
//---------------------------------------------------------
// writeProperties
//---------------------------------------------------------
void DurationElement::writeProperties(Xml& xml) const
{
Element::writeProperties(xml);
if (tuplet())
xml.tag("Tuplet", tuplet()->id());
}
//---------------------------------------------------------
// writeTuplet
//---------------------------------------------------------
void DurationElement::writeTuplet(Xml& xml)
{
if (tuplet() && tuplet()->elements().front() == this) {
tuplet()->writeTuplet(xml); // recursion
tuplet()->setId(xml.tupletId++);
tuplet()->write(xml);
}
}
//---------------------------------------------------------
// getProperty
//---------------------------------------------------------
QVariant DurationElement::getProperty(P_ID propertyId) const
{
switch (propertyId) {
case P_ID::DURATION:
return QVariant::fromValue(_duration);
default:
return Element::getProperty(propertyId);
}
}
//---------------------------------------------------------
// setProperty
//---------------------------------------------------------
bool DurationElement::setProperty(P_ID propertyId, const QVariant& v)
{
switch (propertyId) {
case P_ID::DURATION: {
Fraction f(v.value<Fraction>());
setDuration(f);
score()->setLayoutAll(true);
}
break;
default:
return Element::setProperty(propertyId, v);
}
return true;
}
}
|