X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fdots.cc;h=ba33b5ff537be97439fbdd5fb4ec5e969926586b;hb=48eb640005f5abb84b3d6f8db2e1704d4bff7645;hp=a658d838e72d986e9fab7ff073c8a0afa1262772;hpb=76f13ab50fc726c89fa7c96f3deed519d2d773dc;p=lilypond.git diff --git a/lily/dots.cc b/lily/dots.cc index a658d838e7..ba33b5ff53 100644 --- a/lily/dots.cc +++ b/lily/dots.cc @@ -3,63 +3,59 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2000 Han-Wen Nienhuys + (c) 1997--2004 Han-Wen Nienhuys */ #include "dots.hh" -#include "molecule.hh" -#include "paper-def.hh" +#include "item.hh" +#include "stencil.hh" +#include "output-def.hh" +#include "font-interface.hh" #include "lookup.hh" #include "staff-symbol-referencer.hh" #include "directional-element-interface.hh" -Dots::Dots (SCM s) - : Item (s) +MAKE_SCHEME_CALLBACK (Dots,print,1); +SCM +Dots::print (SCM d) { - set_elt_property ("dot-count", gh_int2scm (0)); -} + Grob *sc = unsmob_grob (d); + Stencil mol; + + SCM c = sc->get_property ("dot-count"); -void -Dots::after_line_breaking () -{ - SCM d= get_elt_property ("dot-count"); - if (!gh_number_p (d) || !gh_scm2int (d)) - { - set_elt_property ("transparent", SCM_BOOL_T); - set_extent_callback (0, X_AXIS); - set_extent_callback (0, Y_AXIS); - } - else + if (scm_is_number (c)) { - if (!directional_element (this).get ()) - directional_element (this).set (UP); - - Staff_symbol_referencer_interface si (this); - int p = int (si.position_f ()); - if (!(p % 2)) - si.set_position (p + directional_element (this).get ()); + Stencil d = Font_interface::get_default_font (sc)->find_by_name (String ("dots-dot")); + Real dw = d.extent (X_AXIS).length (); + + + /* + we need to add a real blank box, to assure that + side-positioning doth not cancel the left-most padding. */ + + /* + TODO: this should be handled by side-position padding. + */ + mol = Lookup::blank (Box (Interval (0,0), + Interval (0,0))); + + for (int i = scm_to_int (c); i--;) + { + d.translate_axis (2*dw,X_AXIS); + mol.add_at_edge (X_AXIS, RIGHT, d, dw, 0); + } } + return mol.smobbed_copy (); } -Molecule -Dots::do_brew_molecule () const -{ - Molecule mol (lookup_l ()->blank (Box (Interval (0,0), - Interval (0,0)))); - Molecule d = lookup_l ()->afm_find (String ("dots-dot")); - Real dw = d.extent (X_AXIS).length (); - d.translate_axis (-dw, X_AXIS); - for (int i = gh_scm2int (get_elt_property ("dot-count")); i--; ) - { - d.translate_axis (2*dw,X_AXIS); - mol.add_molecule (d); - } - - return mol; -} - +ADD_INTERFACE (Dots, "dots-interface", + "The dots to go with a notehead or rest." + "@code{direction} sets the preferred direction to move in case of staff " + "line collisions.", + "direction dot-count");