X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Foutput-lib.scm;h=a38a49da49880e5fb7306cb2aa082c25afab0be2;hb=34fc5bf1293e0bbdea8519118112b50dd1256ac7;hp=9227787b8cb40d14ead03b817fdcd0d85e02c88f;hpb=54495e6456e2df78b25ace3dbe88716c5970ce76;p=lilypond.git diff --git a/scm/output-lib.scm b/scm/output-lib.scm index 9227787b8c..a38a49da49 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -1,6 +1,6 @@ ;;;; This file is part of LilyPond, the GNU music typesetter. ;;;; -;;;; Copyright (C) 1998--2011 Jan Nieuwenhuizen +;;;; Copyright (C) 1998--2012 Jan Nieuwenhuizen ;;;; Han-Wen Nienhuys ;;;; ;;;; LilyPond is free software: you can redistribute it and/or modify @@ -58,7 +58,6 @@ (ly:text-interface::interpret-markup layout props text))) - ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; beam slope @@ -133,6 +132,33 @@ (beg (ly:grob-pure-property grob 'stem-begin-position 0 1000))) (abs (- (ly:stem::pure-calc-stem-end-position grob 0 2147483646) beg)))) +(define (stem-stub::do-calculations grob) + (and (ly:grob-property (ly:grob-parent grob X) 'cross-staff) + (not (ly:grob-property (ly:grob-parent grob X) 'transparent)))) + +(define-public (stem-stub::pure-height grob beg end) + (if (stem-stub::do-calculations grob) + '(0 . 0) + '(+inf.0 . -inf.0))) + +(define-public (stem-stub::width grob) + (if (stem-stub::do-calculations grob) + (grob::x-parent-width grob) + '(+inf.0 . -inf.0))) + +(define-public (stem-stub::extra-spacing-height grob) + (if (stem-stub::do-calculations grob) + (let* ((dad (ly:grob-parent grob X)) + (refp (ly:grob-common-refpoint grob dad Y)) + (stem_ph (ly:grob-pure-height dad refp 0 1000000)) + (my_ph (ly:grob-pure-height grob refp 0 1000000)) + ;; only account for distance if stem is on different staff than stub + (dist (if (grob::has-interface refp 'hara-kiri-group-spanner-interface) + 0 + (- (car my_ph) (car stem_ph))))) + (if (interval-empty? (interval-intersection stem_ph my_ph)) #f (coord-translate stem_ph dist))) + #f)) + (define-public (note-head::calc-duration-log grob) (min 2 (ly:duration-log @@ -406,21 +432,17 @@ and duration-log @var{log}." (coord-operation - from-neighbors height))) (define-public (pure-from-neighbor-interface::account-for-span-bar grob) - (define (other-op x) (x (cons cdr car))) (let* ((esh (pure-from-neighbor-interface::extra-spacing-height grob)) - (hsb (ly:grob-property grob 'has-span-bar))) + (hsb (ly:grob-property grob 'has-span-bar)) + (ii (interval-intersection esh (cons -1.01 1.01)))) (if (pair? hsb) - (cons-map - (lambda (x) - (if (and ((other-op x) hsb) - (not (and (eq? x car) - (not (ly:grob-property grob 'allow-span-bar))))) - (x esh) - (x (cons -1.01 1.01)))) - (cons car cdr)) - '(-1.01 . 1.01)))) - -(define (pure-from-neighbor-interface::extra-spacing-height-including-staff grob) + (cons (car (if (and (car hsb) + (ly:grob-property grob 'allow-span-bar)) + esh ii)) + (cdr (if (cdr hsb) esh ii))) + ii))) + +(define-public (pure-from-neighbor-interface::extra-spacing-height-including-staff grob) (let ((esh (pure-from-neighbor-interface::extra-spacing-height grob)) (to-staff (coord-operation - (interval-widen