2 percent-repeat-item.cc -- implement Percent_repeat_item_interface
4 source file of the GNU LilyPond music typesetter
6 (c) 2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
13 #include "molecule.hh"
14 #include "font-interface.hh"
15 #include "font-metric.hh"
16 #include "percent-repeat-item.hh"
20 Percent_repeat_item_interface::brew_slash ( Grob
*me
)
22 Real slope
= gh_scm2double (me
->get_grob_property ("slope"));
23 Real wid
= 2.0 / slope
;
26 todo: check out if in staff-rule thickness normally.
28 Real thick
= gh_scm2double (me
->get_grob_property ("thickness"));
29 Molecule m
= Lookup::repeat_slash (wid
, slope
, thick
);
30 m
.translate_axis (-m
.extent (Y_AXIS
).center (), Y_AXIS
);
35 todo: use grob props for dot_neg_kern, slash_neg_kern?
38 Percent_repeat_item_interface::x_percent (Grob
*me
, int count
,
43 Molecule s
= brew_slash (me
);
45 for (int i
= count
; i
--;)
47 m
.add_at_edge (X_AXIS
, RIGHT
, s
, -slash_neg_kern
);
49 Molecule d1
= Font_interface::get_default_font (me
)->find_by_name ("dots-dot");
51 d1
.translate_axis (0.5, Y_AXIS
);
52 d2
.translate_axis (-0.5, Y_AXIS
);
54 m
.add_at_edge (X_AXIS
, LEFT
, d1
, -dot_neg_kern
);
55 m
.add_at_edge (X_AXIS
, RIGHT
, d2
, -dot_neg_kern
);
60 MAKE_SCHEME_CALLBACK(Percent_repeat_item_interface
,double_percent
,1);
62 Percent_repeat_item_interface::double_percent (SCM grob
)
64 Grob
*me
= unsmob_grob (grob
);
65 Molecule m
= x_percent (me
, 2, 0.75, 1.6);
66 m
.translate_axis (- m
.extent (X_AXIS
).center (), X_AXIS
);
67 return m
.smobbed_copy ();
70 MAKE_SCHEME_CALLBACK(Percent_repeat_item_interface
,beat_slash
,1);
72 Percent_repeat_item_interface::beat_slash (SCM grob
)
74 Grob
*me
= unsmob_grob (grob
);
75 Molecule m
= brew_slash (me
);
77 return m
.smobbed_copy ();