X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspacing-interface.cc;h=f9d3287cb0cf45f1b20846332a7adb59be29e02f;hb=e5cc39a9a82b3c05156553173a8513db4152b1f9;hp=c5a7e000c1cc6199af743260142262b92ff0ad1e;hpb=62f221b6b3861ff055dc0384ec3c48cc665688cd;p=lilypond.git diff --git a/lily/spacing-interface.cc b/lily/spacing-interface.cc index c5a7e000c1..f9d3287cb0 100644 --- a/lily/spacing-interface.cc +++ b/lily/spacing-interface.cc @@ -1,10 +1,20 @@ /* - spacing-interface.cc -- functionality that is shared between Note_spacing - and Staff_spacing + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2007--2011 Joe Neeman - (c) 2007--2008 Joe Neeman + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "spacing-interface.hh" @@ -92,20 +102,7 @@ Spacing_interface::minimum_distance (Grob *me, Grob *right) } /* - Compute the column of the right-items. This is a big function, - since RIGHT-ITEMS may span more columns (eg. if a clef is inserted, - this will add a new column to RIGHT-ITEMS. Here we look at the - columns, and return the left-most. If there are multiple columns, we - prune RIGHT-ITEMS. - - If we end up pruning, we add a left-neighbor to every column that - gets pruned. This ensures that loose columns in cross-staff music - do indeed get marked as loose. The problem situation is when a voice - passes from staff 1 to staff 2 and a clef appears later on in staff 1. - Then the NoteSpacing attached to the last note in staff 1 has two - right-items: one pointing to the next note in staff 2 and one pointing - to the clef. We will prune the clef right-item here and, unless we add - a left-neighbor to the clef, it won't get marked as loose. + Compute the left-most column of the right-items. */ Item * Spacing_interface::right_column (Grob *me) @@ -116,7 +113,6 @@ Spacing_interface::right_column (Grob *me) Grob_array *a = unsmob_grob_array (me->get_object ("right-items")); Item *mincol = 0; int min_rank = INT_MAX; - bool prune = false; for (vsize i = 0; a && i < a->size (); i++) { Item *ri = a->item (i); @@ -127,31 +123,8 @@ Spacing_interface::right_column (Grob *me) if (rank < min_rank) { min_rank = rank; - if (mincol) - prune = true; - mincol = col; } - else if (rank > min_rank) - prune = true; - } - - if (prune && a) - { - vector &right = a->array_reference (); - for (vsize i = right.size (); i--;) - { - if (dynamic_cast (right[i])->get_column () != mincol) - { - extract_grob_set (right[i], "left-neighbors", lns); - if (lns.empty ()) - Pointer_group_interface::add_grob (right[i], - ly_symbol2scm ("left-neighbors"), - dynamic_cast (me)->get_column ()); - - right.erase (right.begin () + i); - } - } } return mincol;