2 script-interface.cc -- implement Script_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "script-interface.hh"
11 #include "directional-element-interface.hh"
13 #include "font-interface.hh"
14 #include "side-position-interface.hh"
15 #include "output-def.hh"
18 #include "note-column.hh"
21 Script_interface::get_stencil (Grob *me, Direction d)
23 SCM s = me->get_property ("script-stencil");
24 assert (scm_is_pair (s));
26 SCM key = scm_car (s);
27 if (key == ly_symbol2scm ("feta"))
29 SCM name_entry = scm_cdr (s);
30 SCM str = ((scm_is_pair (name_entry)) ? index_get_cell (name_entry, d)
32 return Font_interface::get_default_font (me)
33 ->find_by_name ("scripts." + ly_scm2string (str));
35 else if (key == ly_symbol2scm ("accordion"))
36 return Lookup::accordion (scm_cdr (s), 1.0,
37 Font_interface::get_default_font (me));
44 MAKE_SCHEME_CALLBACK (Script_interface, calc_direction, 1);
46 Script_interface::calc_direction (SCM smob)
48 Grob *me = unsmob_grob (smob);
49 Direction d = Side_position_interface::get_direction (me);
53 me->programming_error ("script direction not yet known");
57 if (Grob *par = me->get_parent (X_AXIS))
59 Grob *stem = Note_column::get_stem (par);
60 if (stem && Stem::first_head (stem))
61 me->set_parent (Stem::first_head (stem), X_AXIS);
64 return scm_from_int (d);
67 MAKE_SCHEME_CALLBACK (Script_interface, print, 1);
70 Script_interface::print (SCM smob)
72 Grob *me = unsmob_grob (smob);
74 Direction dir = get_grob_direction (me);
76 return get_stencil (me, dir).smobbed_copy ();
81 static bool has_interface (Grob *);
84 ADD_INTERFACE (Text_script, "text-script-interface",
85 "An object that is put above or below a note",
95 Hmm. Where should we put add-stem-support ?
97 ADD_INTERFACE (Script_interface, "script-interface",
98 "An object that is put above or below a note",