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) 2005--2020 Han-Wen Nienhuys <hanwen@xs4all.nl> | 4 Copyright (C) 2005--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 16 matching lines...) Expand all Loading... |
27 #include "note-spacing.hh" | 27 #include "note-spacing.hh" |
28 #include "paper-column.hh" | 28 #include "paper-column.hh" |
29 #include "pointer-group-interface.hh" | 29 #include "pointer-group-interface.hh" |
30 #include "separation-item.hh" | 30 #include "separation-item.hh" |
31 #include "staff-spacing.hh" | 31 #include "staff-spacing.hh" |
32 #include "system.hh" | 32 #include "system.hh" |
33 #include "warn.hh" | 33 #include "warn.hh" |
34 | 34 |
35 #include "translator.icc" | 35 #include "translator.icc" |
36 | 36 |
| 37 using std::string; |
| 38 |
37 Paper_column_engraver::Paper_column_engraver (Context *c) | 39 Paper_column_engraver::Paper_column_engraver (Context *c) |
38 : Engraver (c) | 40 : Engraver (c) |
39 { | 41 { |
40 last_moment_.main_part_ = Rational (-1, 1); | 42 last_moment_.main_part_ = Rational (-1, 1); |
41 command_column_ = 0; | 43 command_column_ = 0; |
42 musical_column_ = 0; | 44 musical_column_ = 0; |
43 breaks_ = 0; | 45 breaks_ = 0; |
44 system_ = 0; | 46 system_ = 0; |
45 first_ = true; | 47 first_ = true; |
46 made_columns_ = false; | 48 made_columns_ = false; |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 "NonMusicalPaperColumn ", | 331 "NonMusicalPaperColumn ", |
330 | 332 |
331 /* read */ | 333 /* read */ |
332 "forbidBreak ", | 334 "forbidBreak ", |
333 | 335 |
334 /* write */ | 336 /* write */ |
335 "forbidBreak " | 337 "forbidBreak " |
336 "currentCommandColumn " | 338 "currentCommandColumn " |
337 "currentMusicalColumn " | 339 "currentMusicalColumn " |
338 ); | 340 ); |
OLD | NEW |