MuseScore/libmscore/notedot.h
Werner Schweer 1f9ccfcdce add libmscore
git-subtree-dir: libmscore
git-subtree-mainline: 412ca45401
git-subtree-split: 6047361bd0
2012-05-26 14:54:47 +02:00

41 lines
1.2 KiB
C++

//=============================================================================
// 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"
//---------------------------------------------------------
// NoteDot
//---------------------------------------------------------
class NoteDot : public Element {
int _idx;
public:
NoteDot(Score*);
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;
virtual void read(const QDomElement&);
virtual void layout();
};
#endif