]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/abbreviation-beam-engraver.hh
release: 1.0.1
[lilypond.git] / lily / include / abbreviation-beam-engraver.hh
1 /*
2   abbreviation-beam-engraver.hh -- declare Abbreviation_beam_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7            Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10
11 #ifndef ABBREVIATION_BEAM_ENGRAVER_HH
12 #define ABBREVIATION_BEAM_ENGRAVER_HH
13
14 #include "engraver.hh"
15 #include "drul-array.hh"
16
17 /**
18   Generate an abbreviation beam.  Eat stems.
19  */
20 class Abbreviation_beam_engraver : public Engraver
21 {
22 public:
23   TRANSLATOR_CLONE(Abbreviation_beam_engraver);
24   DECLARE_MY_RUNTIME_TYPEINFO;
25
26   Abbreviation_beam_engraver();
27
28 protected:
29   virtual void do_removal_processing();
30   virtual void do_process_requests();
31   virtual bool do_try_request (Request*);
32   virtual void acknowledge_element (Score_element_info);
33   virtual void do_pre_move_processing();
34
35 private:
36   Drul_array<Abbreviation_beam_req *> span_reqs_drul_;
37   Abbreviation_beam* abeam_p_;
38 };
39
40 #endif // ABBREVIATION_BEAM_ENGRAVER_HH