]> git.donarmstrong.com Git - lilypond.git/blob - lily/hyphen-engraver.cc
release: 1.3.65
[lilypond.git] / lily / hyphen-engraver.cc
1 /*
2   hyphen-engraver.cc -- implement Hyphen_engraver
3
4   (c) 1999 Glen Prideaux <glenprideaux@iname.com>
5 */
6
7 #include "proto.hh"
8 #include "musical-request.hh"
9 #include "hyphen-spanner.hh"
10 #include "paper-column.hh"
11 #include "item.hh"
12 #include "engraver.hh"
13
14 /**
15   Generate an centred hyphen.  Should make a Hyphen_spanner that
16   typesets a nice centred hyphen of varying length depending on the
17   gap between syllables.
18
19   We remember the last Item that come across. When we get a
20   request, we create the spanner, and attach the left point to the
21   last lyrics, and the right point to any lyrics we receive by
22   then.  */
23 class Hyphen_engraver : public Engraver
24 {
25   Score_element *last_lyric_l_;
26   Score_element *current_lyric_l_;
27   Hyphen_req* req_l_;
28   Spanner* hyphen_p_;
29 public:
30   Hyphen_engraver ();
31   VIRTUAL_COPY_CONS (Translator);
32
33 protected:
34   virtual void acknowledge_element (Score_element_info);
35   virtual void do_removal_processing();
36   virtual void do_process_music();
37   virtual bool do_try_music (Music*);
38   virtual void do_pre_move_processing();
39   virtual void do_post_move_processing ();
40 private:
41
42 };
43
44 ADD_THIS_TRANSLATOR (Hyphen_engraver);
45
46 Hyphen_engraver::Hyphen_engraver ()
47 {
48   current_lyric_l_ = 0;
49   last_lyric_l_ = 0;
50   hyphen_p_ = 0;
51   req_l_ = 0;
52 }
53
54 void
55 Hyphen_engraver::acknowledge_element (Score_element_info i)
56 {
57   // -> text-item
58   if (dynamic_cast<Item*> (i.elem_l_)
59       && to_boolean (i.elem_l_->get_elt_property ("text-item-interface")))
60     {
61       current_lyric_l_ = i.elem_l_;
62       if (hyphen_p_
63           && !hyphen_p_->get_bound (RIGHT)
64             )
65           {
66             Hyphen_spanner (hyphen_p_).set_textitem (RIGHT, i.elem_l_);
67           }
68     }
69 }
70
71
72 bool
73 Hyphen_engraver::do_try_music (Music* r)
74 {
75   if (Hyphen_req* p = dynamic_cast <Hyphen_req *> (r))
76     {
77       if (req_l_)
78         return false;
79
80       req_l_ = p;
81       return true;
82     }
83   return false;
84 }
85
86 void
87 Hyphen_engraver::do_removal_processing ()
88 {
89   if (hyphen_p_)
90     {
91       req_l_->warning (_ ("unterminated hyphen"));
92       hyphen_p_->set_bound(RIGHT, unsmob_element (get_property ("currentCommandColumn")));
93     }
94 }
95
96 void
97 Hyphen_engraver::do_process_music ()
98 {
99   if (req_l_)
100     {
101       if (!last_lyric_l_)
102         {
103           req_l_->warning (_ ("Nothing to connect hyphen to on the left.  Ignoring hyphen request."));
104           return;
105         }
106       
107       hyphen_p_ = new Spanner (get_property ("basicHyphenSpannerProperties"));
108       hyphen_p_->set_extent_callback (Score_element::point_dimension_callback,Y_AXIS);
109       Hyphen_spanner (hyphen_p_).set_textitem  (LEFT, last_lyric_l_);
110       announce_element (Score_element_info (hyphen_p_, req_l_));
111     }
112 }
113
114
115 void
116 Hyphen_engraver::do_pre_move_processing ()
117 {
118   if (hyphen_p_)
119     {
120       typeset_element (hyphen_p_);
121       hyphen_p_ = 0;
122     }
123
124   if (current_lyric_l_)
125     {
126       last_lyric_l_ = current_lyric_l_;
127       current_lyric_l_ =0;
128     }
129 }
130
131 void
132 Hyphen_engraver::do_post_move_processing ()
133 {
134   req_l_ = 0;
135 }
136
137