]> git.donarmstrong.com Git - lilypond.git/blob - lily/percent-repeat-item.cc
79eca6117a2bb2e6bb289ba3642b6e84735a6797
[lilypond.git] / lily / percent-repeat-item.cc
1 /*   
2   percent-repeat-item.cc --  implement Percent_repeat_item_interface
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 2001--2005  Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "percent-repeat-item.hh"
11
12 #include <math.h>
13
14 #include "lookup.hh"
15 #include "font-interface.hh"
16
17 Stencil
18 Percent_repeat_item_interface::brew_slash ( Grob *me)
19 {
20   Real slope = robust_scm2double (me->get_property ("slope"), 1);
21   Real wid = 2.0 / slope;
22
23   /*
24     todo: check out if in staff-rule thickness normally.
25    */
26   Real thick = robust_scm2double (me->get_property ("thickness"), 1);
27   Stencil m = Lookup::repeat_slash (wid, slope, thick);
28   m.translate_axis (-m.extent (Y_AXIS).center (), Y_AXIS);
29   return m;
30 }
31
32 /*
33   todo: use grob props for dot_neg_kern, slash_neg_kern?
34  */
35 Stencil
36 Percent_repeat_item_interface::x_percent (Grob *me, int count,
37                                           Real dot_neg_kern,
38                                           Real slash_neg_kern)
39 {
40   Stencil m ;
41   Stencil s = brew_slash (me);
42
43   for (int i  = count; i--;)
44     {
45       m.add_at_edge (X_AXIS, RIGHT, s, -slash_neg_kern, 0);
46     }
47   Stencil d1 = Font_interface::get_default_font (me)->find_by_name ("dots.dot");
48   Stencil d2  =  d1;
49   d1.translate_axis (0.5, Y_AXIS );
50   d2.translate_axis (-0.5, Y_AXIS);
51   
52   m.add_at_edge (X_AXIS, LEFT, d1, -dot_neg_kern, 0);
53   m.add_at_edge (X_AXIS, RIGHT, d2, -dot_neg_kern, 0);
54
55   return m;
56 }
57
58 MAKE_SCHEME_CALLBACK (Percent_repeat_item_interface, double_percent, 1);
59 SCM
60 Percent_repeat_item_interface::double_percent (SCM grob)
61 {
62   Grob *me = unsmob_grob (grob);
63   Stencil m = x_percent (me, 2, 0.75, 1.6);
64   m.translate_axis (- m.extent (X_AXIS).center (), X_AXIS);
65   return m.smobbed_copy ();
66 }
67
68 MAKE_SCHEME_CALLBACK (Percent_repeat_item_interface, beat_slash, 1);
69 SCM
70 Percent_repeat_item_interface::beat_slash (SCM grob)
71 {
72   Grob *me = unsmob_grob (grob);
73   Stencil m = brew_slash (me);
74
75   return m.smobbed_copy ();
76 }
77
78 ADD_INTERFACE (Percent_repeat_item_interface, "percent-repeat-interface",
79   "Repeats that look like percent signs",
80   "slope thickness");
81
82
83