]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-symbol.cc
make implementation for Class::has_interface automatically. Junk all
[lilypond.git] / lily / staff-symbol.cc
1 /*
2   staff-symbol.cc -- implement Staff_symbol
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "lookup.hh"
10 #include "dimensions.hh"
11 #include "paper-def.hh"
12 #include "molecule.hh"
13 #include "debug.hh"
14 #include "item.hh"
15 #include "staff-symbol.hh"
16 #include "spanner.hh"
17
18
19
20 MAKE_SCHEME_CALLBACK (Staff_symbol,brew_molecule,1);
21
22 SCM
23 Staff_symbol::brew_molecule (SCM smob)
24 {
25   Grob *me = unsmob_grob (smob);
26   Spanner* sp = dynamic_cast<Spanner*> (me);
27   Grob * common
28     = sp->get_bound (LEFT)->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
29   
30   bool ragged = to_boolean (me->paper_l ()->get_scmvar ("raggedright"));
31   Real width;
32   if (ragged)
33     {
34       // *prevent* staff symbol from being ragged right
35       width =
36         me->paper_l ()->get_var ("linewidth")
37         - sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS)
38         ;
39     }
40   else
41     {
42       width =
43         // right_shift     - left_shift
44         + sp->get_bound (RIGHT)->relative_coordinate (common , X_AXIS)
45         - sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS)
46         ;
47     }
48
49   Real t = me->paper_l ()->get_var ("linethickness");
50   SCM my_thick = me->get_grob_property("thickness");
51   if (gh_number_p(my_thick))
52     t *= gh_scm2double (my_thick);
53   
54   int l = Staff_symbol::line_count (me);
55   
56   Real height = (l-1) * staff_space (me) /2;
57   Molecule m;
58   for (int i=0; i < l; i++)
59     {
60       Molecule a =
61         Lookup::filledbox (Box (Interval (0,width),
62                                          Interval (-t/2, t/2)));
63
64       a.translate_axis (height - i * staff_space (me), Y_AXIS);
65       m.add_molecule (a);
66     }
67
68   return m.smobbed_copy ();
69 }
70
71 int
72 Staff_symbol::steps_i (Grob*me) 
73 {
74   return line_count (me) * 2;
75 }
76
77 int
78 Staff_symbol::line_count (Grob*me) 
79 {
80   SCM c = me->get_grob_property ("line-count");
81   if (gh_number_p (c))
82     return gh_scm2int (c);
83   else
84     return 0;
85 }
86
87 Real
88 Staff_symbol::staff_space (Grob*me)
89 {
90   Real ss = 1.0;
91   
92   SCM s = me->get_grob_property ("staff-space");
93   if (gh_number_p (s))
94     ss *= gh_scm2double (s);
95   return ss;
96 }
97
98
99
100
101 ADD_INTERFACE (Staff_symbol,"staff-symbol-interface",
102   "This spanner draws the lines of a staff.  The center (i.e. middle line
103 or space) is position 0.",
104                
105   "staff-space thickness line-count");
106