(readPostTable): ugh. Kludge: nglyphs in maxp
[lilypond.git] / lily / mark-engraver.cc
blob92bf4952c265902d89695fb477a0996f46cecf37
1 /*
2 mark-engraver.cc -- implement Mark_engraver
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #include <cctype>
11 #include "bar-line.hh"
12 #include "context.hh"
13 #include "engraver-group-engraver.hh"
14 #include "item.hh"
15 #include "warn.hh"
16 #include "text-interface.hh"
18 /**
19 put stuff over or next to bars. Examples: bar numbers, marginal notes,
20 rehearsal marks.
22 class Mark_engraver : public Engraver
24 public:
25 TRANSLATOR_DECLARATIONS (Mark_engraver);
26 protected:
27 Item *text_;
28 protected:
29 virtual void stop_translation_timestep ();
30 virtual void acknowledge_grob (Grob_info);
31 void create_items (Music *);
32 virtual bool try_music (Music *ev);
33 virtual void process_music ();
35 private:
36 Music *mark_ev_;
39 Mark_engraver::Mark_engraver ()
41 text_ = 0;
42 mark_ev_ = 0;
45 void
46 Mark_engraver::acknowledge_grob (Grob_info inf)
48 Grob *s = inf.grob ();
49 if (text_ && Bar_line::has_interface (s))
52 TODO: make this configurable. RehearsalMark cannot be
53 break-aligned, since the width of the object should not be taken
54 into alignment considerations.
56 text_->set_parent (s, X_AXIS);
60 void
61 Mark_engraver::stop_translation_timestep ()
63 if (text_)
65 SCM lst = get_property ("stavesFound");
66 text_->set_property ("side-support-elements", lst);
67 text_ = 0;
69 mark_ev_ = 0;
72 void
73 Mark_engraver::create_items (Music *ev)
75 if (text_)
76 return;
78 text_ = make_item ("RehearsalMark", ev->self_scm ());
81 bool
82 Mark_engraver::try_music (Music *r)
84 mark_ev_ = r;
85 return true;
89 TODO: make the increment function in Scheme.
91 void
92 Mark_engraver::process_music ()
94 if (mark_ev_)
96 create_items (mark_ev_);
99 automatic marks.
102 SCM m = mark_ev_->get_property ("label");
103 SCM proc = get_property ("markFormatter");
104 if (!Text_interface::markup_p (m)
105 && ly_c_procedure_p (proc))
107 if (!scm_is_number (m))
108 m = get_property ("rehearsalMark");
110 if (scm_integer_p (m) == SCM_BOOL_T
111 && scm_exact_p (m) == SCM_BOOL_T)
113 int mark_count = scm_to_int (m);
114 mark_count++;
115 context ()->set_property ("rehearsalMark",
116 scm_int2num (mark_count));
119 if (scm_is_number (m))
120 m = scm_call_2 (proc, m, context ()->self_scm ());
121 else
122 /* FIXME: constant error message. */
123 warning (_ ("rehearsalMark must have integer value"));
126 if (Text_interface::markup_p (m))
127 text_->set_property ("text", m);
128 else
129 warning (_ ("mark label must be a markup object"));
133 ADD_TRANSLATOR (Mark_engraver,
134 /* descr */ "This engraver will create RehearsalMark objects. "
135 "It puts them on top of all staves (which is taken from "
136 "the property @code{stavesFound}). If moving this engraver "
137 "to a different context, "
138 "@ref{Staff_collecting_engraver} must move along, otherwise all marks"
139 "end up on the same Y-location",
140 /* creats*/ "RehearsalMark",
141 /* accepts */ "mark-event",
142 /* acks */ "bar-line-interface",
143 /* reads */ "rehearsalMark markFormatter stavesFound",
144 /* write */ "");