X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=ly%2Fproperty-init.ly;h=71076e5f7baa231833a1de52311f8a13b9c4fcce;hb=36f6cd546770e38c6e2314404e21f1c89504eb7d;hp=d3a8767fca4f9317587e90f2b6f1c3d03fb7e810;hpb=368c6346e0d46aed9931f43f662ff5207dd943d8;p=lilypond.git diff --git a/ly/property-init.ly b/ly/property-init.ly index d3a8767fca..71076e5f7b 100644 --- a/ly/property-init.ly +++ b/ly/property-init.ly @@ -1,242 +1,213 @@ % property-init.ly -\version "1.5.68" +\version "2.6.0" -stemUp = \property Voice.Stem \set #'direction = #1 -stemDown = \property Voice.Stem \set #'direction = #-1 -stemBoth= \property Voice.Stem \revert #'direction +stemUp = \override Stem #'direction = #1 +stemDown = \override Stem #'direction = #-1 +stemNeutral= \revert Stem #'direction -slurUp = \property Voice.Slur \set #'direction = #1 -slurDown = \property Voice.Slur \set #'direction = #-1 -slurBoth = \property Voice.Slur \revert #'direction +slurUp = \override Slur #'direction = #1 +slurDown = \override Slur #'direction = #-1 +slurNeutral = \revert Slur #'direction -phrasingSlurUp = \property Voice.PhrasingSlur \set #'direction = #1 -phrasingSlurDown = \property Voice.PhrasingSlur \set #'direction = #-1 -phrasingSlurBoth = \property Voice.PhrasingSlur \revert #'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 +} +slurDotted = { + \override Slur #'dash-period = #0.75 + \override Slur #'dash-fraction = #0.1 +} +slurSolid = { + \revert Slur #'dash-period + \revert Slur #'dash-fraction +} + + +phrasingSlurUp = \override PhrasingSlur #'direction = #1 +phrasingSlurDown = \override PhrasingSlur #'direction = #-1 +phrasingSlurNeutral = \revert PhrasingSlur #'direction -shiftOn = \property Voice.NoteColumn \set #'horizontal-shift = #1 -shiftOnn = \property Voice.NoteColumn \set #'horizontal-shift = #2 -shiftOnnn = \property Voice.NoteColumn \set #'horizontal-shift = #3 -shiftOff = \property Voice.NoteColumn \revert #'horizontal-shift +shiftOn = \override NoteColumn #'horizontal-shift = #1 +shiftOnn = \override NoteColumn #'horizontal-shift = #2 +shiftOnnn = \override NoteColumn #'horizontal-shift = #3 +shiftOff = \revert NoteColumn #'horizontal-shift -tieUp = \property Voice.Tie \set #'direction = #1 -tieDown = \property Voice.Tie \set #'direction = #-1 -tieBoth = \property Voice.Tie \revert #'direction +tieUp = \override Tie #'direction = #1 +tieDown = \override Tie #'direction = #-1 +tieNeutral = \revert Tie #'direction -dynamicUp = { - \property Voice.DynamicText \set #'direction = #1 - \property Voice.DynamicLineSpanner \set #'direction = #1 +tieDashed = { + \override Tie #'dash-period = #0.75 + \override Tie #'dash-fraction = #0.4 } -dynamicDown = { - \property Voice.DynamicText \set #'direction = #-1 - \property Voice.DynamicLineSpanner \set #'direction = #-1 +tieDotted = { + \override Tie #'dash-period = #0.75 + \override Tie #'dash-fraction = #0.1 } -dynamicBoth = { - \property Voice.DynamicText \revert #'direction - \property Voice.DynamicLineSpanner \revert #'direction +tieSolid = { + \revert Tie #'dash-period + \revert Tie #'dash-fraction } -scriptUp = { - \property Voice.TextScript \set #'direction = #1 - \property Voice.Script \set #'direction = #1 -} -scriptDown = { - \property Voice.TextScript \set #'direction = #-1 - \property Voice.Script \set #'direction = #-1 -} -scriptBoth = { - \property Voice.TextScript \revert #'direction - \property Voice.Script \revert #'direction +setEasyHeads = \sequential { + \override NoteHead #'print-function = #Note_head::brew_ez_stencil + \override NoteHead #'font-size = #-7 + \override NoteHead #'font-family = #'sans + \override NoteHead #'font-series = #'bold } -dotsUp = \property Voice.Dots \set #'direction = #1 -dotsDown = \property Voice.Dots \set #'direction = #-1 -dotsBoth = \property Voice.Dots \revert #'direction +aikenHeads = \set shapeNoteStyles = ##(do re mi fa #f la ti) -% why doubly? -tupletUp = { - \property Voice.TupletBracket \set #'direction = #1 +sacredHarpHeads = + \set shapeNoteStyles = ##(#f #f mi #f fa la #f) + +dynamicUp = { + \override DynamicText #'direction = #1 + \override DynamicLineSpanner #'direction = #1 } -tupletDown = { - \property Voice.TupletBracket \set #'direction = #-1 + +dynamicDown = { + \override DynamicText #'direction = #-1 + \override DynamicLineSpanner #'direction = #-1 } -tupletBoth = { - \property Voice.TupletBracket \revert #'direction + +dynamicNeutral = { + \revert DynamicText #'direction + \revert DynamicLineSpanner #'direction } +dotsUp = \override Dots #'direction = #1 +dotsDown = \override Dots #'direction = #-1 +dotsNeutral = \revert Dots #'direction -cadenzaOn = \property Timing.timing = ##f -cadenzaOff = { - \property Timing.timing = ##t - \property Timing.measurePosition = #(make-moment 0 1) -} +tupletUp = \override TupletBracket #'direction = #1 +tupletDown = \override TupletBracket #'direction = #-1 +tupletNeutral = \revert TupletBracket #'direction -newpage = \notes -{ - \break - % urg, only works for TeX output - \context Score \outputproperty #(make-type-checker 'paper-column-interface) - #'between-system-string = #"\\newpage" +cadenzaOn = \set Timing.timing = ##f +cadenzaOff = { + \set Timing.timing = ##t + \set Timing.measurePosition = #(ly:make-moment 0 1) } -% dynamic dir? text script, articulation script dir? -oneVoice = #(context-spec-music (make-voice-props-revert) "Voice") -voiceOne = #(context-spec-music (make-voice-props-set 0) "Voice") -voiceTwo = #(context-spec-music (make-voice-props-set 1) "Voice") -voiceThree =#(context-spec-music (make-voice-props-set 2) "Voice") -voiceFour = #(context-spec-music (make-voice-props-set 3) "Voice") - -% There's also dash, but setting dash period/length should be fixed. -slurDotted = \property Voice.Slur \set #'dashed = #1 -slurSolid = \property Voice.Slur \revert #'dashed -tieDotted = \property Voice.Tie \set #'dashed = #1 -tieSolid = \property Voice.Tie \revert #'dashed +% dynamic ly:dir? text script, articulation script ly:dir? +oneVoice = #(context-spec-music (make-voice-props-revert) 'Voice) +voiceOne = #(context-spec-music (make-voice-props-set 0) 'Voice) +voiceTwo = #(context-spec-music (make-voice-props-set 1) 'Voice) +voiceThree =#(context-spec-music (make-voice-props-set 2) 'Voice) +voiceFour = #(context-spec-music (make-voice-props-set 3) 'Voice) -tiny = - \property Voice.fontSize= #-2 - -small = - \property Voice.fontSize= #-1 +tiny = +\set fontSize = #-2 +small = +\set fontSize = #-1 normalsize = { - \property Voice.fontSize= #0 + \set fontSize = #0 } -normalkey = { - \property Staff.keyOctaviation = ##f -} -specialkey = { - \property Staff.keyOctaviation = ##t +%% End the incipit and print a ``normal line start''. +endincipit = \context Staff { + \partial 16 s16 % Hack to handle e.g. \bar ".|" \endincipit + \once \override Staff.Clef #'full-size-change = ##t + \once \override Staff.Clef #'non-default = ##t + \bar "" } -% End the incipit and print a ``normal line start''. -endincipit = \notes{ - \partial 16 s16 % Hack to handle e.g. \bar ".|" \endincipit - \context Staff \outputproperty #(make-type-checker 'clef-interface) #'full-size-change = ##t - \context Staff \outputproperty #(make-type-checker 'clef-interface) #'non-default = ##t - \bar "" -} +autoBeamOff = \set autoBeaming = ##f +autoBeamOn = \set autoBeaming = ##t -autoBeamOff = \property Voice.autoBeaming = ##f -autoBeamOn = \property Voice.autoBeaming = ##t +fatText = \override TextScript #'no-spacing-rods = ##f +emptyText = \override TextScript #'no-spacing-rods = ##t -fatText = \property Voice.TextScript \set #'no-spacing-rods = ##f -emptyText = \property Voice.TextScript \set #'no-spacing-rods = ##t +showStaffSwitch = \set followVoice = ##t +hideStaffSwitch = \set followVoice = ##f -showStaffSwitch = \property Voice.followVoice = ##t -hideStaffSwitch = \property Voice.followVoice = ##f -% accidentals as they were common in the 18th century. -defaultAccidentals = { - \property Current.extraNatural = ##t - \property Current.autoAccidentals = #'(Staff (same-octave . 0)) - \property Current.autoCautionaries = #'() -} -% accidentals in voices instead of staves. -% Notice that accidentals from one voice do NOT get cancelled in other voices -voiceAccidentals = { - \property Current.extraNatural = ##t - \property Current.autoAccidentals = #'(Voice (same-octave . 0)) - \property Current.autoCautionaries = #'() - -} +% For drawing vertical chord brackets with \arpeggio +% This is a shorthand for the value of the print-function property +% of either Staff.Arpeggio or PianoStaff.Arpeggio, depending whether +% cross-staff brackets are desired. -% accidentals as suggested by Kurt Stone, Music Notation in the 20th century. -% This includes all the default accidentals, but accidentals also needs cancelling -% in other octaves and in the next measure. -modernAccidentals = { - \property Current.extraNatural = ##f - \property Current.autoAccidentals = #'(Staff (same-octave . 0) (any-octave . 0) (same-octave . 1)) - \property Current.autoCautionaries = #'() -} +arpeggio = #(make-music 'ArpeggioEvent) -% the accidentals that Stone adds to the old standard as cautionaries -modernCautionaries = { - \property Current.extraNatural = ##f - \property Current.autoAccidentals = #'(Staff (same-octave . 0)) - \property Current.autoCautionaries = #'(Staff (any-octave . 0) (same-octave . 1)) +arpeggioUp = \sequential { + \revert Arpeggio #'print-function + \override Arpeggio #'arpeggio-direction = #1 } - -% Multivoice accidentals to be read both by musicians playing one voice -% and musicians playing all voices. -% Accidentals are typeset for each voice, but they ARE cancelled across voices. -modernVoiceAccidentals = { - \property Current.extraNatural = ##f - \property Current.autoAccidentals = #'( - Voice (same-octave . 0) (any-octave . 0) (same-octave . 1) - Staff (same-octave . 0) (any-octave . 0) (same-octave . 1) - ) - \property Current.autoCautionaries = #'() +arpeggioDown = \sequential { + \revert Arpeggio #'print-function + \override Arpeggio #'arpeggio-direction = #-1 } - -% same as modernVoiceAccidental eccept that all special accidentals are typeset -% as cautionaries -modernVoiceCautionaries = { - \property Current.extraNatural = ##f - \property Current.autoAccidentals = #'( - Voice (same-octave . 0) - ) - \property Current.autoCautionaries = #'( - Voice (any-octave . 0) (same-octave . 1) - Staff (same-octave . 0) (any-octave . 0) (same-octave . 1) - ) +arpeggioNeutral = \sequential { + \revert Arpeggio #'print-function + \revert Arpeggio #'arpeggio-direction } - -% stone's suggestions for accidentals on grand staff. -% Accidentals are cancelled across the staves in the same grand staff as well -pianoAccidentals = { - \property Current.autoAccidentals = #'( - Staff (same-octave . 0) (any-octave . 0) (same-octave . 1) - GrandStaff (any-octave . 0) (same-octave . 1) - ) - \property Current.autoCautionaries = #'() +arpeggioBracket = \sequential { + \override Arpeggio #'print-function = #Arpeggio::brew_chord_bracket } -pianoCautionaries = { - \property Current.autoAccidentals = #'( - Staff (same-octave . 0) - ) - \property Current.autoCautionaries = #'( - Staff (any-octave . 0) (same-octave . 1) - GrandStaff (any-octave . 0) (same-octave . 1) - ) +glissando = #(make-music 'GlissandoEvent) + +fermataMarkup = \markup { \musicglyph #"scripts.ufermata" } + +hideNotes =\sequential { + % hide notes, accidentals, etc. + \override Dots #'transparent = ##t + \override NoteHead #'transparent = ##t + \override NoteHead #'no-ledgers = ##t + \override Stem #'transparent = ##t + \override Beam #'transparent = ##t + \override Accidental #'transparent = ##t } -% Do not reset the key at the start of a measure. Accidentals will be -% printed only once and are in effect until overridden, possibly many -% measures later. -noResetKey = { - \property Current.autoAccidentals = #'(Staff (same-octave . #t)) - \property Current.autoCautionaries = #'() +unHideNotes = \sequential { + \revert Accidental #'transparent + \revert Beam #'transparent + \revert Stem #'transparent + \revert NoteHead #'transparent + \revert NoteHead #'no-ledgers + \revert Dots #'transparent } -% do not set localKeySignature when a note alterated differently from -% localKeySignature is found. -% Causes accidentals to be printed at every note instead of -% remembered for the duration of a measure. -% accidentals not being remembered, causing accidentals always to be typeset relative to the time signature -forgetAccidentals = { - \property Current.autoAccidentals = #'(Staff (same-octave . -1)) - \property Current.autoCautionaries = #'() -} +germanChords = { + \set chordRootNamer = #(chord-name->german-markup #t) + \set chordNoteNamer = #note-name->german-markup +} +semiGermanChords = { + \set chordRootNamer = #(chord-name->german-markup #f) + \set chordNoteNamer = #note-name->german-markup +} +frenchChords = { + \set chordRootNamer = #(chord-name->italian-markup #t) + \set chordPrefixSpacer = #0.4 +} + +italianChords = { + \set chordRootNamer = #(chord-name->italian-markup #f) + \set chordPrefixSpacer = #0.4 +} -% To remove a Volta bracket or some other graphical object, -% set it to turnOff. Example: \property Staff.VoltaBracket = \turnOff +improvisationOn = { + \set squashedPosition = #0 + \override NoteHead #'style = #'slash +} -turnOff = #'() +improvisationOff = { + \unset squashedPosition + \revert NoteHead #'style +} -% For drawing vertical chord brackets with \arpeggio -% This is a shorthand for the value of the molecule-callback property -% of either Staff.Arpeggio or PianoStaff.Arpeggio, depending whether -% cross-staff brackets are desired. +textSpannerUp = \override TextSpanner #'direction = #1 +textSpannerDown = \override TextSpanner #'direction = #-1 +textSpannerNeutral = \revert TextSpanner #'direction -arpeggioBracket = #(lambda (grob) (Arpeggio::brew_chord_bracket grob)) -arpeggio = #(make-music-by-name 'ArpeggioEvent) -glissando = #(make-music-by-name 'GlissandoEvent)