From: Han-Wen Nienhuys Date: Wed, 15 Feb 2006 14:58:50 +0000 (+0000) Subject: * lily/tuplet-bracket.cc (calc_positions): multiply with X-Git-Tag: release/2.7.35~25 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=18c39bfee02951055e27f737a11525062033503d;p=lilypond.git * lily/tuplet-bracket.cc (calc_positions): multiply with staff-space for beam case. This fixes tuplets+beams on scaled staves. * config.hh.in: remove all Kpathsea related defines. * lily/dot-column.cc (side_position): reach stem via dots-> head->stem. Inspect all stems for dot collisions. --- diff --git a/ChangeLog b/ChangeLog index b6cb5d0f77..eb35424092 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2006-02-15 Han-Wen Nienhuys + * lily/tuplet-bracket.cc (calc_positions): multiply with + staff-space for beam case. This fixes tuplets+beams on scaled + staves. + + * config.hh.in: remove all Kpathsea related defines. + * lily/dot-column.cc (side_position): reach stem via dots-> head->stem. Inspect all stems for dot collisions. diff --git a/Documentation/topdocs/NEWS.tely b/Documentation/topdocs/NEWS.tely index 12afb9dab1..dd7f37e520 100644 --- a/Documentation/topdocs/NEWS.tely +++ b/Documentation/topdocs/NEWS.tely @@ -63,6 +63,7 @@ which scares away people. * only show user-visible changes. @end ignore + @item Newly created contexts may also be named with the following syntax, diff --git a/config.hh.in b/config.hh.in index 7b90ae3444..47a83f2831 100644 --- a/config.hh.in +++ b/config.hh.in @@ -55,21 +55,9 @@ /* define if you have yyFlexLexer.yy_current_buffer */ #undef HAVE_FLEXLEXER_YY_CURRENT_BUFFER -/* define if you want KPATHSEA */ -#define KPATHSEA @KPATHSEA@ - /* define if you have grp header */ #define HAVE_GRP_H 0 -/* define if you have kpatsea header */ -#define HAVE_KPATHSEA_KPATHSEA_H 0 - -/* define if you have kpse_find_file */ -#define HAVE_KPSE_FIND_FILE 0 - -/* define if you have kpse_find_tfm */ -#define HAVE_KPSE_FIND_TFM 0 - /* define if you have pwd header */ #define HAVE_PWD_H 0 @@ -110,8 +98,5 @@ /* define if you have pango FT2 binding */ #define HAVE_PANGO_FT2 0 -/* define if you have libkpathsea.so */ -#define HAVE_LIBKPATHSEA_SO 0 - /* define if you have utf8/wchar.h */ #define HAVE_UTF8_WCHAR_H 0 diff --git a/lily/tuplet-bracket.cc b/lily/tuplet-bracket.cc index 1248b9cd6b..8246f400f9 100644 --- a/lily/tuplet-bracket.cc +++ b/lily/tuplet-bracket.cc @@ -644,9 +644,6 @@ Tuplet_bracket::calc_positions (SCM smob) Real lp = scm_to_double (scm_car (ps)); Real rp = scm_to_double (scm_cdr (ps)); - /* - duh. magic. - */ Real ss = Staff_symbol_referencer::staff_space (me); offset = lp + dir * (0.5 + scm_to_double (me->get_property ("padding"))); diff --git a/scm/define-grob-properties.scm b/scm/define-grob-properties.scm index 49e8a20d6e..fcd6efa237 100644 --- a/scm/define-grob-properties.scm +++ b/scm/define-grob-properties.scm @@ -481,6 +481,7 @@ function is to protect objects from being garbage collected.") (direction-source ,ly:grob? "in case side-relative-direction is set, which grob to get the direction from .") (dot ,ly:grob? "reference to Dots object.") + (dots ,ly:grob-array? "multiple Dots objects.") (figures ,ly:grob-array? "Figured bass objects for continuation line.") (glyph-name ,string? "a name of character within font.") (pedal-text ,ly:grob? "Pointer to the text of a mixed-style piano pedal.")