]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-interface.cc
* scm/define-grob-properties.scm (avoid-slur): New property.
[lilypond.git] / lily / script-interface.cc
1 /*
2   script-interface.cc -- implement Script_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "script-interface.hh"
10
11 #include "directional-element-interface.hh"
12 #include "warn.hh"
13 #include "font-interface.hh"
14 #include "side-position-interface.hh"
15 #include "output-def.hh"
16 #include "lookup.hh"
17 #include "stem.hh"
18 #include "note-column.hh"
19
20 Stencil
21 Script_interface::get_stencil (Grob *me, Direction d)
22 {
23   SCM s = me->get_property ("script-stencil");
24   assert (scm_is_pair (s));
25
26   SCM key = scm_car (s);
27   if (key == ly_symbol2scm ("feta"))
28     {
29       SCM name_entry = scm_cdr (s);
30       SCM str = ((scm_is_pair (name_entry)) ? index_get_cell (name_entry, d)
31                  : name_entry);
32       return Font_interface::get_default_font (me)
33         ->find_by_name ("scripts." + ly_scm2string (str));
34     }
35   else if (key == ly_symbol2scm ("accordion"))
36     return Lookup::accordion (scm_cdr (s), 1.0,
37                               Font_interface::get_default_font (me));
38   else
39     assert (false);
40
41   return Stencil ();
42 }
43
44 MAKE_SCHEME_CALLBACK (Script_interface, before_line_breaking, 1);
45 SCM
46 Script_interface::before_line_breaking (SCM smob)
47 {
48   Grob *me = unsmob_grob (smob);
49
50   Direction d = Side_position_interface::get_direction (me);
51
52   if (!d)
53     {
54       /* FIXME: This should never happen: `arbitrary' directions.  */
55       programming_error ("script direction not yet known");
56       d = DOWN;
57     }
58
59   set_grob_direction (me, d);
60
61   if (Grob *par = me->get_parent (X_AXIS))
62     {
63       Grob *stem = Note_column::get_stem (par);
64       if (stem && Stem::first_head (stem))
65         me->set_parent (Stem::first_head (stem), X_AXIS);
66     }
67   return SCM_UNSPECIFIED;
68 }
69
70 MAKE_SCHEME_CALLBACK (Script_interface, print, 1);
71
72 SCM
73 Script_interface::print (SCM smob)
74 {
75   Grob *me = unsmob_grob (smob);
76
77   Direction dir = Side_position_interface::get_direction (me);
78   if (!dir)
79     {
80       programming_error ("script direction unknown, but stencil wanted");
81       dir = DOWN;
82     }
83   return get_stencil (me, dir).smobbed_copy ();
84 }
85
86 struct Text_script
87 {
88   static bool has_interface (Grob *);
89 };
90
91 ADD_INTERFACE (Text_script, "text-script-interface",
92                "An object that is put above or below a note",
93                "add-stem-support "
94                "avoid-slur "
95                "script-priority "
96                "slur "
97                );
98
99 /*
100   Hmm. Where should we put add-stem-support ?
101 */
102 ADD_INTERFACE (Script_interface, "script-interface",
103                "An object that is put above or below a note",
104                "add-stem-support "
105                "avoid-slur "
106                "script-priority "
107                "script-stencil "
108                "slur "
109                "slur-padding "
110                );
111