]> git.donarmstrong.com Git - lilypond.git/blob - lily/text-item.cc
31274c804ad536876dcb77c2ba814017f0d4ec6b
[lilypond.git] / lily / text-item.cc
1 /*   
2   text-item.cc -- implement Text_interface
3
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7                  Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "text-item.hh"
11
12 #include <math.h>
13
14 #include "main.hh" 
15 #include "config.hh"
16 #include "pango-font.hh"
17 #include "warn.hh"
18 #include "grob.hh"
19 #include "font-interface.hh"
20 #include "output-def.hh"
21 #include "modified-font-metric.hh"
22 #include "ly-module.hh"
23
24
25 MAKE_SCHEME_CALLBACK (Text_interface, interpret_string, 4)
26 SCM
27 Text_interface::interpret_string (SCM layout_smob,
28                                   SCM props, SCM input_encoding, SCM markup)
29 {
30   Output_def *layout = unsmob_output_def (layout_smob);
31   
32   SCM_ASSERT_TYPE (layout, layout_smob, SCM_ARG1,
33                    __FUNCTION__, "Layout definition");
34   SCM_ASSERT_TYPE (scm_is_string (markup), markup, SCM_ARG3,
35                    __FUNCTION__, "string");
36
37   String str = ly_scm2string (markup);
38
39 #if HAVE_PANGO_FT2
40   if (output_format_global != "tex"
41       && output_format_global != "texstr")
42     {
43       Font_metric *fm = select_pango_font (layout, props);
44       return fm->text_stencil (str).smobbed_copy ();
45     }
46 #endif
47   
48   SCM_ASSERT_TYPE (input_encoding == SCM_EOL || scm_is_symbol (input_encoding),
49                    input_encoding, SCM_ARG2, __FUNCTION__, "symbol");
50
51   if (!scm_is_symbol (input_encoding))
52     {
53       SCM enc = layout->lookup_variable (ly_symbol2scm ("inputencoding"));
54       if (scm_is_string (enc))
55         input_encoding = scm_string_to_symbol (enc);
56       else if (scm_is_symbol (enc))
57         input_encoding = enc;
58     }
59   
60   Font_metric *fm = select_encoded_font (layout, props, input_encoding);
61
62   return fm->text_stencil (str).smobbed_copy();
63 }
64
65 MAKE_SCHEME_CALLBACK (Text_interface, interpret_markup, 3)
66 SCM
67 Text_interface::interpret_markup (SCM layout_smob, SCM props, SCM markup)
68 {
69   if (scm_is_string (markup))
70     return interpret_string (layout_smob, props, SCM_EOL, markup);
71   else if (scm_is_pair (markup))
72     {
73       SCM func = scm_car (markup);
74       SCM args = scm_cdr (markup);
75       if (!markup_p (markup))
76         programming_error ("Markup head has no markup signature.");
77       
78       return scm_apply_2 (func, layout_smob, props, args);
79     }
80   else
81     {
82       programming_error ("Is not a markup: ");
83       scm_display (markup, scm_current_error_port());
84       assert (false);
85       Box b;
86       b[X_AXIS].set_empty();
87       b[Y_AXIS].set_empty();
88       
89       Stencil s(b, SCM_EOL);
90       return s.smobbed_copy();
91     }
92 }
93
94 MAKE_SCHEME_CALLBACK (Text_interface,print,1);
95 SCM
96 Text_interface::print (SCM grob)
97 {
98   Grob *me = unsmob_grob (grob);
99   
100   SCM t = me->get_property ("text");
101   SCM chain = Font_interface::text_font_alist_chain (me);
102   return interpret_markup (me->get_layout ()->self_scm (), chain, t);
103 }
104
105 /* Ugh. Duplicated from Scheme.  */
106 bool
107 Text_interface::markup_p (SCM x)
108 {
109   return (scm_is_string (x)
110           || (scm_is_pair (x)
111               && SCM_BOOL_F
112               != scm_object_property (scm_car (x),
113                                       ly_symbol2scm ("markup-signature"))));
114 }
115
116 ADD_INTERFACE (Text_interface,"text-interface",
117                "A scheme markup text, see @usermanref{Text-markup}.",
118                "text baseline-skip word-space");
119
120
121
122