* lily/accidental-engraver.cc (process_acknowledged_grobs):
[lilypond.git] / ly / performer-init.ly
blob9f0d421bd3aa6d202c37ce902719da6ef0970bf4
1 \version "2.3.2"
4 % setup for Request->Element conversion. Guru-only
6 \context {
7 \type "Staff_performer"
8 \name Staff
9 \accepts Voice
11 \consists "Key_performer"
12 \consists "Tempo_performer"
13 \consists "Time_signature_performer"
15 \context {
16 \name Global
17 \accepts Score
18 \description "Hard coded entry point for LilyPond. Cannot be tuned."
20 \context {
21 \Staff
22 \name DrumStaff
23 midiInstrument = #"drums"
24 \accepts DrumVoice
27 \context {
28 \type "Performer_group_performer"
29 \name Voice
30 \consists "Dynamic_performer"
31 \consists "Span_dynamic_performer"
32 \consists "Tie_performer"
33 \consists "Piano_pedal_performer"
34 \consists "Note_performer"
35 \consists "Beam_performer"
36 \consists "Slur_performer"
37 \consists "Melisma_translator"
41 \context {
42 \Voice
43 \remove "Note_performer"
44 \consists "Drum_note_performer"
45 \name DrumVoice
48 \context {
49 \type "Performer_group_performer"
50 \name FiguredBass
51 \consists "Swallow_performer"
54 \context {
55 \type "Performer_group_performer"
56 \name GrandStaff
57 \accepts RhythmicStaff
58 \accepts Staff
61 \context {
62 \type "Performer_group_performer"
63 \name "PianoStaff"
64 \accepts Staff
65 \accepts DrumStaff
68 \context {
69 \type "Performer_group_performer"
70 \name "TabVoice"
71 \consists "Swallow_performer"
74 \context {
75 \type "Performer_group_performer"
76 \name "Devnull"
77 \consists "Swallow_performer"
79 \context {
80 \type "Performer_group_performer"
81 \name "TabStaff"
82 \accepts "TabVoice"
85 \context {
86 \type "Score_performer"
88 \name Score
90 melismaBusyProperties = #default-melisma-properties
91 instrument = #"bright acoustic"
92 \accepts Staff
93 \accepts DrumStaff
94 \accepts GrandStaff
95 \accepts PianoStaff
96 \accepts TabStaff
97 \accepts Staff
98 \accepts StaffGroup
99 \accepts Devnull
100 \accepts ChoirStaff
101 \accepts RhythmicStaff
102 \accepts ChordNames
103 \accepts FiguredBass
104 \accepts Lyrics
106 \consists "Timing_translator"
107 \consists "Swallow_performer"
109 dynamicAbsoluteVolumeFunction = #default-dynamic-absolute-volume
110 instrumentEqualizer = #default-instrument-equalizer
111 drumPitchTable = #(alist->hash-table midiDrumPitches)
115 \context {
116 \type "Staff_performer" % Performer_group_performer ?
117 \consists "Lyric_performer"
118 \name Lyrics
119 \consists "Time_signature_performer"
120 \consists "Tempo_performer"
123 \context{
124 \type "Performer_group_performer"
125 \name ChoirStaff
126 \accepts Staff
127 \accepts DrumStaff
131 \context {
132 \type "Staff_performer"
133 \accepts ChordNameVoice
134 \name ChordNames
137 \context {
138 \type "Performer_group_performer"
139 \consists "Note_performer"
140 \name ChordNameVoice
143 \context {
144 \type "Performer_group_performer"
146 \name StaffGroup
147 \accepts Staff
148 \accepts DrumStaff
151 \context { \Staff \name RhythmicStaff }