]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lyric-phrasing-engraver.hh
* scm/chord-name.scm: remove new-chord-name-brew-molecule ; use
[lilypond.git] / lily / include / lyric-phrasing-engraver.hh
index db170135bf7417877344bfb66774bf26aeb173d9..e5c578a2ae06684b68abbd33f154e1312f985b6e 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  2000 Glen Prideaux <glenprideaux@iname.com>
+  (c)  2000--2003 Glen Prideaux <glenprideaux@iname.com>
 */
 
 
@@ -86,20 +86,20 @@ private:
   
   */
   Protected_scm voice_alist_;
-  Grob * any_notehead_l_;
+  Grob * any_notehead_;
 };
 
 
 class Syllable_group
 {
   bool first_in_phrase_b_;
-  Grob * notehead_l_;
-  Link_array<Grob> lyric_list_;
-  Grob * longest_lyric_l_;
-  Grob * shortest_lyric_l_;
-  int alignment_i_;
+  Grob * notehead_;
+  Link_array<Grob> lyrics_;
+  Grob * longest_lyric_;
+  Grob * shortest_lyric_;
+  int alignment_;
   bool melisma_b_;
-  Real group_translation_f_;
+  Real group_translation_;
 public:
   static SCM make_entry ();
   void set_first_in_phrase (bool f);
@@ -108,10 +108,10 @@ public:
   void add_extender (Grob * extender);
   void set_melisma () { melisma_b_ = true; }
   bool get_melisma () { return melisma_b_; }
-  int lyric_count () { return lyric_list_.size (); }
+  int lyric_count () { return lyrics_.size (); }
   void clear ();
   bool is_empty ();
-  bool set_lyric_align (const char *punc, Grob *default_notehead_l);
+  bool set_lyric_align (const char *punc, Grob *default_notehead);
   void adjust_melisma_align ();
   int appropriate_alignment (const char *punc);
   Real amount_to_translate ();