92 lines
2.8 KiB
C++
92 lines
2.8 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 __SYMBOL_H__
|
|
#define __SYMBOL_H__
|
|
|
|
#include "bsymbol.h"
|
|
|
|
namespace Ms {
|
|
|
|
class Segment;
|
|
class ScoreFont;
|
|
enum class SymId;
|
|
|
|
//---------------------------------------------------------
|
|
// @@ Symbol
|
|
/// Symbol constructed from builtin symbol.
|
|
//
|
|
// @P symbol string the SMuFL name of the symbol
|
|
//---------------------------------------------------------
|
|
|
|
class Symbol : public BSymbol {
|
|
protected:
|
|
SymId _sym;
|
|
const ScoreFont* _scoreFont = nullptr;
|
|
|
|
public:
|
|
Symbol(Score* s, ElementFlags f = ElementFlag::MOVABLE);
|
|
Symbol(const Symbol&);
|
|
|
|
Symbol &operator=(const Symbol&) = delete;
|
|
|
|
Symbol* clone() const override { return new Symbol(*this); }
|
|
ElementType type() const override { return ElementType::SYMBOL; }
|
|
|
|
void setSym(SymId s, const ScoreFont* sf = nullptr) { _sym = s; _scoreFont = sf; }
|
|
SymId sym() const { return _sym; }
|
|
QString symName() const;
|
|
|
|
void draw(QPainter*) const override;
|
|
void write(XmlWriter& xml) const override;
|
|
void read(XmlReader&) override;
|
|
void layout() override;
|
|
|
|
QVariant getProperty(Pid) const override;
|
|
bool setProperty(Pid, const QVariant&) override;
|
|
|
|
qreal baseLine() const override { return 0.0; }
|
|
virtual Segment* segment() const { return (Segment*)parent(); }
|
|
};
|
|
|
|
//---------------------------------------------------------
|
|
// @@ FSymbol
|
|
/// Symbol constructed from a font glyph.
|
|
//---------------------------------------------------------
|
|
|
|
class FSymbol final : public BSymbol {
|
|
QFont _font;
|
|
int _code;
|
|
|
|
public:
|
|
FSymbol(Score* s);
|
|
FSymbol(const FSymbol&);
|
|
|
|
FSymbol* clone() const override { return new FSymbol(*this); }
|
|
ElementType type() const override { return ElementType::FSYMBOL; }
|
|
|
|
void draw(QPainter*) const override;
|
|
void write(XmlWriter& xml) const override;
|
|
void read(XmlReader&) override;
|
|
void layout() override;
|
|
|
|
qreal baseLine() const override{ return 0.0; }
|
|
Segment* segment() const { return (Segment*)parent(); }
|
|
QFont font() const { return _font; }
|
|
int code() const { return _code; }
|
|
void setFont(const QFont& f);
|
|
void setCode(int val) { _code = val; }
|
|
};
|
|
|
|
} // namespace Ms
|
|
#endif
|
|
|