* lily/paper-book.cc: remove copyright & tagline. Remove
[lilypond.git] / lily / script.cc
blob910c240a6aa221f9448d84ef9ef2ab92033bb16b
1 /*
2 script.cc -- implement Script_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "directional-element-interface.hh"
11 #include "warn.hh"
12 #include "script.hh"
13 #include "font-interface.hh"
14 #include "side-position-interface.hh"
15 #include "output-def.hh"
16 #include "item.hh"
17 #include "stencil.hh"
18 #include "lookup.hh"
19 #include "stem.hh"
20 #include "note-column.hh"
22 Stencil
23 Script_interface::get_stencil (Grob * me, Direction d)
25 SCM s = me->get_property ("script-stencil");
26 assert (ly_c_pair_p (s));
28 SCM key = ly_car (s);
29 if (key == ly_symbol2scm ("feta"))
31 SCM name_entry = ly_cdr (s);
33 SCM str = (ly_c_pair_p (name_entry)) ? index_get_cell (name_entry, d) : name_entry;
34 return Font_interface::get_default_font (me)->find_by_name ("scripts-" +
35 ly_scm2string (str));
37 else if (key == ly_symbol2scm ("accordion"))
39 return Lookup::accordion (ly_cdr (s), 1.0, Font_interface::get_default_font (me));
41 else
42 assert (false);
44 return Stencil ();
47 MAKE_SCHEME_CALLBACK (Script_interface,before_line_breaking,1);
48 SCM
49 Script_interface::before_line_breaking (SCM smob)
51 Grob * me = unsmob_grob (smob);
53 Direction d = Side_position_interface::get_direction (me);
55 if (!d)
58 we should not have `arbitrary' directions.
60 programming_error ("Script direction not yet known!");
61 d = DOWN;
64 set_grob_direction (me, d);
66 if (Grob * par = me->get_parent (X_AXIS))
68 Grob * stem = Note_column::get_stem (par);
69 if (stem && Stem::first_head (stem))
71 me->set_parent (Stem::first_head (stem), X_AXIS);
75 return SCM_UNSPECIFIED;
79 MAKE_SCHEME_CALLBACK (Script_interface,print,1);
81 SCM
82 Script_interface::print (SCM smob)
84 Grob *me= unsmob_grob (smob);
86 Direction dir = Side_position_interface::get_direction (me);
87 if (!dir)
89 programming_error ("Script direction not known, but stencil wanted.");
90 dir= DOWN;
93 return get_stencil (me, dir).smobbed_copy ();
98 struct Text_script
100 static bool has_interface (Grob*);
103 struct Skript
105 static bool has_interface (Grob*);
108 ADD_INTERFACE (Text_script,"text-script-interface",
109 "An object that is put above or below a note",
110 "script-priority");
112 ADD_INTERFACE (Script_interface, "script-interface",
113 "An object that is put above or below a note",
114 "script-priority script-stencil");