]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/property.ly
release: 1.3.93
[lilypond.git] / ly / property.ly
index ea41ac9656b675a4665b2016e1986073985daca6..3c255916de52bab875babfb4dff7bdeadf54bc32 100644 (file)
 % property.ly
-% list of properties that lily recognises
-% and some shorthands (ugh)
 
-%{
+\version "1.3.59";
 
-SEE THE REFERENCE MANUAL FOR EXPLANATIONS.
+stemup = \property Voice.basicStemProperties \push #'direction = #1
+stemdown = \property Voice.basicStemProperties \push #'direction = #-1 
+stemboth= \property basicStemProperties \pop #'direction
 
-%}
+slurup   = \property Voice.basicSlurProperties \push #'direction = #1
+slurboth = \property basicSlurProperties \pop #'direction 
+slurdown = \property Voice.basicSlurProperties \push #'direction = #-1
+shifton  = \property Voice.basicNoteColumnProperties \push #'horizontal-shift = #1
+shiftonn  = \property Voice.basicNoteColumnProperties \push #'horizontal-shift = #2
+shiftonnn  = \property Voice.basicNoteColumnProperties \push #'horizontal-shift = #3
+shiftoff  = \property basicNoteColumnProperties \pop #'horizontal-shift 
 
-\version "1.2.0";
 
-%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
+tieUp = \property Voice.basicTieProperties \push #'direction = #1
+tieDown = \property Voice.basicTieProperties \push #'direction = #-1
+tieBoth = \property basicTieProperties \pop #'direction 
 
-slurup = \notes {
-       s1*0
-       \property Voice.slurVerticalDirection = \up 
+cadenzaOn = \property Score.timing = ##f
+cadenzaOff = { \property Score.timing = ##t
+       \property Score.measurePosition = #(make-moment 0 1)
        }
-slurboth= \notes {
-       s1*0
-       \property Voice.slurVerticalDirection = \center
-}
-slurdown = \notes {    
-       s1*0
-       \property Voice.slurVerticalDirection = \down
-}
-
-shifton = \property Voice.horizontalNoteShift = 1
-shiftoff = \property Voice.horizontalNoteShift = 0
 
+       
 onevoice = {   
-       \stemboth \shiftoff     
+       \stemboth
+       \tieBoth
 }
 
-%{ THESE ARE DEPRECATED  %}
-voiceone = 
-       \context Voice = one  {
-       \stemup
-}
-
-voicetwo = 
-       \context Voice = two {
-       \stemdown
+voiceone = { \stemup
+   \tieUp
 }
-
-voicethree = 
-       \context Voice = three {
+voicetwo = { \stemdown
+   \tieDown
+   }
+   
+voicethree = {
        \stemup
-
+       \shifton
 }
 
-voicefour = 
-       \context Voice = four {
+voicefour = {
        \stemdown
        \shifton
 }
 
-%{ END OF DEPRECATED %}
-
-
 % ugh, cluttering global namespace...
 
 % ugh2. 
 infinity=10000
-
-beamslopeproportional = 
-       \property Score.beamslopedamping = 0
-
-beamslopedamped = 
-       \property Score.beamslopedamping = 1
-
-
-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 = 0
-
-
-beamposnormal = 
-       \property Score.beamquantisation = 1
-
-
-beampostraditional = 
-       \property Score.beamquantisation = 2
-
+%{
 
 slurnormal = 
-       \property Voice.slurDash = ""
+       \property Voice.slurDash = ##f
 
 
-slurdotted = 
+slurdotted =                           
        \property Voice.slurDash = 1
 
 
-tupletoff = {
+tupletoff =
        \property Voice.tupletVisibility = 0
-}
-tupleton = {
+
+tupleton = 
        \property Voice.tupletVisibility = 3
-}
-tiny  = {
-       \property Voice.fontSize= "-2"
-}
+%}
+
+       
+tiny  = 
+       \property Voice.fontSize= -2
+
+
+small  = 
+       \property Voice.fontSize= -1
 
-small  = {
-       \property Voice.fontSize= "-1"
-}
 
 normalsize = {
-       \property Voice.fontSize= "0"
+       \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 "";
+    \property Staff.clefStyle = #"fullSizeChanges" 
+    \bar "";
 }
 
-autoBeamOff = \property Voice.noAutoBeaming = "1"
-autoBeamOn = \property Voice.noAutoBeaming = ""
+autoBeamOff = \property Voice.noAutoBeaming = ##t
+autoBeamOn = \property Voice.noAutoBeaming = ##f
+
 
+emptyText = \property Voice.textNonEmpty = ##f
+fatText = \property Voice.textNonEmpty = ##t
 
-emptyText = \property Voice.textEmptyDimension = "1"
-fatText = \property Voice.textEmptyDimension = ""