]> git.donarmstrong.com Git - lilypond.git/blob - hdr/script.hh
release: 0.0.26
[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     Array<Item *> support;
21
22     /****************/
23     const char * name() const;    
24     void        set_symdir();
25     void        set_default_dir();
26     void        set_default_pos();
27     Symbol symbol()const;
28     Molecule*   brew_molecule_p()const;
29     virtual void do_post_processing();
30     virtual void do_pre_processing();
31     Script(Script_req*, int);
32     void set_support(Item*);
33     void set_stem(Stem*);
34     Interval support_height()const;
35     virtual Interval width() const;    
36 };
37
38
39 #endif // SCRIPT_HH
40