]> git.donarmstrong.com Git - lilypond.git/blob - lily/script-interface.cc
release commit
[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@xs4all.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, calc_direction, 1);
45 SCM
46 Script_interface::calc_direction (SCM smob)
47 {
48   Grob *me = unsmob_grob (smob);
49   Direction d = Side_position_interface::get_direction (me);
50
51   if (!d)
52     {
53       me->programming_error ("script direction not yet known");
54       d = DOWN;
55     }
56
57   if (Grob *par = me->get_parent (X_AXIS))
58     {
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);
62     }
63
64   return scm_from_int (d);
65 }
66
67 MAKE_SCHEME_CALLBACK (Script_interface, print, 1);
68
69 SCM
70 Script_interface::print (SCM smob)
71 {
72   Grob *me = unsmob_grob (smob);
73
74   Direction dir = get_grob_direction (me);
75
76   return get_stencil (me, dir).smobbed_copy ();
77 }
78
79 struct Text_script
80 {
81   static bool has_interface (Grob *);
82 };
83
84 ADD_INTERFACE (Text_script, "text-script-interface",
85                "An object that is put above or below a note",
86
87                /* properties */
88                "add-stem-support "
89                "avoid-slur "
90                "script-priority "
91                "slur "
92                );
93
94 /*
95   Hmm. Where should we put add-stem-support ?
96 */
97 ADD_INTERFACE (Script_interface, "script-interface",
98                "An object that is put above or below a note",
99                "add-stem-support "
100                "avoid-slur "
101                "script-priority "
102                "script-stencil "
103                "slur "
104                "slur-padding "
105                );
106