50 lines
1.5 KiB
C++
50 lines
1.5 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 __REPEAT_H__
|
|
#define __REPEAT_H__
|
|
|
|
#include "text.h"
|
|
#include "rest.h"
|
|
|
|
namespace Ms {
|
|
|
|
class Score;
|
|
class Segment;
|
|
|
|
//---------------------------------------------------------
|
|
// @@ RepeatMeasure
|
|
//---------------------------------------------------------
|
|
|
|
class RepeatMeasure : public Rest {
|
|
Q_OBJECT
|
|
|
|
QPainterPath path;
|
|
|
|
public:
|
|
RepeatMeasure(Score*);
|
|
RepeatMeasure &operator=(const RepeatMeasure&) = delete;
|
|
virtual RepeatMeasure* clone() const override { return new RepeatMeasure(*this); }
|
|
virtual Element* linkedClone() override { return Element::linkedClone(); }
|
|
virtual Element::Type type() const override { return Element::Type::REPEAT_MEASURE; }
|
|
virtual void draw(QPainter*) const override;
|
|
virtual void layout() override;
|
|
virtual Fraction duration() const override;
|
|
Fraction actualDuration() const { return Rest::duration(); }
|
|
|
|
virtual QString accessibleInfo() const override;
|
|
};
|
|
|
|
|
|
} // namespace Ms
|
|
#endif
|
|
|