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 __NOTEDOT_H__
|
|
|
|
#define __NOTEDOT_H__
|
|
|
|
|
|
|
|
#include "element.h"
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
namespace Ms {
|
|
|
|
|
2013-07-15 08:15:20 +02:00
|
|
|
class Note;
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2012-07-13 19:44:03 +02:00
|
|
|
// @@ NoteDot
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
class NoteDot : public Element {
|
2017-02-17 15:09:28 +01:00
|
|
|
Q_GADGET
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
public:
|
2015-03-18 12:17:01 +01:00
|
|
|
NoteDot(Score* = 0);
|
2015-01-19 12:37:17 +01:00
|
|
|
virtual NoteDot* clone() const override { return new NoteDot(*this); }
|
2017-01-18 14:16:33 +01:00
|
|
|
virtual ElementType type() const override { return ElementType::NOTEDOT; }
|
2013-06-22 18:54:44 +02:00
|
|
|
virtual qreal mag() const;
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2015-01-19 12:37:17 +01:00
|
|
|
virtual void draw(QPainter*) const override;
|
|
|
|
virtual void read(XmlReader&) override;
|
|
|
|
virtual void layout() override;
|
2013-07-15 08:15:20 +02:00
|
|
|
|
|
|
|
Note* note() const { return (Note*)parent(); }
|
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
|
|
|
|
|