MuseScore/libmscore/line.h

143 lines
5.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 __LINE_H__
#define __LINE_H__
#include "spanner.h"
2017-01-18 22:41:58 +01:00
#include "mscore.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
class SLine;
class System;
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ LineSegment
/// 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 {
protected:
2017-03-31 13:03:15 +02:00
virtual void editDrag(EditData&) override;
virtual bool edit(EditData&) override;
QVector<QLineF> gripAnchorLines(Grip) const override;
2017-03-31 13:03:15 +02:00
virtual void startEditDrag(EditData&) override;
void startDrag(EditData&) override;
2012-05-26 14:26:10 +02:00
public:
LineSegment(Spanner* sp, Score* s, ElementFlags f = ElementFlag::NOTHING) : SpannerSegment(sp, s, f) {}
LineSegment(Score* s, ElementFlags f = ElementFlag::NOTHING) : SpannerSegment(s, f) {}
2012-05-26 14:26:10 +02:00
LineSegment(const LineSegment&);
virtual void draw(QPainter*) const = 0;
SLine* line() const { return (SLine*)spanner(); }
virtual void spatiumChanged(qreal, qreal) override;
virtual void localSpatiumChanged(qreal, qreal) override;
2012-05-26 14:26:10 +02:00
friend class SLine;
virtual void read(XmlReader&) override;
2013-01-11 18:10:18 +01:00
bool readProperties(XmlReader&);
virtual Element* propertyDelegate(Pid) override;
Element::EditBehavior normalModeEditBehavior() const override { return Element::EditBehavior::Edit; }
int gripsCount() const override { return 3; }
Grip initialEditModeGrip() const override { return Grip::END; }
Grip defaultGrip() const override { return Grip::MIDDLE; }
std::vector<QPointF> gripsPositions(const EditData& = EditData()) const override;
virtual QVector<QLineF> dragAnchorLines() const override;
QRectF drag(EditData &ed) override;
private:
QPointF leftAnchorPosition(const qreal& systemPositionY) const;
QPointF rightAnchorPosition(const qreal& systemPositionY) const;
Segment* findSegmentForGrip(Grip grip, QPointF pos) const;
static QPointF deltaRebaseLeft(const Segment* oldSeg, const Segment* newSeg);
static QPointF deltaRebaseRight(const Segment* oldSeg, const Segment* newSeg, int staffIdx);
static Fraction lastSegmentEndTick(const Segment* lastSeg, const Spanner* s);
LineSegment* rebaseAnchor(Grip grip, Segment* newSeg);
void rebaseAnchors(EditData&, Grip);
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ SLine
/// virtual base class for Hairpin, Trill and TextLine
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class SLine : public Spanner {
2018-05-07 19:05:34 +02:00
qreal _lineWidth;
2016-06-30 20:22:36 +02:00
QColor _lineColor { MScore::defaultColor };
Qt::PenStyle _lineStyle { Qt::SolidLine };
qreal _dashLineLen { 5.0 };
qreal _dashGapLen { 5.0 };
bool _diagonal { false };
2012-05-26 14:26:10 +02:00
2014-05-27 17:09:27 +02:00
protected:
virtual QPointF linePos(Grip, System** system) const;
2014-05-27 17:09:27 +02:00
2012-05-26 14:26:10 +02:00
public:
2018-03-22 09:51:50 +01:00
SLine(Score* s, ElementFlags = ElementFlag::NOTHING);
2012-05-26 14:26:10 +02:00
SLine(const SLine&);
virtual void layout() override;
2016-07-10 12:00:57 +02:00
virtual SpannerSegment* layoutSystem(System*) override;
2013-01-11 18:10:18 +01:00
bool readProperties(XmlReader& node);
2016-11-19 11:51:21 +01:00
void writeProperties(XmlWriter& xml) const;
2012-05-26 14:26:10 +02:00
virtual LineSegment* createLineSegment() = 0;
void setLen(qreal l);
using Element::bbox;
virtual const QRectF& bbox() const override;
2012-05-26 14:26:10 +02:00
2016-11-19 11:51:21 +01:00
virtual void write(XmlWriter&) 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
2018-05-07 19:05:34 +02:00
qreal lineWidth() const { return _lineWidth; }
2014-05-06 18:56:27 +02:00
QColor lineColor() const { return _lineColor; }
Qt::PenStyle lineStyle() const { return _lineStyle; }
2018-05-07 19:05:34 +02:00
void setLineWidth(const qreal& 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
2016-06-30 20:22:36 +02:00
qreal dashLineLen() const { return _dashLineLen; }
void setDashLineLen(qreal val) { _dashLineLen = val; }
qreal dashGapLen() const { return _dashGapLen; }
void setDashGapLen(qreal val) { _dashGapLen = val; }
LineSegment* frontSegment() { return toLineSegment(Spanner::frontSegment()); }
const LineSegment* frontSegment() const { return toLineSegment(Spanner::frontSegment()); }
LineSegment* backSegment() { return toLineSegment(Spanner::backSegment()); }
const LineSegment* backSegment() const { return toLineSegment(Spanner::backSegment()); }
LineSegment* segmentAt(int n) { return toLineSegment(Spanner::segmentAt(n)); }
const LineSegment* segmentAt(int n) const { return toLineSegment(Spanner::segmentAt(n)); }
2013-03-27 17:52:26 +01:00
2018-03-27 15:36:00 +02:00
virtual QVariant getProperty(Pid id) const override;
virtual bool setProperty(Pid propertyId, const QVariant&) override;
virtual QVariant propertyDefault(Pid id) const override;
2014-05-27 17:09:27 +02:00
friend class LineSegment;
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