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 __LINE_H__
|
|
|
|
#define __LINE_H__
|
|
|
|
|
|
|
|
#include "spanner.h"
|
|
|
|
#include "mscore.h"
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
class QPainter;
|
|
|
|
|
|
|
|
namespace Ms {
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
class SLine;
|
|
|
|
class System;
|
|
|
|
class MuseScoreView;
|
|
|
|
|
2014-05-23 14:11:57 +02:00
|
|
|
enum class GripLine : char { START, MIDDLE, END, APERTURE };
|
2013-07-26 15:26:18 +02:00
|
|
|
|
2013-08-09 11:42:24 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// LineStyle
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2014-05-21 18:52:58 +02:00
|
|
|
enum class LineStyle : char {
|
2013-08-09 11:42:24 +02:00
|
|
|
Solid = Qt::SolidLine,
|
|
|
|
Dash = Qt::DashLine,
|
|
|
|
Dot = Qt::DotLine,
|
|
|
|
DashDot = Qt::DashDotLine,
|
|
|
|
DashDotDot = Qt::DashDotDotLine
|
|
|
|
};
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2012-07-25 11:49:34 +02:00
|
|
|
// @@ LineSegment
|
2014-05-16 13:44:32 +02:00
|
|
|
/// Virtual base class for segmented lines segments
|
|
|
|
/// (OttavaSegment, HairpinSegment, TrillSegment...)
|
|
|
|
///
|
|
|
|
/// This class describes one segment of an segmented
|
|
|
|
/// line object. Line objects can span multiple staves.
|
|
|
|
/// For every staff a segment is created.
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class LineSegment : public SpannerSegment {
|
2012-05-28 11:29:21 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
protected:
|
2013-08-28 11:10:12 +02:00
|
|
|
virtual bool isEditable() const override { return true; }
|
|
|
|
virtual void editDrag(const EditData&) override;
|
|
|
|
virtual bool edit(MuseScoreView*, int grip, int key, Qt::KeyboardModifiers, const QString& s) override;
|
2014-03-16 14:57:32 +01:00
|
|
|
virtual void updateGrips(int*, int*, QRectF*) const override;
|
2013-08-28 11:10:12 +02:00
|
|
|
virtual void setGrip(int grip, const QPointF& p) override;
|
|
|
|
virtual QPointF getGrip(int) const override;
|
|
|
|
virtual QPointF gripAnchor(int) const override;
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
LineSegment(Score* s);
|
|
|
|
LineSegment(const LineSegment&);
|
|
|
|
virtual LineSegment* clone() const = 0;
|
|
|
|
virtual void draw(QPainter*) const = 0;
|
|
|
|
SLine* line() const { return (SLine*)spanner(); }
|
2013-08-28 11:10:12 +02:00
|
|
|
virtual void spatiumChanged(qreal, qreal) override;
|
|
|
|
virtual QPointF pagePos() const override;
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
friend class SLine;
|
2013-08-28 11:10:12 +02:00
|
|
|
virtual void read(XmlReader&) override;
|
2013-01-11 18:10:18 +01:00
|
|
|
bool readProperties(XmlReader&);
|
2013-08-08 11:38:32 +02:00
|
|
|
|
|
|
|
virtual QVariant getProperty(P_ID id) const override;
|
|
|
|
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
|
|
|
|
virtual QVariant propertyDefault(P_ID id) const override;
|
2012-05-26 14:26:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
2012-07-25 11:49:34 +02:00
|
|
|
// @@ SLine
|
2012-11-06 10:07:47 +01:00
|
|
|
/// virtual base class for Hairpin, Trill and TextLine
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class SLine : public Spanner {
|
2012-05-28 11:29:21 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-08-08 11:38:32 +02:00
|
|
|
Spatium _lineWidth;
|
|
|
|
QColor _lineColor;
|
|
|
|
Qt::PenStyle _lineStyle;
|
2012-05-26 14:26:10 +02:00
|
|
|
bool _diagonal;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SLine(Score* s);
|
|
|
|
SLine(const SLine&);
|
|
|
|
|
2013-08-08 11:38:32 +02:00
|
|
|
virtual void layout() override;
|
2013-01-11 18:10:18 +01:00
|
|
|
bool readProperties(XmlReader& node);
|
2013-08-09 11:42:24 +02:00
|
|
|
void writeProperties(Xml& xml) const;
|
2012-05-26 14:26:10 +02:00
|
|
|
virtual LineSegment* createLineSegment() = 0;
|
|
|
|
void setLen(qreal l);
|
2013-08-08 11:38:32 +02:00
|
|
|
virtual const QRectF& bbox() const override;
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2014-05-23 14:11:57 +02:00
|
|
|
virtual QPointF linePos(GripLine grip, System** system);
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-08-08 11:38:32 +02:00
|
|
|
virtual void write(Xml&) const override;
|
|
|
|
virtual void read(XmlReader&) override;
|
|
|
|
|
|
|
|
bool diagonal() const { return _diagonal; }
|
|
|
|
void setDiagonal(bool v) { _diagonal = v; }
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-08-08 11:38:32 +02:00
|
|
|
Spatium lineWidth() const { return _lineWidth; }
|
2014-05-06 18:56:27 +02:00
|
|
|
QColor lineColor() const { return _lineColor; }
|
2013-08-08 11:38:32 +02:00
|
|
|
Qt::PenStyle lineStyle() const { return _lineStyle; }
|
|
|
|
void setLineWidth(const Spatium& v) { _lineWidth = v; }
|
|
|
|
void setLineColor(const QColor& v) { _lineColor = v; }
|
|
|
|
void setLineStyle(Qt::PenStyle v) { _lineStyle = v; }
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
LineSegment* frontSegment() const { return (LineSegment*)spannerSegments().front(); }
|
|
|
|
LineSegment* backSegment() const { return (LineSegment*)spannerSegments().back(); }
|
|
|
|
LineSegment* takeFirstSegment() { return (LineSegment*)spannerSegments().takeFirst(); }
|
|
|
|
LineSegment* takeLastSegment() { return (LineSegment*)spannerSegments().takeLast(); }
|
|
|
|
LineSegment* segmentAt(int n) const { return (LineSegment*)spannerSegments().at(n); }
|
2013-03-27 17:52:26 +01:00
|
|
|
|
2013-08-08 11:38:32 +02:00
|
|
|
virtual QVariant getProperty(P_ID id) const override;
|
|
|
|
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
|
|
|
|
virtual QVariant propertyDefault(P_ID id) 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
|
|
|
|
|