]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-symbol.cc
*** empty log message ***
[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 "staff-symbol-referencer.hh"
17 #include "spanner.hh"
18
19
20
21 MAKE_SCHEME_CALLBACK (Staff_symbol,brew_molecule,1);
22
23 SCM
24 Staff_symbol::brew_molecule (SCM smob)
25 {
26   Grob *me = unsmob_grob (smob);
27   Spanner* sp = dynamic_cast<Spanner*> (me);
28   Grob * common
29     = sp->get_bound (LEFT)->common_refpoint (sp->get_bound (RIGHT), X_AXIS);
30   
31   bool paper_raggedright = to_boolean (me->paper_l ()->get_scmvar ("raggedright"));
32   bool grob_raggedright = to_boolean (me->get_grob_property ("ragged-right"));
33   Real width;
34
35   SCM width_scm = me->get_grob_property ("width");
36   if (gh_number_p (width_scm)) // user-defined width
37     {
38       width =
39         gh_scm2double (width_scm) *
40         Staff_symbol_referencer::staff_space (me);
41     }
42   else // determine width automatically
43     {
44       if (paper_raggedright && !grob_raggedright)
45         {
46           // *prevent* staff symbol from being ragged right; instead, use
47           // paper variable "linewidth"
48           width = me->paper_l ()->get_var ("linewidth");
49         }
50       else // determine width from my own bounds
51         {
52           width = sp->get_bound (RIGHT)->relative_coordinate (common , X_AXIS);
53         }
54     }
55
56   // respect indentation, if any
57   width -= sp->get_bound (LEFT)->relative_coordinate (common, X_AXIS);
58
59   if (width < 0)
60     {
61       warning (_f ("staff symbol: indentation yields beyond end of line"));
62       width = 0;
63     }
64
65   Real t = me->paper_l ()->get_var ("linethickness");
66   SCM my_thick = me->get_grob_property("thickness");
67   if (gh_number_p(my_thick))
68     t *= gh_scm2double (my_thick);
69   
70   int l = Staff_symbol::line_count (me);
71   
72   Real height = (l-1) * staff_space (me) /2;
73   Molecule m;
74   for (int i=0; i < l; i++)
75     {
76       Molecule a =
77         Lookup::filledbox (Box (Interval (0,width),
78                                          Interval (-t/2, t/2)));
79
80       a.translate_axis (height - i * staff_space (me), Y_AXIS);
81       m.add_molecule (a);
82     }
83
84   return m.smobbed_copy ();
85 }
86
87 int
88 Staff_symbol::steps_i (Grob*me) 
89 {
90   return line_count (me) * 2;
91 }
92
93 int
94 Staff_symbol::line_count (Grob*me) 
95 {
96   SCM c = me->get_grob_property ("line-count");
97   if (gh_number_p (c))
98     return gh_scm2int (c);
99   else
100     return 0;
101 }
102
103 Real
104 Staff_symbol::staff_space (Grob*me)
105 {
106   Real ss = 1.0;
107   
108   SCM s = me->get_grob_property ("staff-space");
109   if (gh_number_p (s))
110     ss *= gh_scm2double (s);
111   return ss;
112 }
113
114
115
116
117 ADD_INTERFACE (Staff_symbol,"staff-symbol-interface",
118   "This spanner draws the lines of a staff.  The center (i.e. middle line
119 or space) is position 0.",
120                
121   "ragged-right staff-space thickness line-count");
122