MuseScore/libmscore/measurebase.h

137 lines
5.1 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 __MEASUREBASE_H__
#define __MEASUREBASE_H__
/**
\file
Definition of MeasureBase class.
*/
#include "element.h"
#include "layoutbreak.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
class Score;
class System;
class Measure;
//---------------------------------------------------------
2012-07-11 21:29:42 +02:00
// @@ MeasureBase
/// Virtual base class for Measure, HBox and VBox
//
// @P lineBreak bool true if a system break is positioned on this measure
// @P nextMeasure Measure the next Measure (read-only)
// @P nextMeasureMM Measure the next multi-measure rest Measure (read-only)
// @P pageBreak bool true if a page break is positioned on this measure
// @P prevMeasure Measure the previous Measure (read-only)
// @P prevMeasureMM Measure the previous multi-measure rest Measure (read-only)
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class MeasureBase : public Element {
Q_OBJECT
Fixes the following Q_INVOKABLE methods returning a QObject* by turning them into a property: - Measure: -- firstSegment -- lastSegment - MeasureBase: -- nextMeasure -- nextMeasureMM (new) -- prevMeasure -- prevMeasureMM (new) - Score: -- firstMeasure -- firstMeasureMM (new) -- (for firstSegment(), see special cases below) -- lastMeasure -- lastMeasureMM (new) -- lastSegment - Segment: -- next (renamed from `next1`) -- nextInMeasure (renamed from `next`) -- prev (renamed from `prev1`) -- prevInMeasure (renamed from prev) Special cases: - Cursor: The prototype of the `Q_INVOKABLE Ms::Note* Cursor::addNote(int pitch)` was wrong: corrected in `Q_INVOKABLE void Cursor::addNote(int pitch)`. - QmlPlugin: `Q_INVOKABLE Score* QmlPlugin::readScore()` and `Q_INVOKABLE Score* QmlPlugin::newScore()` has been kept, as they are intended to be called from QML; code has been added to ensure the C++ ownership of the returned object. - Score: `Q_INVOKABLE Segment* Score::firstSegment(Segment::Type segType)` is kept (as it needs a parameters), but code is added to ensure C++ ownership of the returned Segment*. - Segment: `Ms::Element* Segment::element(int track)` has been made NOT Q_INVOKABLE; a variant `Q_INVOKABLE Ms::Element* elementAt(int track)` has been added specifically for QML with code to ensure the C++ ownership of the returned Element* (this was the cause for the crash of the Walk plug-in). - FiguredBass: `Q_INVOKABLE Ms::FiguredBassItem* FiguredBass::addItem()` has been removed; plugin interface for FiguredBass needs to be redesigned anyway. The few occurrences in the supplied plug-ins of the methods whose names did change have been updated.
2014-07-06 01:56:30 +02:00
Q_PROPERTY(bool lineBreak READ lineBreak WRITE undoSetLineBreak)
Q_PROPERTY(Ms::Measure* nextMeasure READ nextMeasure)
Q_PROPERTY(Ms::Measure* nextMeasureMM READ nextMeasureMM)
Q_PROPERTY(bool pageBreak READ pageBreak WRITE undoSetPageBreak)
Q_PROPERTY(Ms::Measure* prevMeasure READ prevMeasure)
Q_PROPERTY(Ms::Measure* prevMeasureMM READ prevMeasureMM)
2012-05-26 14:26:10 +02:00
MeasureBase* _next;
MeasureBase* _prev;
int _tick;
2014-08-27 14:35:39 +02:00
bool _breakHint;
2012-05-26 14:26:10 +02:00
protected:
ElementList _el; ///< Measure(/tick) relative -elements: with defined start time
///< but outside the staff
bool _lineBreak; ///< Forced line break
bool _pageBreak; ///< Forced page break
LayoutBreak* _sectionBreak;
public:
MeasureBase(Score* score = 0);
2012-05-26 14:26:10 +02:00
~MeasureBase();
MeasureBase(const MeasureBase&);
2012-05-26 14:26:10 +02:00
virtual MeasureBase* clone() const = 0;
virtual Element::Type type() const = 0;
virtual void setScore(Score* s) override;
2012-05-26 14:26:10 +02:00
MeasureBase* next() const { return _next; }
MeasureBase* nextMM() const;
2012-05-26 14:26:10 +02:00
void setNext(MeasureBase* e) { _next = e; }
MeasureBase* prev() const { return _prev; }
void setPrev(MeasureBase* e) { _prev = e; }
Fixes the following Q_INVOKABLE methods returning a QObject* by turning them into a property: - Measure: -- firstSegment -- lastSegment - MeasureBase: -- nextMeasure -- nextMeasureMM (new) -- prevMeasure -- prevMeasureMM (new) - Score: -- firstMeasure -- firstMeasureMM (new) -- (for firstSegment(), see special cases below) -- lastMeasure -- lastMeasureMM (new) -- lastSegment - Segment: -- next (renamed from `next1`) -- nextInMeasure (renamed from `next`) -- prev (renamed from `prev1`) -- prevInMeasure (renamed from prev) Special cases: - Cursor: The prototype of the `Q_INVOKABLE Ms::Note* Cursor::addNote(int pitch)` was wrong: corrected in `Q_INVOKABLE void Cursor::addNote(int pitch)`. - QmlPlugin: `Q_INVOKABLE Score* QmlPlugin::readScore()` and `Q_INVOKABLE Score* QmlPlugin::newScore()` has been kept, as they are intended to be called from QML; code has been added to ensure the C++ ownership of the returned object. - Score: `Q_INVOKABLE Segment* Score::firstSegment(Segment::Type segType)` is kept (as it needs a parameters), but code is added to ensure C++ ownership of the returned Segment*. - Segment: `Ms::Element* Segment::element(int track)` has been made NOT Q_INVOKABLE; a variant `Q_INVOKABLE Ms::Element* elementAt(int track)` has been added specifically for QML with code to ensure the C++ ownership of the returned Element* (this was the cause for the crash of the Walk plug-in). - FiguredBass: `Q_INVOKABLE Ms::FiguredBassItem* FiguredBass::addItem()` has been removed; plugin interface for FiguredBass needs to be redesigned anyway. The few occurrences in the supplied plug-ins of the methods whose names did change have been updated.
2014-07-06 01:56:30 +02:00
Ms::Measure* nextMeasure() const;
Ms::Measure* prevMeasure() const;
Ms::Measure* nextMeasureMM() const;
2013-09-27 18:43:25 +02:00
Ms::Measure* prevMeasureMM() const;
2012-05-26 14:26:10 +02:00
virtual int ticks() const { return 0; }
virtual void write(Xml&) const override = 0;
2012-05-26 14:26:10 +02:00
virtual void write(Xml&, int, bool) const = 0;
virtual void layout();
virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true);
ElementList el() { return _el; }
const ElementList& el() const { return _el; }
2012-05-26 14:26:10 +02:00
System* system() const { return (System*)parent(); }
void setSystem(System* s) { setParent((Element*)s); }
2012-08-02 18:33:43 +02:00
bool breakHint() const { return _breakHint; }
2012-05-26 14:26:10 +02:00
bool lineBreak() const { return _lineBreak; }
bool pageBreak() const { return _pageBreak; }
LayoutBreak* sectionBreak() const { return _sectionBreak; }
void setLineBreak(bool v) { _lineBreak = v; }
void setPageBreak(bool v) { _pageBreak = v; }
void setSectionBreak(LayoutBreak* v) { _sectionBreak = v; }
void undoSetBreak(bool v, LayoutBreak::Type type);
void undoSetLineBreak(bool v) { undoSetBreak(v, LayoutBreak::Type::LINE);}
void undoSetPageBreak(bool v) { undoSetBreak(v, LayoutBreak::Type::PAGE);}
void undoSetSectionBreak(bool v) { undoSetBreak(v, LayoutBreak::Type::SECTION);}
2012-05-26 14:26:10 +02:00
virtual void moveTicks(int diff) { setTick(tick() + diff); }
virtual qreal distanceUp(int) const { return 0.0; }
virtual qreal distanceDown(int) const { return 0.0; }
virtual qreal userDistanceUp(int) const { return .0; }
virtual qreal userDistanceDown(int) const { return .0; }
virtual void add(Element*) override;
virtual void remove(Element*) override;
2012-05-26 14:26:10 +02:00
int tick() const { return _tick; }
int endTick() const { return tick() + ticks(); }
void setTick(int t) { _tick = t; }
qreal pause() const;
2012-08-02 18:33:43 +02:00
virtual QVariant getProperty(P_ID propertyId) const override;
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
void clearElements();
ElementList takeElements();
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