]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/script.hh
release: 1.3.55
[lilypond.git] / lily / include / script.hh
1 /*   
2   script.hh -- declare Script
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef SCRIPT_HH
11 #define SCRIPT_HH
12
13 #include "item.hh"
14 #include "drul-array.hh"
15
16 /**
17    Articulation marks (and the like) that are attached to notes/stems.
18    Needs support from Staff_side for proper operation.  Staff_side
19    handles the positioning.
20 */
21 class Script : public Item
22 {
23   Molecule get_molecule (Direction d) const;
24 public:
25   Script (SCM);
26   
27 protected:
28   virtual void before_line_breaking ();
29   virtual void after_line_breaking ();
30   Molecule do_brew_molecule () const;
31 };
32
33 #endif /* Stem_SCRIPT_HH */
34