46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
//=============================================================================
|
|
// MuseScore
|
|
// Music Composition & Notation
|
|
//
|
|
// Copyright (C) 2010-2018 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 __FINGERING_H__
|
|
#define __FINGERING_H__
|
|
|
|
#include "text.h"
|
|
|
|
namespace Ms {
|
|
|
|
//---------------------------------------------------------
|
|
// @@ Fingering
|
|
//---------------------------------------------------------
|
|
|
|
class Fingering final : public TextBase {
|
|
|
|
public:
|
|
Fingering(SubStyleId ssid, Score* s, ElementFlag ef = ElementFlag::HAS_TAG);
|
|
Fingering(Score* s);
|
|
|
|
virtual Fingering* clone() const override { return new Fingering(*this); }
|
|
virtual ElementType type() const override { return ElementType::FINGERING; }
|
|
|
|
Note* note() const { return toNote(parent()); }
|
|
|
|
virtual void draw(QPainter*) const override;
|
|
virtual void layout() override;
|
|
|
|
virtual QVariant propertyDefault(Pid id) const override;
|
|
|
|
virtual QString accessibleInfo() const override;
|
|
};
|
|
|
|
|
|
} // namespace Ms
|
|
#endif
|
|
|