blob: 8ff3ffe763cbba2389e835da0e962d2d6290c1cb (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
chord-name.cc -- implement Chord_name
source file of the GNU LilyPond music typesetter
(c) 1999--2007 Jan Nieuwenhuizen <janneke@gnu.org>
*/
#include "chord-name.hh"
#include "output-def.hh"
#include "font-interface.hh"
#include "paper-column.hh"
#include "system.hh"
#include "staff-symbol-referencer.hh"
#include "text-interface.hh"
MAKE_SCHEME_CALLBACK (Chord_name, after_line_breaking, 1);
SCM
Chord_name::after_line_breaking (SCM smob)
{
Item *me = unsmob_item (smob);
assert (me);
SCM s = me->get_property ("begin-of-line-visible");
if (to_boolean (s))
{
if (me->get_column ()->get_rank ()
- me->get_system ()->spanned_rank_iv ()[LEFT] > 1)
me->suicide ();
}
return SCM_UNSPECIFIED;
}
ADD_INTERFACE (Chord_name,
"A chord name.",
"begin-of-line-visible");
|