]> git.donarmstrong.com Git - lilypond.git/blob - lily/lyric-engraver.cc
release: 1.3.94
[lilypond.git] / lily / lyric-engraver.cc
1 /*
2   lyric-engraver.cc -- implement Lyric_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "lyric-engraver.hh"
11 #include "musical-request.hh"
12 #include "item.hh"
13 #include "paper-def.hh"
14 #include "lookup.hh"
15 #include "side-position-interface.hh"
16
17 ADD_THIS_TRANSLATOR (Lyric_engraver);
18
19
20 Lyric_engraver::Lyric_engraver()
21 {
22   text_p_ =0;
23   req_l_ =0;
24 }
25
26 bool
27 Lyric_engraver::do_try_music (Music*r)
28 {
29   if (Lyric_req* l = dynamic_cast <Lyric_req *> (r))
30     {
31       if (req_l_)
32         return false;
33       req_l_ =l;
34       return true;
35     }
36   return false;
37 }
38
39 void
40 Lyric_engraver::do_process_music()
41 {
42   if (req_l_)
43     {
44       text_p_=  new Item (get_property ("LyricText"));
45       
46       text_p_->set_elt_property ("text",
47 //                               ly_str02scm   ((req_l_->text_str_ + " ").ch_C ()));
48                                  ly_str02scm   ((req_l_->text_str_).ch_C ()));
49
50
51       /*
52         We can't reach the notehead where we're centered from here. So
53         we kludge.
54
55         (UGH UGH, pulled amount of space out of thin air)
56       */
57       
58       text_p_->translate_axis (paper_l()->get_var ("staffspace")*0.66, X_AXIS);
59       
60       announce_element (text_p_, req_l_);
61     }
62 }
63
64 void
65 Lyric_engraver::do_pre_move_processing()
66 {
67   if (text_p_)
68     {
69       typeset_element (text_p_);
70       text_p_ =0;
71     }
72 }
73
74 void
75 Lyric_engraver::do_post_move_processing ()
76 {
77   req_l_ =0;
78 }
79
80