]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/engraver-group.hh
be0757acd2a7d74cdd5f1226916d78a7d21aeb71
[lilypond.git] / lily / include / engraver-group.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
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
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef ENGRAVER_GROUP_HH
21 #define ENGRAVER_GROUP_HH
22
23 #include "engraver.hh"
24 #include "translator-group.hh"
25
26 class Engraver_group : public Translator_group
27 {
28 protected:
29   vector<Grob_info> announce_infos_;
30   Drul_array<SCM> acknowledge_hash_table_drul_;
31   DECLARE_LISTENER (override);
32   DECLARE_LISTENER (revert);
33 public:
34   DECLARE_CLASSNAME (Engraver_group);
35   Engraver_group ();
36   virtual void derived_mark () const;
37   void do_announces ();
38   virtual void connect_to_context (Context *c);
39   virtual void disconnect_from_context ();
40   virtual void announce_grob (Grob_info);
41   int pending_grob_count () const;
42 private:
43   virtual void acknowledge_grobs ();
44 };
45
46 typedef void (Engraver:: *Engraver_method) (void);
47
48 void engraver_each (SCM list, Engraver_method method);
49
50 #endif /* ENGRAVERGROUP_HH */
51