lilypond-0.0.35
[lilypond.git] / hdr / textitem.hh
blobc7df9069d96c11420b39e81616801b90335d717b
1 /*
2 text.hh -- part of LilyPond
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef TEXT_ITEM_HH
8 #define TEXT_ITEM_HH
10 #include "textdef.hh"
11 #include "item.hh"
13 struct Text_item : Item {
14 int pos_i_;
15 int staffsize_i_;
16 int dir_i_;
17 Text_def* tdef_l_;
19 /* ***************/
20 const char * name() const;
21 virtual void set_default_pos();
22 Molecule* brew_molecule_p() const;
23 void do_pre_processing();
25 Text_item(Text_req*,int);
29 #endif // TEXT_HH