Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / lily / chord-name.cc
blobdb784b8d2562b9cdd8b81d3b1a43dfd59320cfac
1 /*
2 chord-name.cc -- implement Chord_label
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2009 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include "chord-name.hh"
11 #include "output-def.hh"
12 #include "font-interface.hh"
13 #include "paper-column.hh"
14 #include "system.hh"
15 #include "staff-symbol-referencer.hh"
16 #include "text-interface.hh"
18 MAKE_SCHEME_CALLBACK (Chord_name, after_line_breaking, 1);
19 SCM
20 Chord_name::after_line_breaking (SCM smob)
22 Item *me = unsmob_item (smob);
23 assert (me);
25 SCM s = me->get_property ("begin-of-line-visible");
26 if (to_boolean (s))
28 if (me->get_column ()->get_rank ()
29 - me->get_system ()->spanned_rank_interval ()[LEFT] > 1)
30 me->suicide ();
32 return SCM_UNSPECIFIED;
35 ADD_INTERFACE (Chord_name,
36 "A chord label (name or fretboard).",
38 /* properties */
39 "begin-of-line-visible "