]> git.donarmstrong.com Git - lilypond.git/blob - hdr/textitem.hh
release: 0.0.26
[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     const char * name() const;
15     int pos_i_;
16     int staffsize_i_;
17     int dir_i_;
18     Text_def* tdef_l_;
19     
20     /****************/
21     
22     virtual void set_default_pos();
23     Molecule* brew_molecule_p() const;
24     void do_pre_processing();
25     
26     Text_item(Text_req*,int);
27 };
28
29
30 #endif // TEXT_HH
31