2 script-interface.cc -- implement Script_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2009 Han-Wen Nienhuys <hanwen@xs4all.nl>
9 #include "script-interface.hh"
11 #include "directional-element-interface.hh"
14 #include "font-interface.hh"
15 #include "side-position-interface.hh"
16 #include "output-def.hh"
19 #include "note-column.hh"
22 Script_interface::get_stencil (Grob
*me
, Direction d
)
24 SCM s
= me
->get_property ("script-stencil");
25 assert (scm_is_pair (s
));
27 SCM key
= scm_car (s
);
28 if (key
== ly_symbol2scm ("feta"))
30 SCM name_entry
= scm_cdr (s
);
31 SCM str
= ((scm_is_pair (name_entry
)) ? index_get_cell (name_entry
, d
)
33 return Font_interface::get_default_font (me
)
34 ->find_by_name ("scripts." + ly_scm2string (str
));
42 MAKE_SCHEME_CALLBACK (Script_interface
, calc_positioning_done
, 1);
44 Script_interface::calc_positioning_done (SCM smob
)
46 Grob
*me
= unsmob_grob (smob
);
47 if (Grob
*par
= me
->get_parent (X_AXIS
))
49 Grob
*stem
= Note_column::get_stem (par
);
50 if (stem
&& Stem::first_head (stem
))
51 me
->set_parent (Stem::first_head (stem
), X_AXIS
);
57 Script_interface::get_direction (Grob
*me
)
59 Direction relative_dir
= Direction (1);
60 SCM reldir
= me
->get_property ("side-relative-direction");
61 if (is_direction (reldir
))
62 relative_dir
= to_dir (reldir
);
64 SCM other_elt
= me
->get_object ("direction-source");
65 Grob
*e
= unsmob_grob (other_elt
);
67 return (Direction
) (relative_dir
* get_grob_direction (e
));
72 MAKE_SCHEME_CALLBACK (Script_interface
, calc_direction
, 1);
74 Script_interface::calc_direction (SCM smob
)
76 Grob
*me
= unsmob_grob (smob
);
77 Direction d
= Script_interface::get_direction (me
);
81 me
->programming_error ("script direction not yet known");
85 (void) me
->get_property ("positioning-done");
86 return scm_from_int (d
);
89 MAKE_SCHEME_CALLBACK (Script_interface
, calc_cross_staff
, 1);
91 Script_interface::calc_cross_staff (SCM smob
)
93 Grob
*me
= unsmob_grob (smob
);
94 Grob
*stem
= Note_column::get_stem (me
->get_parent (X_AXIS
));
96 if (stem
&& to_boolean (stem
->get_property ("cross-staff")))
99 Grob
*slur
= unsmob_grob (me
->get_object ("slur"));
100 SCM avoid_slur
= me
->get_property ("avoid-slur");
101 if (slur
&& to_boolean (slur
->get_property ("cross-staff"))
102 && (avoid_slur
== ly_symbol2scm ("outside")
103 || avoid_slur
== ly_symbol2scm ("around")))
109 MAKE_SCHEME_CALLBACK (Script_interface
, print
, 1);
112 Script_interface::print (SCM smob
)
114 Grob
*me
= unsmob_grob (smob
);
116 Direction dir
= get_grob_direction (me
);
118 return get_stencil (me
, dir
).smobbed_copy ();
123 DECLARE_GROB_INTERFACE ();
126 ADD_INTERFACE (Text_script
,
127 "An object that is put above or below a note.",
137 Hmm. Where should we put add-stem-support ?
139 ADD_INTERFACE (Script_interface
,
140 "An object that is put above or below a note.",
149 "side-relative-direction "