lilypond-1.3.67
[lilypond.git] / lily / script.cc
blob326667e7b44cc99a6d380d756d3bc11bc1922e8b
1 /*
2 script.cc -- implement Script
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "debug.hh"
11 #include "script.hh"
12 #include "lookup.hh"
13 #include "side-position-interface.hh"
14 #include "paper-def.hh"
15 #include "dimension-cache.hh"
17 Script ::Script (SCM s)
18 : Item (s)
22 Molecule
23 Script::get_molecule(Direction d) const
25 SCM s = get_elt_property ("molecule");
26 assert (gh_pair_p (s));
28 SCM key = gh_car (s);
29 if (key == ly_symbol2scm ("feta"))
31 return lookup_l ()->afm_find ("scripts-" +
32 ly_scm2string (index_cell (gh_cdr (s), d)));
34 else if (key == ly_symbol2scm ("accordion"))
36 return lookup_l ()->accordion (gh_cdr (s), paper_l()->get_var("interline"));
39 else assert (false);
41 return Molecule ();
45 GLUE_SCORE_ELEMENT(Script,before_line_breaking);
46 SCM
47 Script::member_before_line_breaking ()
50 center my self on the note head.
52 Score_element * e = parent_l(X_AXIS);
53 translate_axis (e->extent (X_AXIS).center (), X_AXIS);
55 return SCM_UNDEFINED;
58 GLUE_SCORE_ELEMENT(Script,after_line_breaking);
59 SCM
60 Script::member_after_line_breaking ()
62 Side_position_interface i (this);
63 Direction d = i.get_direction ();
64 i.set_direction (d);
66 return SCM_UNDEFINED;
70 GLUE_SCORE_ELEMENT(Script,brew_molecule);
72 SCM
73 Script::member_brew_molecule () const
75 Direction dir = DOWN;
76 SCM d = get_elt_property ("direction");
77 if (isdir_b (d))
78 dir = to_dir (d);
80 return get_molecule (dir).create_scheme();