]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
Issue 2924: Doc: \startMeasureCount and \stopMeasureCount needs documenting
[lilypond.git] / ly / declarations-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 %%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
5 %%%%
6 %%%% LilyPond is free software: you can redistribute it and/or modify
7 %%%% it under the terms of the GNU General Public License as published by
8 %%%% the Free Software Foundation, either version 3 of the License, or
9 %%%% (at your option) any later version.
10 %%%%
11 %%%% LilyPond is distributed in the hope that it will be useful,
12 %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
13 %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 %%%% GNU General Public License for more details.
15 %%%%
16 %%%% You should have received a copy of the GNU General Public License
17 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 \version "2.17.6"
20
21 %% named durations
22 breve = #(ly:make-duration -1 0)
23 longa = #(ly:make-duration -2 0)
24 maxima = #(ly:make-duration -3 0)
25
26 \include "music-functions-init.ly"
27 \include "toc-init.ly"
28
29 %% default note names are dutch
30 #(set! default-language "nederlands")
31 #(note-names-language parser default-language)
32
33 \include "drumpitch-init.ly"
34 \include "chord-modifiers-init.ly"
35 \include "script-init.ly"
36
37 \include "chord-repetition-init.ly"
38
39 #(define default-fret-table (make-hash-table 101))
40 #(define chord-shape-table (make-hash-table 29))
41
42 % declarations for standard directions
43 left = #-1
44 right = #1
45 up = #1
46 down = #-1
47 start = #-1
48 stop = #1
49 smaller = #-1
50 bigger = #1
51 center = #0
52
53 %% FIXME
54 %% should also set \override Beam.breakable, but how to do it "portably"? (ie. also
55 %% working with lyric sections)
56 %%
57 %% try \once \override Score.Beam.breakable = ##t
58
59 %% rather name \newline, \pageBreak ?
60 break = #(make-music 'LineBreakEvent 'break-permission 'force)
61 noBreak = #(make-music 'LineBreakEvent 'break-permission '())
62 %% \pageBreak, \noPageBreak, \pageTurn, \noPageTurn, \allowPageTurn are defined
63 %% as music functions
64
65 stopStaff = #(make-span-event 'StaffSpanEvent STOP)
66 startStaff = #(make-span-event 'StaffSpanEvent START)
67
68
69 %
70 % Code articulation definitions
71 %
72 noBeam = #(make-music 'BeamForbidEvent)
73 pipeSymbol = #(make-music 'BarCheck)
74 bracketOpenSymbol = #(make-span-event 'BeamEvent START)
75 bracketCloseSymbol = #(make-span-event 'BeamEvent STOP)
76 tildeSymbol = #(make-music 'TieEvent)
77 parenthesisOpenSymbol =  #(make-span-event 'SlurEvent START)
78 parenthesisCloseSymbol = #(make-span-event 'SlurEvent STOP)
79 escapedExclamationSymbol = #(make-span-event 'CrescendoEvent STOP)
80 escapedParenthesisOpenSymbol = #(make-span-event 'PhrasingSlurEvent START)
81 escapedParenthesisCloseSymbol = #(make-span-event 'PhrasingSlurEvent STOP)
82 escapedBiggerSymbol = #(make-span-event 'DecrescendoEvent START)
83 escapedSmallerSymbol = #(make-span-event 'CrescendoEvent START)
84
85
86 \include "scale-definitions-init.ly"
87
88 melisma = #(context-spec-music (make-property-set 'melismaBusy #t) 'Bottom)
89 melismaEnd = #(context-spec-music (make-property-unset 'melismaBusy) 'Bottom)
90
91 laissezVibrer = #(make-music 'LaissezVibrerEvent)
92 repeatTie = #(make-music 'RepeatTieEvent)
93
94 \include "dynamic-scripts-init.ly"
95 \include "spanners-init.ly"
96
97 %% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter.
98 #(define musicQuotes (make-hash-table 29))
99
100 #(define toplevel-book-handler print-book-with-defaults)
101 #(define toplevel-bookpart-handler collect-bookpart-for-book)
102 #(define toplevel-music-handler collect-music-for-book)
103 #(define toplevel-score-handler collect-scores-for-book)
104 #(define toplevel-text-handler collect-scores-for-book)
105
106 #(define book-bookpart-handler ly:book-add-bookpart!)
107 #(define book-music-handler collect-book-music-for-book)
108 #(define book-score-handler ly:book-add-score!)
109 #(define book-text-handler ly:book-add-score!)
110
111 #(define bookpart-score-handler ly:book-add-score!)
112 #(define bookpart-text-handler ly:book-add-score!)
113 #(define bookpart-music-handler collect-book-music-for-book)
114 #(define output-def-music-handler context-defs-from-music)
115 #(define context-mod-music-handler context-mod-from-music)
116
117 \include "predefined-fretboards-init.ly"
118 \include "string-tunings-init.ly"
119 \include "property-init.ly"
120
121 \include "grace-init.ly"
122 \include "midi-init.ly"
123 \include "paper-defaults-init.ly"
124 \include "context-mods-init.ly"
125
126 \layout {
127   mm = #(ly:output-def-lookup $defaultpaper 'mm)
128   unit = #(ly:output-def-lookup $defaultpaper 'unit)
129
130   in = #(* 25.4 mm)
131   pt = #(/ in 72.27)
132   cm = #(* 10 mm)
133
134   \include "engraver-init.ly"
135
136   #(set-paper-dimension-variables (current-module))
137 }
138
139 #(set-default-paper-size (ly:get-option 'paper-size))
140 partCombineListener = \layout {
141   \context {
142     \Score
143     skipTypesetting = ##t
144     ignoreBarChecks = ##t
145     \alias "Timing"
146   }
147 }
148
149 setDefaultDurationToQuarter = { c4 }