1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2008-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 __GLISSANDO_H__
#define __GLISSANDO_H__
#include "element.h"
#include "line.h"
#include "property.h"
namespace Ms {
// the amount of white space to leave before a system-initial chord with glissando
static const qreal GLISS_STARTOFSYSTEM_WIDTH = 4; // in sp
class Glissando;
class Note;
enum class GlissandoType;
//---------------------------------------------------------
// @@ GlissandoSegment
//---------------------------------------------------------
class GlissandoSegment final : public LineSegment {
public:
GlissandoSegment(Spanner* sp, Score* s) : LineSegment(sp, s) {}
Glissando* glissando() const { return toGlissando(spanner()); }
virtual ElementType type() const override { return ElementType::GLISSANDO_SEGMENT; }
virtual GlissandoSegment* clone() const override { return new GlissandoSegment(*this); }
virtual void draw(QPainter*) const override;
virtual void layout() override;
virtual Element* propertyDelegate(Pid) override;
};
//---------------------------------------------------------
// Glissando
//---------------------------------------------------------
class Glissando final : public SLine {
M_PROPERTY(QString, text, setText)
M_PROPERTY(GlissandoType, glissandoType, setGlissandoType)
M_PROPERTY(GlissandoStyle, glissandoStyle, setGlissandoStyle)
M_PROPERTY(QString, fontFace, setFontFace)
M_PROPERTY(qreal, fontSize, setFontSize)
M_PROPERTY(bool, showText, setShowText)
M_PROPERTY(bool, playGlissando, setPlayGlissando)
M_PROPERTY(FontStyle, fontStyle, setFontStyle)
public:
Glissando(Score* s);
Glissando(const Glissando&);
static Note* guessInitialNote(Chord* chord);
static Note* guessFinalNote(Chord* chord);
// overridden inherited methods
virtual Glissando* clone() const override { return new Glissando(*this); }
virtual ElementType type() const override { return ElementType::GLISSANDO; }
virtual LineSegment* createLineSegment() override;
virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true) override;
virtual void layout() override;
virtual void write(XmlWriter&) const override;
virtual void read(XmlReader&) override;
// property/style methods
virtual QVariant getProperty(Pid propertyId) const override;
virtual bool setProperty(Pid propertyId, const QVariant&) override;
virtual QVariant propertyDefault(Pid) const override;
virtual Pid propertyId(const QStringRef& xmlName) const override;
};
} // namespace Ms
#endif
|