]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/text-item.hh
release: 0.1.8
[lilypond.git] / lily / include / text-item.hh
index 041db0f26e2bd751dbdf61e2119b77670f5955d2..45436405401352897085df8b73715e42120e5a75 100644 (file)
   print a fixed width text above or below the staff.
  */
 class Text_item : public Item ,public Staff_side{
-    void init(Text_def* tdef_l); 
+    void init (Text_def* tdef_l); 
  
 public:
-    Text_def * tdef_l();
-    Text_def const* tdef_c_l();
-    int pos_i_;
 
     /// do I have width?
     bool fat_b_;
     
     /* ***************/
 
-    Text_item(Text_def*,int dir=0);
+    Text_item (General_script_def*,int dir=0);
     virtual ~Text_item();
-    NAME_MEMBERS(Text_item);
+    DECLARE_MY_RUNTIME_TYPEINFO;
 
 protected:
-    Text_def* tdef_p_;
+    General_script_def * tdef_p_;
+
+    virtual Interval symbol_height()const;
 
-    virtual void set_default_index();
     virtual Molecule* brew_molecule_p() const;
-    virtual void do_post_processing();
     virtual void do_pre_processing();
 };