]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/lyric-extender.hh
1fda9f86571639824d063781cf9587fce17eb96c
[lilypond.git] / lily / include / lyric-extender.hh
1
2 /*
3   extender-spanner.hh -- part of GNU LilyPond
4
5   Copyright (C) 1998--2012 Jan Nieuwenhuizen <janneke@gnu.org>
6 */
7
8 #ifndef EXTENDER_SPANNER_HH
9 #define EXTENDER_SPANNER_HH
10
11 #include "grob-interface.hh"
12 #include "lily-proto.hh"
13
14 /*
15   Extenders must be entered manually for now.
16
17   Although it would be possible for Lily to determine where to
18   put extender lines, it's quite a tricky thing to do.  Also,
19   this would demand quite strict lyrics entries.
20
21   Note: the extender is only used for one-syllable words, or
22   for on a word's last syllable.  The extender should be aligned
23   with the left side of the last note of the melissima, and not
24   extend beond, lasting the whole duration of the melissima
25 */
26
27 class Lyric_extender
28 {
29 public:
30   DECLARE_GROB_INTERFACE ();
31   DECLARE_SCHEME_CALLBACK (print, (SCM));
32 };
33
34 #endif // EXTENDER_SPANNER_HH
35