]> git.donarmstrong.com Git - lilypond.git/blob - hdr/script.hh
release: 0.0.23
[lilypond.git] / hdr / script.hh
1 /*
2   script.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef SCRIPT_HH
8 #define SCRIPT_HH
9
10 #include "scriptdef.hh"
11 #include "item.hh"
12   
13 struct Script : Item{
14     int dir;
15     int symdir;
16     int pos;
17     int staffsize;
18     Script_def*specs_l_;
19     Stem * stem_l_;
20     Item * support;
21
22     /****************/
23     
24     void        set_symdir();
25     void        set_default_dir();
26     void        set_default_pos();
27     Symbol symbol()const;
28     Molecule*   brew_molecule()const;
29     virtual void do_post_processing();
30     virtual void do_pre_processing();
31     Script(Script_req*, Item*,int,Stem*p=0);
32     virtual Interval width() const;    
33 };
34
35
36 #endif // SCRIPT_HH
37