]> git.donarmstrong.com Git - lilypond.git/blob - lily/mark-engraver.cc
2e4bae6f27e9395bddc6ee78434735bb44daefd0
[lilypond.git] / lily / mark-engraver.cc
1 /*
2   mark-engraver.cc -- implement Mark_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #include <cctype>
10
11 #include "bar-line.hh"
12 #include "context.hh"
13 #include "engraver-group.hh"
14 #include "item.hh"
15 #include "warn.hh"
16 #include "text-interface.hh"
17 #include "grob-array.hh"
18
19 /**
20    put stuff over or next to  bars.  Examples: bar numbers, marginal notes,
21    rehearsal marks.
22 */
23 class Mark_engraver : public Engraver
24 {
25 public:
26   TRANSLATOR_DECLARATIONS (Mark_engraver);
27 protected:
28   Item *text_;
29 protected:
30   void stop_translation_timestep ();
31   DECLARE_ACKNOWLEDGER (bar_line);
32   void create_items (Music *);
33   virtual bool try_music (Music *ev);
34   void process_music ();
35
36 private:
37   Music *mark_ev_;
38 };
39
40 Mark_engraver::Mark_engraver ()
41 {
42   text_ = 0;
43   mark_ev_ = 0;
44 }
45
46 void
47 Mark_engraver::acknowledge_bar_line (Grob_info inf)
48 {
49   Grob *s = inf.grob ();
50   if (text_)
51     {
52       /*
53         TODO: make this configurable. RehearsalMark cannot be
54         break-aligned, since the width of the object should not be taken
55         into alignment considerations.
56       */
57       text_->set_parent (s, X_AXIS);
58     }
59 }
60
61 void
62 Mark_engraver::stop_translation_timestep ()
63 {
64   if (text_)
65     {
66       text_->set_object ("side-support-elements",
67                          grob_list_to_grob_array (get_property ("stavesFound")));
68       text_ = 0;
69     }
70   mark_ev_ = 0;
71 }
72
73 void
74 Mark_engraver::create_items (Music *ev)
75 {
76   if (text_)
77     return;
78
79   text_ = make_item ("RehearsalMark", ev->self_scm ());
80 }
81
82 bool
83 Mark_engraver::try_music (Music *r)
84 {
85   mark_ev_ = r;
86   return true;
87 }
88
89 /*
90   TODO: make the increment function in Scheme.
91 */
92 void
93 Mark_engraver::process_music ()
94 {
95   if (mark_ev_)
96     {
97       create_items (mark_ev_);
98
99       /*
100         automatic marks.
101       */
102
103       SCM m = mark_ev_->get_property ("label");
104       SCM proc = get_property ("markFormatter");
105       if (!Text_interface::is_markup (m)
106           && ly_is_procedure (proc))
107         {
108           if (!scm_is_number (m))
109             m = get_property ("rehearsalMark");
110
111           if (scm_integer_p (m) == SCM_BOOL_T
112               && scm_exact_p (m) == SCM_BOOL_T)
113             {
114               int mark_count = scm_to_int (m);
115               mark_count++;
116               context ()->set_property ("rehearsalMark",
117                                         scm_from_int (mark_count));
118             }
119
120           if (scm_is_number (m))
121             m = scm_call_2 (proc, m, context ()->self_scm ());
122           else
123             /* FIXME: constant error message.  */
124             warning (_ ("rehearsalMark must have integer value"));
125         }
126
127       if (Text_interface::is_markup (m))
128         text_->set_property ("text", m);
129       else
130         warning (_ ("mark label must be a markup object"));
131     }
132 }
133
134 #include "translator.icc"
135
136 ADD_ACKNOWLEDGER (Mark_engraver, bar_line);
137 ADD_TRANSLATOR (Mark_engraver,
138                 /* doc */ "This engraver will create RehearsalMark objects. "
139                 "It puts them on top of all staves (which is taken from "
140                 "the property @code{stavesFound}). If moving this engraver "
141                 "to a different context, "
142                 "@ref{Staff_collecting_engraver} must move along, otherwise all marks"
143                 "end up on the same Y-location",
144                 /* create */ "RehearsalMark",
145                 /* accept */ "mark-event",
146                 /* read */ "rehearsalMark markFormatter stavesFound",
147                 /* write */ "");