X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrob-info.cc;h=bd8279e5f7d7b67c692d7c45dff78b357246478b;hb=2629d27674cdc52137a4fb0ce62200cfb7ce7e91;hp=f4042ec2968f6705661258deb0ed63826b0ce54d;hpb=e37010af17faa8b185de836664b6544bd29dc1d0;p=lilypond.git diff --git a/lily/grob-info.cc b/lily/grob-info.cc index f4042ec296..bd8279e5f7 100644 --- a/lily/grob-info.cc +++ b/lily/grob-info.cc @@ -3,14 +3,22 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2004 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ -#include "grob.hh" #include "grob-info.hh" +#include "grob.hh" #include "music.hh" #include "translator-group.hh" #include "context.hh" +#include "spanner.hh" +#include "item.hh" + +Grob_info::Grob_info (Translator *t, Grob *g) +{ + origin_trans_ = t; + grob_ = g; +} Grob_info::Grob_info () { @@ -18,23 +26,55 @@ Grob_info::Grob_info () origin_trans_ = 0; } -Music* -Grob_info::music_cause () +Music * +Grob_info::music_cause () const { - SCM cause = grob_->get_grob_property ("cause"); + SCM cause = grob_->get_property ("cause"); return unsmob_music (cause); } -Link_array -Grob_info::origin_contexts (Translator* end) const +vector +Grob_info::origin_contexts (Translator *end) const { - Context * t = origin_trans_->daddy_context_; - Link_array r; - do { - r.push (t); - t = t->daddy_context_; - } while (t && t != end->daddy_context_); - + Context *t = origin_trans_->context (); + vector r; + do + { + r.push_back (t); + t = t->get_parent_context (); + } + while (t && t != end->context ()); + return r; } - + +Context * +Grob_info::context () const +{ + return origin_trans_->context (); +} + +Spanner * +Grob_info::spanner () const +{ + return dynamic_cast (grob_); +} + +Item * +Grob_info::item () const +{ + return dynamic_cast (grob_); +} + +Music * +Grob_info::ultimate_music_cause () const +{ + SCM cause = grob_->self_scm (); + while (unsmob_grob (cause)) + { + cause = unsmob_grob (cause)->get_property ("cause"); + } + + return unsmob_music (cause); +} +