]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/property.ly
release: 1.3.147
[lilypond.git] / ly / property.ly
index 7aa173d0b4de1fffcd0b37b313e11c2d65850b34..5fa998727dd151daa881e4560c1ef6490d3e21c6 100644 (file)
 % property.ly
-% list of properties that lily recognises
-% and some shorthands (ugh)
 
-%{
+\version "1.3.146"
 
-SEE THE REFERENCE MANUAL FOR EXPLANATIONS.
+stemUp = \property Voice.Stem \set #'direction = #1
+stemDown = \property Voice.Stem \set #'direction = #-1 
+stemBoth= \property Voice.Stem \revert #'direction
 
-%}
+slurUp   = \property Voice.Slur \override #'direction = #1
+slurDown = \property Voice.Slur \override #'direction = #-1
+slurBoth = \property Voice.Slur \revert #'direction 
+shiftOn  = \property Voice.NoteColumn \override #'horizontal-shift = #1
+shiftOnn  = \property Voice.NoteColumn \override #'horizontal-shift = #2
+shiftOnnn  = \property Voice.NoteColumn \override #'horizontal-shift = #3
+shiftOff  = \property Voice.NoteColumn \revert #'horizontal-shift 
 
-\version "1.0.20";
+tieUp = \property Voice.Tie \override #'direction = #1
+tieDown = \property Voice.Tie \override #'direction = #-1
+tieBoth = \property Voice.Tie \revert #'direction 
 
-%hmm, (these) abbrevs suck, imo
-% i guess they're meant as some form of doco
-% that's what i use them for...
-stemup =        \property Voice.verticalDirection = \up 
-stemboth=      \property Voice.verticalDirection = \center
-stemdown =     \property Voice.verticalDirection = \down
-
-slurup = \notes {
-       s1*0
-       \property Voice.slurVerticalDirection = \up 
-       }
-slurboth= \notes {
-       s1*0
-       \property Voice.slurVerticalDirection = \center
+dynamicUp  = {
+  \property Voice.DynamicText \override #'direction = #1
+  \property Voice.DynamicLineSpanner \override #'direction = #1
 }
-slurdown = \notes {    
-       s1*0
-       \property Voice.slurVerticalDirection = \down
+dynamicDown = {
+  \property Voice.DynamicText \override #'direction = #-1
+  \property Voice.DynamicLineSpanner \override #'direction = #-1
 }
-
-shifton =      \property Voice.hshift = 1
-shiftoff =     \property Voice.hshift = 0
-
-onevoice = {   
-       \stemboth \shiftoff     
-}
-
-voiceone = 
-       \context Voice = one  {
-       \stemup
+dynamicBoth = {
+  \property Voice.DynamicText \revert #'direction
+  \property Voice.DynamicLineSpanner \revert #'direction
 }
 
-voicetwo = 
-       \context Voice = two {
-       \stemdown
+scriptUp  = {
+  \property Voice.TextScript \override #'direction = #1
+  \property Voice.Script \override #'direction = #1
 }
-
-voicethree = 
-       \context Voice = three {
-       \stemup
-
+scriptDown = {
+  \property Voice.TextScript \override #'direction = #-1
+  \property Voice.Script \override #'direction = #-1
 }
-
-voicefour = 
-       \context Voice = four {
-       \stemdown
-       \shifton
+scriptBoth = {
+  \property Voice.TextScript \revert #'direction
+  \property Voice.Script \revert #'direction
 }
 
-onestaff = 
-       \translator Staff=one
 
-
-staffone = {   
-       \translator Staff=one
-       \property Staff.verticalDirection = \center
-       \property Staff.hshift = 0
+cadenzaOn = \property Score.timing = ##f
+cadenzaOff = {
+  \property Score.timing = ##t
+  \property Score.measurePosition = #(make-moment 0 1)
 }
 
-stafftwo = {   
-       \translator Staff=two
-       \property Staff.verticalDirection = \center
-       \property Staff.hshift = 0
+% dynamic dir?  text script, articulation script dir?  
+oneVoice = {   
+  \stemBoth
+  \slurBoth
+  \tieBoth
+  \shiftOff
 }
 
-staffthree = {         
-       \translator Staff=three
-       \property Staff.verticalDirection = \center
-       \property Staff.hshift = 0
+voiceOne = {
+  \stemUp
+  \slurUp
+  \tieUp
 }
 
-stafffour = {  
-       \translator Staff=four
-       \property Staff.verticalDirection = \center
-       \property Staff.hshift = 0
+voiceTwo = {
+  \stemDown
+  \slurDown
+  \tieDown
 }
-
-% ugh, cluttering global namespace...
-
-% ugh2. 
-none=0
-free=0
-normal=1
-traditional=2
-infinity=10000
-
-beamslopeproportional = 
-       \property Score.beamslopedamping = \none
-
-beamslopedamped = 
-       \property Score.beamslopedamping = \normal
-
-
-beamslopezero = 
-       \property Score.beamslopedamping = \infinity
-
-
-% this sucks, you'd want to pass an array, at least
-% (or embedded code: you still can't dictate the slope / stemlength)
-beamposfree = 
-       \property Score.beamquantisation = \none
-
-
-beamposnormal = 
-       \property Score.beamquantisation = \normal
-
-
-beampostraditional = 
-       \property Score.beamquantisation = \traditional
-
-
-slurnormal = 
-       \property Voice.slurdash = ""
-
-
-slurdotted = 
-       \property Voice.slurdash = 1
-
-
-%{
- for grace note hack, see input/test/grace.ly
-%}
-tupletoff = {
-       \property Voice.tupletVisibility = 0
-}
-tupleton = {
-       \property Voice.tupletVisibility = 3
-}
-tiny  = {
-       \property Voice.fontSize= "-2"
-       \tupletoff %urg
+   
+voiceThree = {
+  \stemUp
+  \slurUp
+  \tieUp
+  \shiftOn
 }
 
-small  = {
-       \property Voice.fontSize= "-1"
+voiceFour = {
+  \stemDown
+  \slurDown
+  \tieDown
+  \shiftOn
 }
 
-normalsize = {
-       \property Voice.fontSize= "0"
-       \tupleton %urg
-}
+% There's also dash, but setting dash period/length should be fixed.
+slurDotted = \property Voice.Slur \override #'dashed = #1
+slurSolid = \property Voice.Slur \revert #'dashed
+tieDotted = \property Voice.Tie \override #'dashed = #1
+tieSolid = \property Voice.Tie \revert #'dashed
 
-%{
-  [urg: try at] temporary grace note hack
-  the total visible duration of the grace notes must be half
-  the duration of the 'at' note: e.g.:
+       
+tiny  = 
+       \property Voice.fontSize= -2
 
-  \grace b8 \graceat c4 \ecarg
-  \grace c16 b16 \graceat c4 \ecarg
 
-grace = {
-       \tiny
-% it would be so cool not to have to specify these factors each time...
-% :-(
-       \property Voice.tupletVisibility = 0
-       \[1/16
-}
+small  = 
+       \property Voice.fontSize= -1
 
-graceat = \melodic {
-       \normalsize
-       \property Voice.tupletVisibility = 0
-       \] \[31/32
-}
 
-ecarg =  \melodic {
-       \property Voice.tupletVisibility = 0
-       \]
-       \property Voice.tupletVisibility = 3
+normalsize = {
+       \property Voice.fontSize= 0
 }
-%}
 
 normalkey = {
-       \property Staff.keyoctaviation = 1
+       \property Staff.keyOctaviation = ##f
 }
 
 specialkey = {
-       \property Staff.keyoctaviation = 0
+       \property Staff.keyOctaviation = ##t
 }
 
 % End the incipit and print a ``normal line start''.
 endincipit = \notes{
-    \partial 16; s16  % Hack to handle e.g. \bar ".|"; \endincipit
-    \property Staff.clefStyle = "fullSizeChanges" 
-    \nobreak \bar "";
+    \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 = \property Voice.noAutoBeaming = ##t
+autoBeamOn = \property Voice.noAutoBeaming = ##f
+
+emptyText = \property Voice.textNonEmpty = ##f
+fatText = \property Voice.textNonEmpty = ##t
+
+showStaffSwitch = \property PianoStaff.followVoice = ##t
+hideStaffSwitch = \property PianoStaff.followVoice = ##f
+
+
+% To remove a Volta bracet or some other graphical object,
+% set it to turnOff. Example: \property Staff.VoltaBracket = \turnOff
+
+turnOff = #'((meta .  ((interfaces . ()))))