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