lilypond-1.3.145
[lilypond.git] / lily / script.cc
blob2a43afc1340f8a26b171985080eb492529c63327
1 /*
2 script.cc -- implement Script
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "debug.hh"
11 #include "script.hh"
12 #include "font-interface.hh"
13 #include "side-position-interface.hh"
14 #include "paper-def.hh"
15 #include "item.hh"
16 #include "molecule.hh"
17 #include "lookup.hh"
19 Molecule
20 Script::get_molecule (Grob * me, Direction d)
22 SCM s = me->get_grob_property ("molecule");
23 assert (gh_pair_p (s));
25 SCM key = gh_car (s);
26 if (key == ly_symbol2scm ("feta"))
28 return Font_interface::get_default_font (me)->find_by_name ("scripts-" +
29 ly_scm2string (index_cell (gh_cdr (s), d)));
31 else if (key == ly_symbol2scm ("accordion"))
33 return Lookup::accordion (gh_cdr (s), 1.0, Font_interface::get_default_font (me));
35 else
36 assert (false);
38 return Molecule ();
41 MAKE_SCHEME_CALLBACK (Script,before_line_breaking,1);
42 SCM
43 Script::before_line_breaking (SCM smob)
45 Grob * me = unsmob_grob (smob);
47 Direction d = Side_position_interface::get_direction (me);
49 if (!d)
52 we should not have `arbitrary' directions.
54 programming_error ("Script direction not yet known!");
55 d = DOWN;
58 Side_position_interface::set_direction (me,d);
60 return SCM_UNSPECIFIED;
64 MAKE_SCHEME_CALLBACK (Script,brew_molecule,1);
66 SCM
67 Script::brew_molecule (SCM smob)
69 Grob *me= unsmob_grob (smob);
71 Direction dir = Side_position_interface::get_direction (me);
72 if (!dir)
74 programming_error ("Script direction not known, but molecule wanted.");
75 dir= DOWN;
78 return get_molecule (me, dir).smobbed_copy ();
81 bool
82 Script::has_interface (Grob*me)
84 return me->has_interface (ly_symbol2scm ("script-interface"));
87 void
88 Script::set_interface (Grob*me)
90 return me->set_interface (ly_symbol2scm ("script-interface"));