MuseScore/libmscore/notedot.h
2020-03-24 15:49:16 +02:00

47 lines
1.3 KiB
C++

//=============================================================================
// 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 __NOTEDOT_H__
#define __NOTEDOT_H__
#include "element.h"
namespace Ms {
class Note;
class Rest;
//---------------------------------------------------------
// @@ NoteDot
//---------------------------------------------------------
class NoteDot final : public Element {
public:
NoteDot(Score* = 0);
NoteDot* clone() const override { return new NoteDot(*this); }
ElementType type() const override { return ElementType::NOTEDOT; }
qreal mag() const override;
void draw(QPainter*) const override;
void read(XmlReader&) override;
void layout() override;
Note* note() const { return parent()->isNote() ? toNote(parent()) : 0; }
Rest* rest() const { return parent()->isRest() ? toRest(parent()) : 0; }
};
} // namespace Ms
#endif