]> git.donarmstrong.com Git - lilypond.git/blob - hdr/textitem.hh
release: 0.0.30
[lilypond.git] / hdr / textitem.hh
1 /*
2   text.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef TEXT_ITEM_HH
8 #define TEXT_ITEM_HH
9
10 #include "textdef.hh"
11 #include "item.hh"
12   
13 struct Text_item : Item {
14     int pos_i_;
15     int staffsize_i_;
16     int dir_i_;
17     Text_def* tdef_l_;
18     
19     /* ***************/
20     const char * name() const;    
21     virtual void set_default_pos();
22     Molecule* brew_molecule_p() const;
23     void do_pre_processing();
24     
25     Text_item(Text_req*,int);
26 };
27
28
29 #endif // TEXT_HH
30