X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fengraver.hh;h=cecc42ce5e8010a4b6550afb95221a5b387c33ad;hb=8659a99f233f5c4684292728e7ad4206669b35b0;hp=e5b6aef6a084d7059ea8c77c9b56b68b034cfe99;hpb=62f221b6b3861ff055dc0384ec3c48cc665688cd;p=lilypond.git diff --git a/lily/include/engraver.hh b/lily/include/engraver.hh index e5b6aef6a0..cecc42ce5e 100644 --- a/lily/include/engraver.hh +++ b/lily/include/engraver.hh @@ -1,14 +1,27 @@ /* - engraver.hh -- declare Engraver + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1996--2015 Han-Wen Nienhuys - (c) 1996--2008 Han-Wen Nienhuys + 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 . */ #ifndef ENGRAVER_HH #define ENGRAVER_HH +#include "callback.hh" +#include "grob.hh" #include "grob-info.hh" #include "translator.hh" @@ -18,9 +31,9 @@ */ class Engraver : public Translator { - Grob *internal_make_grob (SCM sym, SCM cause, char const *name, - char const *f, int l, char const *fun); - + Grob *internal_make_grob (SCM sym, SCM cause, + char const *f, int l, char const *fun); + friend SCM ly_engraver_make_grob (SCM, SCM, SCM); friend class Engraver_group; protected: /* @@ -30,33 +43,50 @@ protected: Default: ignore the info */ virtual void acknowledge_grob (Grob_info) {} - virtual void announce_grob (Grob_info); - virtual void announce_end_grob (Grob_info); + virtual void announce_grob (Grob_info, Context *reroute_context = 0); + virtual void announce_end_grob (Grob_info, Context *reroute_context = 0); Engraver_group *get_daddy_engraver () const; public: + using Translator::trampoline; + template + static SCM trampoline (SCM target, SCM grob, SCM source_engraver) + { + T *t = LY_ASSERT_SMOB (T, target, 1); + Grob *g = LY_ASSERT_SMOB (Grob, grob, 2); + Engraver *e = LY_ASSERT_SMOB (Engraver, source_engraver, 3); + + (t->*callback) (Grob_info (e, g)); + return SCM_UNSPECIFIED; + } + /** Announce element. Default: pass on to daddy. Utility */ void announce_grob (Grob *, SCM cause); void announce_end_grob (Grob *, SCM cause); - Item *internal_make_item (SCM sym, SCM cause, char const *name, - char const *f, int l, char const *fun); - Spanner *internal_make_spanner (SCM sym, SCM cause, char const *name, - char const *f, int l, char const *fun); - Paper_column *internal_make_column (SCM sym, char const *name, - char const *f, int l, char const *fun); + Grob_info make_grob_info (Grob *, SCM cause); + + Item *internal_make_item (SCM sym, SCM cause, + char const *f, int l, char const *fun); + Spanner *internal_make_spanner (SCM sym, SCM cause, + char const *f, int l, char const *fun); + Paper_column *internal_make_column (SCM sym, + char const *f, int l, char const *fun); /** override other ctor */ - TRANSLATOR_DECLARATIONS (Engraver); + DECLARE_CLASSNAME (Engraver); + DECLARE_TRANSLATOR_CALLBACKS (Engraver); + Engraver (Context *); }; -#define make_item(x, cause) internal_make_item (ly_symbol2scm (x), cause, x, __FILE__, __LINE__, __FUNCTION__) -#define make_spanner(x, cause) internal_make_spanner (ly_symbol2scm (x), cause, x, __FILE__, __LINE__, __FUNCTION__) -#define make_paper_column(x) internal_make_column (ly_symbol2scm (x), x, __FILE__, __LINE__, __FUNCTION__) +#define make_item(x, cause) internal_make_item (ly_symbol2scm (x), cause, __FILE__, __LINE__, __FUNCTION__) +#define make_spanner(x, cause) internal_make_spanner (ly_symbol2scm (x), cause, __FILE__, __LINE__, __FUNCTION__) +#define make_paper_column(x) internal_make_column (ly_symbol2scm (x), __FILE__, __LINE__, __FUNCTION__) +bool ly_is_grob_cause (SCM obj); #endif // ENGRAVER_HH