]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tuplet-spanner.hh
release: 1.1.18
[lilypond.git] / lily / include / tuplet-spanner.hh
1 /*
2   plet-spanner.hh -- part of GNU LilyPond
3
4   (c)  1997--1998 Jan Nieuwenhuizen <janneke@gnu.org>
5 */
6
7 #ifndef PLET_SPANNER_HH
8 #define PLET_SPANNER_HH
9 #include "text-def.hh"
10 #include "pointer.hh"
11 #include "directional-spanner.hh"
12
13 /** supportable plet: triplets, eentweetjes, ottava, etc.  */
14
15 class Plet_spanner : public Directional_spanner
16 {
17 public:
18   Plet_spanner ();
19  
20   void add_column (Note_column*);
21   void set_beam (Beam*);
22   P<Text_def>  tdef_p_;
23   bool bracket_visibility_b_;
24   bool num_visibility_b_;
25   
26 protected:
27   Beam *beam_l_;
28   Link_array<Note_column> column_arr_;
29
30   virtual Molecule* do_brew_molecule_p () const;
31   VIRTUAL_COPY_CONS(Score_element);
32
33   virtual void do_add_processing ();
34   virtual void do_post_processing ();
35   virtual void set_default_dir ();
36   virtual void do_substitute_dependency (Score_element*,Score_element*);
37 };
38
39 #endif // PLET_SPANNER_HH
40