]> git.donarmstrong.com Git - lilypond.git/blob - lily/balloon.cc
* The grand 2005-2006 replace.
[lilypond.git] / lily / balloon.cc
1 /*
2   balloon.cc -- implement Balloon
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "text-interface.hh"
10 #include "grob.hh"
11 #include "line-interface.hh"
12 #include "lookup.hh"
13 #include "font-interface.hh"
14 #include "lily-guile.hh"
15 #include "output-def.hh"
16 #include "misc.hh"
17
18 class Balloon_interface
19 {
20 public:
21   DECLARE_SCHEME_CALLBACK (print, (SCM));
22   static bool has_interface (Grob *);
23 };
24
25 MAKE_SCHEME_CALLBACK (Balloon_interface, print, 1);
26 SCM
27 Balloon_interface::print (SCM smob)
28 {
29   Grob *me = unsmob_grob (smob);
30
31   SCM stil = me->get_property ("original-stencil");
32   if (!unsmob_stencil (stil))
33     return stil;
34
35   SCM scm_off = me->get_property ("balloon-text-offset");
36
37   if (!is_number_pair (scm_off))
38     return stil;
39
40   Offset off = ly_scm2offset (scm_off);
41   Stencil *s = unsmob_stencil (stil);
42   Box orig_extent = s->extent_box ();
43   Box box_extent = orig_extent;
44
45   Real w = robust_scm2double (me->get_property ("balloon-padding"), .1);
46   box_extent.widen (w, w);
47
48   // FIXME
49   Stencil fr = Lookup::frame (box_extent, 0.1, 0.05);
50
51   fr.add_stencil (*s);
52
53   SCM bt = me->get_property ("balloon-text");
54   SCM chain = Font_interface::text_font_alist_chain (me);
55   chain = scm_cons (me->get_property ("balloon-text-props"), chain);
56
57   SCM text = Text_interface::interpret_markup (me->layout ()->self_scm (),
58                                                chain, bt);
59
60   Stencil *text_stil = unsmob_stencil (text);
61
62   Offset z1;
63   for (int i = X_AXIS; i < NO_AXES; i++)
64     {
65       Axis a ((Axis)i);
66       z1[a] = box_extent [a].linear_combination (sign (off[a]));
67       text_stil->align_to (a, -sign (off[a]));
68     }
69
70   Offset z2 = z1 + off;
71
72   fr.add_stencil (Line_interface::line (me, z1, z2));
73
74   text_stil->translate (z2);
75   fr.add_stencil (*text_stil);
76
77   fr = Stencil (orig_extent, fr.expr ());
78   return fr.smobbed_copy ();
79 }
80
81 ADD_INTERFACE (Balloon_interface, "text-balloon-interface",
82                "A collection of routines to put text balloons around an object.",
83
84                /* properties */
85                "balloon-padding "
86                "balloon-text-props "
87                "balloon-text-offset "
88                "balloon-text "
89                "original-stencil ");
90