X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fengraver.hh;h=e6e5b7fe7665e4ece53207c6f559320c6421d17d;hb=1cf3d59c1559fb9774c4c1c8cae155cfe54a927c;hp=a7507044370ec7cdbe5c33521371d00c61806432;hpb=1a66290a98e7de8d6d41485b5b71a9f7e1fe35c7;p=lilypond.git diff --git a/lily/include/engraver.hh b/lily/include/engraver.hh index a750704437..e6e5b7fe76 100644 --- a/lily/include/engraver.hh +++ b/lily/include/engraver.hh @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1996, 1997 Han-Wen Nienhuys + (c) 1996, 1997--1998 Han-Wen Nienhuys */ @@ -11,145 +11,68 @@ #define ENGRAVER_HH #include "lily-proto.hh" -#include "varray.hh" +#include "array.hh" #include "request.hh" -#include "score-elem-info.hh" +#include "score-element-info.hh" #include "staff-info.hh" - - +#include "translator.hh" /** - a struct which processes requests, and creates the #Score_elem#s. + a struct which processes requests, and creates the #Score_element#s. It may use derived classes. Hungarian postfix: grav */ - -class Engraver { +class Engraver : public virtual Translator { - friend class Engraver_group_engraver; - /** - You cannot copy a Engraver - */ - Engraver (const Engraver&){} - - enum { - VIRGIN, - CREATION_INITED, - MOVE_INITED, - ACCEPTED_REQS, - PROCESSED_REQS, - ACKED_REQS, - MOVE_DONE - } status; + friend class Engraver_group_engraver; protected: - /// utility - virtual Paper_def * paper() const; - + /// utility + Paper_def * paper() const; + /** + Invoke walker method to typeset element. Default: pass on to daddy. + */ + virtual void typeset_element (Score_element*elem_p); - /// make items/spanners with the requests you got - virtual void do_process_requests(){} - - /** typeset any items/spanners. Default: do nothing - */ - virtual void do_pre_move_processing(){} - /** reset any appropriate data. Default: do nothing - */ - virtual void do_post_move_processing(){} + /** + take note of item/spanner + put item in spanner. Adjust local key; etc. + + Default: ignore the info + */ + virtual void acknowledge_element (Score_element_info) {} + + /** Do things with stuff found in acknowledge_element. Ugh. Should + be looped with acknowledge_element. + + */ + virtual void process_acknowledged () {} + /** + Announce element. Default: pass on to daddy. Utility + */ + virtual void announce_element (Score_element_info); + /** + Get information on the staff. Default: ask daddy. + */ + virtual Staff_info get_staff_info() const; + virtual void fill_staff_info (Staff_info&); - virtual void do_creation_processing() {} - virtual void do_removal_processing() {} - - /** - Invoke walker method to typeset element. Default: pass on to daddy. - */ - virtual void typeset_element (Score_elem*elem_p); - - /** - take note of item/spanner - put item in spanner. Adjust local key; etc. - - Default: ignore the info - */ - virtual void acknowledge_element (Score_elem_info) {} - /** - Announce element. Default: pass on to daddy. Utility - */ - virtual void announce_element (Score_elem_info); - /** - Set Feature of the engraver (s). Default: ignore Feature. - */ - virtual void set_feature (Feature){} - /** - ask daddy for a feature - */ - virtual Scalar get_feature (String type_str); - /** - Does this equal or contain a certain engraver? - */ - - virtual void sync_features() {} - - virtual bool contains_b (Engraver*grav_l)const; - /** - Get information on the staff. Default: ask daddy. - */ - virtual Staff_info get_staff_info()const; - virtual void fill_staff_info (Staff_info&); - - - virtual void do_print()const; - /* - @see{try_request} - Default: always return false - */ - virtual bool do_try_request (Request *req_l); public: - void pre_move_processing(); - void process_requests(); - /** - try to fit the request in this engraver - - @return - false: not noted, not taken. - - true: request swallowed. Don't try to put the request elsewhere. - - */ - bool try_request (Request*); - bool is_bottom_engraver() const; - - void post_move_processing(); - void removal_processing(); - - Engraver_group_engraver * daddy_grav_l_; - - Engraver(); - virtual ~Engraver(){} - DECLARE_MY_RUNTIME_TYPEINFO; - void print() const; + TRANSLATOR_CLONE(Engraver); + Engraver_group_engraver * daddy_grav_l() const; + /** + override other ctor + */ + Engraver () {} + + DECLARE_MY_RUNTIME_TYPEINFO; + virtual Engraver * engraver_l () { return this; } }; -/** - A macro to automate administration of engravers. - */ -#define ADD_THIS_ENGRAVER(c) \ -struct c ## init { \ - static Engraver * globalctor(){ \ - return new c; \ - } \ - c ## init() { \ - add_engraver (c::static_name(), globalctor); \ - \ - } \ -} _ ## c ## init; - -typedef Engraver*(*Grav_ctor)(void); -void add_engraver (String s, Grav_ctor f); #endif // ENGRAVER_HH