MuseScore/libmscore/notedot.h

43 lines
1.2 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
// $Id:$
//
// 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"
//---------------------------------------------------------
2012-07-13 19:44:03 +02:00
// @@ NoteDot
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class NoteDot : public Element {
Q_OBJECT
2012-05-26 14:26:10 +02:00
int _idx;
public:
2012-07-13 19:44:03 +02:00
NoteDot(Score* =0);
2012-05-26 14:26:10 +02:00
virtual NoteDot* clone() const { return new NoteDot(*this); }
virtual ElementType type() const { return NOTEDOT; }
int idx() const { return _idx; }
void setIdx(int val) { _idx = val; }
virtual void draw(QPainter*) const;
virtual void write(Xml& xml) const;
2013-01-11 18:10:18 +01:00
virtual void read(XmlReader&);
2012-05-26 14:26:10 +02:00
virtual void layout();
};
#endif