]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
Unify define-builtin-markup-command and define-markup-command
[lilypond.git] / ly / declarations-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 1996--2009 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.12.0"
20
21 %% < 1.8 compatibility switch
22 #(ly:set-option 'old-relative)
23
24 %% named durations
25 breve = #(ly:make-duration -1 0)
26 longa = #(ly:make-duration -2 0)
27 maxima = #(ly:make-duration -3 0)
28
29 \include "music-functions-init.ly"
30 \include "toc-init.ly"
31
32 %% default note names are dutch
33 \include "nederlands.ly"
34
35 \include "drumpitch-init.ly"            
36 \include "chord-modifiers-init.ly"
37 \include "script-init.ly"
38
39 \include "chord-repetition-init.ly"
40
41 % declarations for standard directions
42 left = #-1
43 right = #1
44 up = #1
45 down = #-1
46 start = #-1
47 stop = #1
48 smaller = #-1
49 bigger = #1
50 center = #0
51
52 %% FIXME
53 %% should also set \override Beam #'breakable, but how to do it "portably"? (ie. also
54 %% working with lyric sections)
55 %%
56 %% try \once \override Score.Beam #'breakable = ##t
57
58 %% rather name \newline, \pageBreak ?
59 break = #(make-event-chord (list (make-music 'LineBreakEvent 'break-permission 'force)))
60 noBreak = #(make-event-chord (list (make-music 'LineBreakEvent 'break-permission '())))
61 %% \pageBreak, \noPageBreak, \pageTurn, \noPageTurn, \allowPageTurn are defined
62 %% as music functions
63
64 stopStaff = #(make-event-chord (list (make-span-event 'StaffSpanEvent STOP)))
65 startStaff = #(make-event-chord (list (make-span-event 'StaffSpanEvent START)))
66
67
68 %
69 % Code articulation definitions
70 %
71 noBeam = #(make-music 'BeamForbidEvent) 
72 pipeSymbol = #(make-music 'BarCheck)
73 bracketOpenSymbol = #(make-span-event 'BeamEvent START)
74 bracketCloseSymbol = #(make-span-event 'BeamEvent STOP)
75 tildeSymbol = #(make-music 'TieEvent)
76 parenthesisOpenSymbol =  #(make-span-event 'SlurEvent START)
77 parenthesisCloseSymbol = #(make-span-event 'SlurEvent STOP)
78 escapedExclamationSymbol = #(make-span-event 'CrescendoEvent STOP)
79 escapedParenthesisOpenSymbol = #(make-span-event 'PhrasingSlurEvent START)
80 escapedParenthesisCloseSymbol = #(make-span-event 'PhrasingSlurEvent STOP)
81 escapedBiggerSymbol = #(make-span-event 'DecrescendoEvent START)
82 escapedSmallerSymbol = #(make-span-event 'CrescendoEvent START)
83
84
85 #(define fretboard-table (make-hash-table 100))
86 #(define chord-shape-table (make-hash-table 100))
87
88 \include "scale-definitions-init.ly"
89
90 melisma = #(context-spec-music (make-property-set 'melismaBusy #t) 'Bottom)
91 melismaEnd = #(context-spec-music (make-property-unset 'melismaBusy) 'Bottom)
92
93 laissezVibrer = #(make-music 'LaissezVibrerEvent)
94 repeatTie = #(make-music 'RepeatTieEvent)
95                   
96 \include "grace-init.ly"
97 \include "midi-init.ly"
98 \include "paper-defaults-init.ly"
99
100 \layout {
101     mm = #(ly:output-def-lookup $defaultpaper 'mm)
102     unit = #(ly:output-def-lookup $defaultpaper 'unit)
103
104     in = #(* 25.4 mm)
105     pt = #(/  in 72.27)
106     cm = #(* 10 mm)
107     
108     \include "engraver-init.ly"
109
110     #(set-paper-dimension-variables (current-module))
111 }
112
113 #(set-default-paper-size (ly:get-option 'paper-size))
114
115 partCombineListener = \layout {
116     \context {
117         \Score
118         skipTypesetting = ##t
119         ignoreBarChecks = ##t
120         \alias "Timing"
121     }
122 }
123
124 \include "dynamic-scripts-init.ly"
125 \include "spanners-init.ly"
126 \include "property-init.ly"
127
128 setDefaultDurationToQuarter = { c4 }
129
130 %% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter.
131 #(define musicQuotes (make-hash-table 29))
132
133 #(define toplevel-book-handler print-book-with-defaults)
134 #(define toplevel-bookpart-handler collect-bookpart-for-book)
135 #(define toplevel-music-handler collect-music-for-book)
136 #(define toplevel-score-handler collect-scores-for-book)
137 #(define toplevel-text-handler collect-scores-for-book)
138
139 #(define book-bookpart-handler ly:book-add-bookpart!)
140 #(define book-music-handler collect-book-music-for-book)
141 #(define book-score-handler ly:book-add-score!)
142 #(define book-text-handler ly:book-add-score!)
143
144 #(define bookpart-score-handler ly:book-add-score!)
145 #(define bookpart-text-handler ly:book-add-score!)
146 #(define bookpart-music-handler collect-book-music-for-book)
147
148 \include "predefined-fretboards-init.ly"