MuseScore/libmscore/lyrics.h

194 lines
7.9 KiB
C
Raw Normal View History

2012-05-26 14:26:10 +02:00
//=============================================================================
// 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 __LYRICS_H__
#define __LYRICS_H__
#include "line.h"
2012-05-26 14:26:10 +02:00
#include "text.h"
// uncomment the following line to use the actual metrics of
// the font used by each lyrics rather than conventional values
//
// NOTE: CURRENTLY DOES NOT WORK (Font::tightBoundingBox() returns unusable values for glyphs not on base line)
//
//#define USE_FONT_DASH_METRIC
#if defined(USE_FONT_DASH_METRIC)
// the following line is used to turn the single font dash thickness value on or off
// when the other font dash parameters are on;
// the rationale is that the dash thickness is the most unreliable of the dash parameters
// retrievable from font metrics and it may make sense to use the other values but ignore this one.
// #define USE_FONT_DASH_TICKNESS
#endif
2013-05-13 18:49:17 +02:00
//class QPainter;
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
2012-07-25 11:49:34 +02:00
// @@ Lyrics
// @P syllabic Ms::Lyrics::Syllabic (SINGLE, BEGIN, END, MIDDLE)
2012-05-26 14:26:10 +02:00
//---------------------------------------------------------
class LyricsLine;
2012-05-26 14:26:10 +02:00
class Lyrics : public Text {
Q_OBJECT
Q_PROPERTY(Ms::Lyrics::Syllabic syllabic READ syllabic WRITE setSyllabic)
Q_ENUMS(Syllabic)
2013-01-11 18:10:18 +01:00
2012-05-26 14:26:10 +02:00
public:
2014-05-22 21:51:34 +02:00
enum class Syllabic : char { SINGLE, BEGIN, END, MIDDLE };
// MELISMA FIRST UNDERSCORE:
// used as_ticks value to mark a melisma for which only the first chord has been spanned so far
// and to give the user a visible feedback that the undercore has been actually entered;
// it will be cleared to 0 by LyricsLine::layout(), so that it will not be carried over
// if the melisma is not extended beyond a signle chord
static const int TEMP_MELISMA_TICKS = 1;
2012-05-26 14:26:10 +02:00
// metrics for dashes and melisma; all in sp. units:
static constexpr qreal MELISMA_DEFAULT_LINE_THICKNESS = 0.10; // for melisma line only;
static constexpr qreal MELISMA_DEFAULT_PAD = 0.10; // the empty space before a melisma line
static constexpr qreal LYRICS_DASH_DEFAULT_STEP = 16.0; // the max. distance between dashes
static constexpr qreal LYRICS_DASH_DEFAULT_PAD = 0.05; // the min. empty space before and after a dash
static constexpr qreal LYRICS_DASH_MIN_LENGTH = 0.25; // below this length, the dash is skipped
static constexpr qreal LYRICS_WORD_MIN_DISTANCE = 0.33; // min. distance between lyrics from different words
// These values are used when USE_FONT_DASH_METRIC is not defined
#if !defined(USE_FONT_DASH_METRIC)
static constexpr qreal LYRICS_DASH_DEFAULT_LENGHT = 0.80; // in sp. units
static constexpr qreal LYRICS_DASH_DEFAULT_LINE_THICKNESS = 0.15; // in sp. units
static constexpr qreal LYRICS_DASH_Y_POS_RATIO = 0.25; // the fraction of lyrics font tot. height to
// raise the dashes above text base line;
#endif // this usually raises at about 2/3 of x-height
2012-05-26 14:26:10 +02:00
private:
int _ticks; ///< if > 0 then draw an underline to tick() + _ticks
///< (melisma)
Syllabic _syllabic;
LyricsLine* _separator;
2012-05-26 14:26:10 +02:00
protected:
int _no; ///< row index
#if defined(USE_FONT_DASH_METRIC)
qreal _dashY; // dash dimensions for lyrics line dashes
qreal _dashLength;
#if defined (USE_FONT_DASH_TICKNESS)
qreal _dashThickness;
#endif
#endif
2012-05-26 14:26:10 +02:00
public:
2012-11-26 15:54:08 +01:00
Lyrics(Score* = 0);
2012-05-26 14:26:10 +02:00
Lyrics(const Lyrics&);
~Lyrics();
virtual Lyrics* clone() const override { return new Lyrics(*this); }
virtual Element::Type type() const override { return Element::Type::LYRICS; }
2014-02-19 12:18:44 +01:00
virtual void scanElements(void* data, void (*func)(void*, Element*), bool all=true) override;
2014-08-13 21:01:21 +02:00
virtual bool acceptDrop(const DropData&) const override;
2014-02-19 12:18:44 +01:00
virtual Element* drop(const DropData&) override;
Segment* segment() const { return (Segment*)parent()->parent(); }
Measure* measure() const { return (Measure*)parent()->parent()->parent(); }
ChordRest* chordRest() const { return (ChordRest*)parent(); }
2012-05-26 14:26:10 +02:00
2014-02-19 12:18:44 +01:00
virtual void layout() override;
virtual void layout1() override;
2012-05-26 14:26:10 +02:00
2014-02-19 12:18:44 +01:00
virtual void write(Xml& xml) const override;
virtual void read(XmlReader&) override;
virtual int subtype() const override { return _no; }
virtual QString subtypeName() const override { return tr("Verse %1").arg(_no + 1); }
2012-05-26 14:26:10 +02:00
void setNo(int n);
int no() const { return _no; }
void setSyllabic(Syllabic s) { _syllabic = s; }
Syllabic syllabic() const { return _syllabic; }
2014-02-19 12:18:44 +01:00
virtual void add(Element*) override;
virtual void remove(Element*) override;
// virtual void draw(QPainter*) const override;
2014-02-19 12:18:44 +01:00
virtual void endEdit() override;
2012-05-26 14:26:10 +02:00
int ticks() const { return _ticks; }
void setTicks(int tick) { _ticks = tick; }
2012-05-26 14:26:10 +02:00
int endTick() const;
bool isMelisma() const;
void removeFromScore();
#if defined(USE_FONT_DASH_METRIC)
qreal dashLength() const { return _dashLength; }
qreal dashY() const { return _dashY; }
#if defined (USE_FONT_DASH_TICKNESS)
qreal dashThickness() const { return _dashThickness; }
#endif
#endif
2014-08-13 21:01:21 +02:00
using Text::paste;
void paste(MuseScoreView * scoreview);
2014-08-13 21:01:21 +02:00
2014-02-19 12:18:44 +01:00
virtual QVariant getProperty(P_ID propertyId) const override;
virtual bool setProperty(P_ID propertyId, const QVariant&) override;
virtual QVariant propertyDefault(P_ID id) const override;
2012-05-26 14:26:10 +02:00
};
//---------------------------------------------------------
// LyricsLine
//---------------------------------------------------------
class LyricsLine : public SLine {
Q_OBJECT
protected:
Lyrics* _nextLyrics;
public:
LyricsLine(Score* s);
LyricsLine(const LyricsLine&);
virtual LyricsLine* clone() const override { return new LyricsLine(*this); }
virtual Element::Type type() const override { return Element::Type::LYRICSLINE; }
virtual void layout() override;
virtual LineSegment* createLineSegment() override;
Lyrics* lyrics() const { return (Lyrics*)parent(); }
Lyrics* nextLyrics() const { return _nextLyrics; }
void unchain();
};
//---------------------------------------------------------
// LyricsLineSegment
//---------------------------------------------------------
class LyricsLineSegment : public LineSegment {
Q_OBJECT
protected:
int _numOfDashes;
qreal _dashLength;
public:
LyricsLineSegment(Score* s);
virtual LyricsLineSegment* clone() const override { return new LyricsLineSegment(*this); }
virtual Element::Type type() const override { return Element::Type::LYRICSLINE_SEGMENT; }
LyricsLine* lyricsLine() const { return (LyricsLine*)spanner(); }
virtual void draw(QPainter*) const override;
virtual void layout() override;
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
Q_DECLARE_METATYPE(Ms::Lyrics::Syllabic);
2012-05-26 14:26:10 +02:00
#endif