OLD | NEW |
1 /* | 1 /* |
2 This file is part of LilyPond, the GNU music typesetter. | 2 This file is part of LilyPond, the GNU music typesetter. |
3 | 3 |
4 Copyright (C) 1997--2020 Han-Wen Nienhuys <hanwen@xs4all.nl> | 4 Copyright (C) 1997--2020 Han-Wen Nienhuys <hanwen@xs4all.nl> |
5 | 5 |
6 LilyPond is free software: you can redistribute it and/or modify | 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 | 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 | 8 the Free Software Foundation, either version 3 of the License, or |
9 (at your option) any later version. | 9 (at your option) any later version. |
10 | 10 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 void | 52 void |
53 Score_engraver::prepare (SCM) | 53 Score_engraver::prepare (SCM) |
54 { | 54 { |
55 precomputed_recurse_over_translators (context (), START_TRANSLATION_TIMESTEP,
DOWN); | 55 precomputed_recurse_over_translators (context (), START_TRANSLATION_TIMESTEP,
DOWN); |
56 } | 56 } |
57 | 57 |
58 void | 58 void |
59 Score_engraver::finish (SCM) | 59 Score_engraver::finish (SCM) |
60 { | 60 { |
61 recurse_over_translators | 61 recurse_over_translators |
62 (context (), | 62 (context (), |
63 Callback0_wrapper::make_smob<Translator, &Translator::finalize> (), | 63 Callback0_wrapper::make_smob<Translator, &Translator::finalize> (), |
64 Callback0_wrapper::make_smob<Translator_group, &Translator_group::finalize>
(), | 64 Callback0_wrapper::make_smob<Translator_group, &Translator_group::finalize> (
), |
65 UP); | 65 UP); |
66 } | 66 } |
67 | 67 |
68 #define MUSIC_FONT "emmentaler-20" | 68 #define MUSIC_FONT "emmentaler-20" |
69 | 69 |
70 /* | 70 /* |
71 use start/finish? | 71 use start/finish? |
72 */ | 72 */ |
73 void | 73 void |
74 Score_engraver::initialize () | 74 Score_engraver::initialize () |
75 { | 75 { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 /* create */ | 198 /* create */ |
199 "System ", | 199 "System ", |
200 | 200 |
201 /* read */ | 201 /* read */ |
202 "currentMusicalColumn " | 202 "currentMusicalColumn " |
203 "currentCommandColumn ", | 203 "currentCommandColumn ", |
204 | 204 |
205 /* write */ | 205 /* write */ |
206 "" | 206 "" |
207 ); | 207 ); |
OLD | NEW |