]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-interface.cc
* lily/tie-column.cc (new_directions): put Tie down on center
[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       me->programming_error ("script direction not yet known");
55       d = DOWN;
56     }
57
58   set_grob_direction (me, d);
59
60   if (Grob *par = me->get_parent (X_AXIS))
61     {
62       Grob *stem = Note_column::get_stem (par);
63       if (stem && Stem::first_head (stem))
64         me->set_parent (Stem::first_head (stem), X_AXIS);
65     }
66   return SCM_UNSPECIFIED;
67 }
68
69 MAKE_SCHEME_CALLBACK (Script_interface, print, 1);
70
71 SCM
72 Script_interface::print (SCM smob)
73 {
74   Grob *me = unsmob_grob (smob);
75
76   Direction dir = Side_position_interface::get_direction (me);
77   if (!dir)
78     {
79       programming_error ("script direction unknown, but stencil wanted");
80       dir = DOWN;
81     }
82   return get_stencil (me, dir).smobbed_copy ();
83 }
84
85 struct Text_script
86 {
87   static bool has_interface (Grob *);
88 };
89
90 ADD_INTERFACE (Text_script, "text-script-interface",
91                "An object that is put above or below a note",
92                "add-stem-support "
93                "avoid-slur "
94                "script-priority "
95                "slur "
96                );
97
98 /*
99   Hmm. Where should we put add-stem-support ?
100 */
101 ADD_INTERFACE (Script_interface, "script-interface",
102                "An object that is put above or below a note",
103                "add-stem-support "
104                "avoid-slur "
105                "script-priority "
106                "script-stencil "
107                "slur "
108                "slur-padding "
109                );
110