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"
|
2013-08-21 19:53:24 +02:00
|
|
|
#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
|
2012-07-25 11:49:34 +02:00
|
|
|
/// Virtual base class for Measure, HBox and VBox
|
2013-08-21 19:53:24 +02:00
|
|
|
//
|
|
|
|
// @P lineBreak bool true if a system break is positioned on this measure
|
|
|
|
// @P pageBreak bool true if a page break is positioned on this measure
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class MeasureBase : public Element {
|
2012-05-28 11:29:21 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-08-21 19:53:24 +02:00
|
|
|
Q_PROPERTY(bool lineBreak READ lineBreak WRITE undoSetLineBreak)
|
|
|
|
Q_PROPERTY(bool pageBreak READ pageBreak WRITE undoSetPageBreak)
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
MeasureBase* _next;
|
|
|
|
MeasureBase* _prev;
|
|
|
|
int _tick;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ElementList _el; ///< Measure(/tick) relative -elements: with defined start time
|
|
|
|
///< but outside the staff
|
|
|
|
|
2012-08-02 18:33:43 +02:00
|
|
|
bool _breakHint;
|
2012-05-26 14:26:10 +02:00
|
|
|
bool _lineBreak; ///< Forced line break
|
|
|
|
bool _pageBreak; ///< Forced page break
|
|
|
|
LayoutBreak* _sectionBreak;
|
|
|
|
|
|
|
|
public:
|
2012-05-28 19:34:13 +02:00
|
|
|
MeasureBase(Score* score = 0);
|
2012-05-26 14:26:10 +02:00
|
|
|
~MeasureBase();
|
|
|
|
MeasureBase(const MeasureBase&);
|
|
|
|
virtual MeasureBase* clone() const = 0;
|
|
|
|
virtual void setScore(Score* s);
|
|
|
|
|
|
|
|
MeasureBase* next() const { return _next; }
|
2013-09-19 15:08:54 +02:00
|
|
|
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; }
|
|
|
|
|
2013-07-13 18:41:16 +02:00
|
|
|
Q_INVOKABLE Ms::Measure* nextMeasure() const;
|
|
|
|
Q_INVOKABLE Ms::Measure* prevMeasure() const;
|
2013-09-19 15:08:54 +02:00
|
|
|
Ms::Measure* nextMeasureMM() const;
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
virtual int ticks() const { return 0; }
|
|
|
|
virtual void write(Xml&, int, bool) const = 0;
|
|
|
|
|
|
|
|
void layout0();
|
|
|
|
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; }
|
|
|
|
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; }
|
|
|
|
void setBreakHint(bool val) { _breakHint = val; }
|
|
|
|
|
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; }
|
2013-08-21 19:53:24 +02:00
|
|
|
void undoSetBreak(bool v, LayoutBreakType type);
|
|
|
|
void undoSetLineBreak(bool v) { undoSetBreak(v, LAYOUT_BREAK_LINE);}
|
|
|
|
void undoSetPageBreak(bool v) { undoSetBreak(v, LAYOUT_BREAK_PAGE);}
|
|
|
|
void undoSetSectionBreak(bool v) { undoSetBreak(v, LAYOUT_BREAK_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*);
|
|
|
|
virtual void remove(Element*);
|
|
|
|
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;
|
|
|
|
virtual bool setProperty(P_ID propertyId, const QVariant&);
|
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
|
|
|
|
|