* lexer-gcc-3.1.sh: Remove.
[lilypond/patrick.git] / lily / chord-name.cc
blobe929046db489337a6db51e3b1a3862dc781f3548
1 /*
2 chord-name.cc -- implement Chord_name
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2006 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_iv ()[LEFT] > 1)
30 me->suicide ();
32 return SCM_UNSPECIFIED;
35 ADD_INTERFACE (Chord_name, "chord-name-interface",
36 "A chord name.",
39 "begin-of-line-visible");