MuseScore/libmscore/layoutbreak.h

88 lines
2.8 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 __LAYOUTBREAK_H__
#define __LAYOUTBREAK_H__
#include "element.h"
class QPainter;
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
// layout break subtypes:
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ LayoutBreak
/// symbols for line break, page break etc.
2013-10-05 23:13:33 +02:00
//
// @P layoutBreakType enum PAGE, LINE, SECTION
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class LayoutBreak : public Element {
Q_OBJECT
2013-10-05 23:13:33 +02:00
public:
enum LayoutBreakType {
PAGE, LINE, SECTION
};
private:
Q_PROPERTY(LayoutBreakType layoutBreakType READ layoutBreakType WRITE undoSetLayoutBreakType)
Q_ENUMS(LayoutBreakType)
LayoutBreakType _layoutBreakType;
2012-05-26 14:26:10 +02:00
qreal lw;
QPainterPath path;
2013-05-15 11:41:46 +02:00
QPainterPath path2;
2012-05-26 14:26:10 +02:00
qreal _pause;
bool _startWithLongNames;
bool _startWithMeasureOne;
virtual void draw(QPainter*) const;
void layout0();
virtual void spatiumChanged(qreal oldValue, qreal newValue);
public:
2013-10-05 23:13:33 +02:00
LayoutBreak(Score* = 0);
2012-05-26 14:26:10 +02:00
virtual LayoutBreak* clone() const { return new LayoutBreak(*this); }
virtual ElementType type() const { return LAYOUT_BREAK; }
2013-01-04 10:18:06 +01:00
virtual bool systemFlag() const { return true; }
void setLayoutBreakType(LayoutBreakType);
LayoutBreakType layoutBreakType() const { return _layoutBreakType; }
2013-10-05 23:13:33 +02:00
void undoSetLayoutBreakType(LayoutBreakType);
2012-05-26 14:26:10 +02:00
virtual bool acceptDrop(MuseScoreView*, const QPointF&, Element*) const;
virtual Element* drop(const DropData&);
virtual void write(Xml&) const;
2013-01-11 18:10:18 +01:00
virtual void read(XmlReader&);
2012-05-26 14:26:10 +02:00
Measure* measure() const { return (Measure*)parent(); }
qreal pause() const { return _pause; }
void setPause(qreal v) { _pause = v; }
bool startWithLongNames() const { return _startWithLongNames; }
void setStartWithLongNames(bool v) { _startWithLongNames = v; }
bool startWithMeasureOne() const { return _startWithMeasureOne; }
void setStartWithMeasureOne(bool v) { _startWithMeasureOne = v; }
virtual QVariant getProperty(P_ID propertyId) const;
virtual bool setProperty(P_ID propertyId, const QVariant&);
virtual QVariant propertyDefault(P_ID) const;
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2013-10-05 23:13:33 +02:00
Q_DECLARE_METATYPE(Ms::LayoutBreak::LayoutBreakType)
2012-05-26 14:26:10 +02:00
#endif