LEFT | RIGHT |
(no file at all) | |
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) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl> | 4 Copyright (C) 1996--2012 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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 | 515 |
516 ADD_INTERFACE (Spanner, | 516 ADD_INTERFACE (Spanner, |
517 "Some objects are horizontally spanned between objects. For" | 517 "Some objects are horizontally spanned between objects. For" |
518 " example, slurs, beams, ties, etc. These grobs form a subtype" | 518 " example, slurs, beams, ties, etc. These grobs form a subtype" |
519 " called @code{Spanner}. All spanners have two span points" | 519 " called @code{Spanner}. All spanners have two span points" |
520 " (these must be @code{Item} objects), one on the left and one" | 520 " (these must be @code{Item} objects), one on the left and one" |
521 " on the right. The left bound is also the X@tie{}reference" | 521 " on the right. The left bound is also the X@tie{}reference" |
522 " point of the spanner.", | 522 " point of the spanner.", |
523 | 523 |
524 /* properties */ | 524 /* properties */ |
| 525 "other-half " |
525 "normalized-endpoints " | 526 "normalized-endpoints " |
526 "minimum-length " | 527 "minimum-length " |
527 "spanner-broken " | 528 "spanner-broken " |
528 "spanner-id " | 529 "spanner-id " |
529 "to-barline " | 530 "to-barline " |
530 ); | 531 ); |
LEFT | RIGHT |