2013-03-25 13:15:50 +01:00
|
|
|
//=============================================================================
|
|
|
|
// MuseScore
|
|
|
|
// Music Composition & Notation
|
|
|
|
//
|
|
|
|
// Copyright (C) 2013 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 __LEDGERLINE_H__
|
|
|
|
#define __LEDGERLINE_H__
|
|
|
|
|
|
|
|
#include "element.h"
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
namespace Ms {
|
|
|
|
|
2013-03-25 13:15:50 +01:00
|
|
|
class Chord;
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// @@ LedgerLine
|
2014-05-16 13:44:32 +02:00
|
|
|
/// Graphic representation of a ledger line.
|
|
|
|
//!
|
|
|
|
//! parent: Chord
|
|
|
|
//! x-origin: Chord
|
|
|
|
//! y-origin: SStaff
|
2013-03-25 13:15:50 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class LedgerLine : public Line {
|
2017-02-17 15:09:28 +01:00
|
|
|
Q_GADGET
|
2013-03-25 13:15:50 +01:00
|
|
|
|
|
|
|
LedgerLine* _next;
|
|
|
|
|
|
|
|
public:
|
|
|
|
LedgerLine(Score*);
|
2014-06-27 13:41:49 +02:00
|
|
|
LedgerLine &operator=(const LedgerLine&) = delete;
|
2015-01-19 12:37:17 +01:00
|
|
|
virtual LedgerLine* clone() const override { return new LedgerLine(*this); }
|
2017-01-18 14:16:33 +01:00
|
|
|
virtual ElementType type() const override { return ElementType::LEDGER_LINE; }
|
2015-01-19 12:37:17 +01:00
|
|
|
virtual QPointF pagePos() const override; ///< position in page coordinates
|
2013-03-25 13:15:50 +01:00
|
|
|
Chord* chord() const { return (Chord*)parent(); }
|
2015-01-19 12:37:17 +01:00
|
|
|
virtual void layout() override;
|
|
|
|
virtual void draw(QPainter*) const override;
|
2013-03-25 13:15:50 +01:00
|
|
|
qreal measureXPos() const;
|
|
|
|
LedgerLine* next() const { return _next; }
|
|
|
|
void setNext(LedgerLine* l) { _next = l; }
|
|
|
|
};
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
|
|
|
|
} // namespace Ms
|
2013-03-25 13:15:50 +01:00
|
|
|
#endif
|
|
|
|
|