lilypond-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: PATCH: add dashed and dotted style for phrasing slurs


From: Till Rettig
Subject: Re: PATCH: add dashed and dotted style for phrasing slurs
Date: Sun, 23 Nov 2008 12:09:35 +0200
User-agent: Thunderbird 2.0.0.17 (X11/20080925)

Neil Puttock schrieb:
LGTM.

A few nitpicks below:

+++ b/input/regression/phrasing-slur-dash.ly
@@ -0,0 +1,26 @@
+\version "2.11.51"

\version "2.11.65"

+\header {texidoc = "@cindex Phrasing slur, dotted, dashed

The @cindex entries don't go anywhere, it seems.

+The appearance of phrasing slurs may be changed from solid to dotted or dashed.
+"
+}
+\layout{ ragged-right=##t }

Don't need this, since it's the default for single line snippets.

+++ b/ly/property-init.ly
@@ -29,6 +29,20 @@ phrasingSlurUp = \override PhrasingSlur #'direction = #UP
 phrasingSlurDown = \override PhrasingSlur #'direction = #DOWN
 phrasingSlurNeutral = \revert PhrasingSlur #'direction

+%% There's also dash, but setting dash period/length should be fixed.

I'm pretty sure this comment is left over from when there were no
dash-period and dash-fraction settings for slurs, so it no longer
applies.

Cheers,
Neil

Thanks, I fixed them in the attached patch, removed also the same comment from the dashed slur definition. Do you mind to apply the patch on master? At the moment I could only push it to the translation branch, but I can do this if it is ok.

Till
>From 79df5e106ed772b72e79b8bd760dbb8335428d0d Mon Sep 17 00:00:00 2001
From: Till Rettig <address@hidden>
Date: Sun, 23 Nov 2008 11:59:58 +0200
Subject: [PATCH] Add dashed and dotted phrasing slurs

*Add definitions to property-init.ly
*Add regression test
*Update to the documentation
---
 Documentation/user/expressive.itely    |   24 +++++++++++++++++++++++-
 input/regression/phrasing-slur-dash.ly |   24 ++++++++++++++++++++++++
 ly/property-init.ly                    |   14 +++++++++++++-
 3 files changed, 60 insertions(+), 2 deletions(-)
 create mode 100644 input/regression/phrasing-slur-dash.ly

diff --git a/Documentation/user/expressive.itely 
b/Documentation/user/expressive.itely
index 2376904..1c8730d 100644
--- a/Documentation/user/expressive.itely
+++ b/Documentation/user/expressive.itely
@@ -630,6 +630,12 @@ e2) d\)
 @funindex phrasingSlurDown
 @funindex \phrasingSlurNeutral
 @funindex phrasingSlurNeutral
address@hidden phrasingSlurDashed
address@hidden \phrasingSlurDashed
address@hidden \phrasingSlurDotted
address@hidden phrasingSlurDotted
address@hidden \phrasingSlurSolid
address@hidden phrasingSlurSolid
 
 Typographically, a phrasing slur behaves almost exactly like a
 normal slur.  However, they are treated as different objects; a
@@ -652,12 +658,28 @@ c4\( g' c,( b) | c1\)
 
 Simultaneous or overlapping phrasing slurs are not permitted.
 
+Phrasing slurs can be solid, dotted, or dashed.  Solid is the default
+style for phrasing slurs:
+
address@hidden,quote,relative=1]
+c4\( e g2\)
+\phrasingSlurDashed
+g4\( e c2\)
+\phrasingSlurDotted
+c4\( e g2\)
+\phrasingSlurSolid
+g4\( e c2\)
address@hidden lilypond
+
 
 @predefined
 
 @code{\phrasingSlurUp},
 @code{\phrasingSlurDown},
address@hidden
address@hidden,
address@hidden,
address@hidden,
address@hidden
 
 
 @seealso
diff --git a/input/regression/phrasing-slur-dash.ly 
b/input/regression/phrasing-slur-dash.ly
new file mode 100644
index 0000000..14aaa7f
--- /dev/null
+++ b/input/regression/phrasing-slur-dash.ly
@@ -0,0 +1,24 @@
+\version "2.11.51"
+\header {texidoc = "
+The appearance of phrasing slurs may be changed from solid to dotted or dashed.
+"
+}
+
+\relative c'{
+  c\( d e  c\) |
+  \phrasingSlurDotted
+  c\( d e  c\) |
+  \phrasingSlurDashed
+  c\( d e  c\) |
+  \override PhrasingSlur #'dash-period = #2.0
+  \override PhrasingSlur #'dash-fraction = #0.4
+  c\( d e  c\) |
+  \phrasingSlurSolid
+  c\( d e  c\) |
+}
+
+
+
+
+
+
diff --git a/ly/property-init.ly b/ly/property-init.ly
index c0d43eb..8f4a2e3 100644
--- a/ly/property-init.ly
+++ b/ly/property-init.ly
@@ -10,7 +10,6 @@ slurUp = \override Slur #'direction = #UP
 slurDown = \override Slur #'direction = #DOWN
 slurNeutral = \revert Slur #'direction
 
-%% There's also dash, but setting dash period/length should be fixed.
 slurDashed = {
   \override Slur #'dash-period = #0.75
   \override Slur #'dash-fraction = #0.4
@@ -29,6 +28,19 @@ phrasingSlurUp = \override PhrasingSlur #'direction = #UP
 phrasingSlurDown = \override PhrasingSlur #'direction = #DOWN
 phrasingSlurNeutral = \revert PhrasingSlur #'direction
 
+phrasingSlurDashed = {
+  \override PhrasingSlur #'dash-period = #0.75
+  \override PhrasingSlur #'dash-fraction = #0.4
+}
+phrasingSlurDotted = {
+  \override PhrasingSlur #'dash-period = #0.75
+  \override PhrasingSlur #'dash-fraction = #0.1
+}
+phrasingSlurSolid = {
+  \revert PhrasingSlur #'dash-period
+  \revert PhrasingSlur #'dash-fraction
+}
+
 mergeDifferentlyDottedOn = {
   \override Staff.NoteCollision #'merge-differently-dotted = ##t
 }
-- 
1.5.4.3.325.g6d216


reply via email to

[Prev in Thread] Current Thread [Next in Thread]